Hello, I?m new to icecast, after installing and configuring audio, I want to stream some webm videos in web browsers, so I have a few questions (I can?t find the answers in the docs) : - Which source client should I use ? - I want to stream an already encoded video, does it require a source client ? - How can I embed that in a browser ? Thanks by advance for your help. Olivier BATARD -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4136 bytes Desc: not available Url : http://lists.xiph.org/pipermail/icecast/attachments/20140625/8e7ea201/attachment.bin
Hi Olivier, Hi Team, I'm looking for the same thing? - Which source client should I use ? - I want to stream an already encoded video, does it require a source client ? - How can I embed that in a browser ? I found Freej but I did not yet understand how this software works. Thanks in advance for your answers. -- Onvice From: obatard at icloud.com Date: Wed, 25 Jun 2014 01:24:36 +0200 To: icecast at xiph.org Subject: [Icecast] Webm streaming. Hello, I?m new to icecast, after installing and configuring audio, I want to stream some webm videos in web browsers, so I have a few questions (I can?t find the answers in the docs) : - Which source client should I use ? - I want to stream an already encoded video, does it require a source client ? - How can I embed that in a browser ? Thanks by advance for your help. Olivier BATARD _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast/attachments/20140627/19dced64/attachment.htm
Hi Olivier. I think the first thing to try is VLC which can transcode anything into webm and output it to an icecast server. Regards <-----------------------------------------------------------------------------------------------------------> http://shop.ekimia.fr : Achetez votre PC Ubuntu, support inclus. web perso : http://memeteau.org 2014-06-25 1:24 GMT+02:00 Olivier BATARD <obatard at icloud.com>:> Hello, > > I?m new to icecast, after installing and configuring audio, I want to stream some webm videos in web browsers, so I have a few questions (I can?t find the answers in the docs) : > > > - Which source client should I use ? > - I want to stream an already encoded video, does it require a source client ? > - How can I embed that in a browser ? > > > Thanks by advance for your help. > > > Olivier BATARD > > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast >
Hi, After a few experiments I found how it works. - the easiest way is to declare a path statement in the config. - you can now copy webm files (webm streams are now supported) in the previous path - now, each files are considered as mount. BEWARE : you can't use chrome or safari or opera to open the url directly, the file will be downloaded instead of read. Works with Firefox by the way. So you have to make html file with a video tag including "type=video/webm" At your disposal. Envoy? de mon iPhone> Le 27 juin 2014 ? 10:58, Phi - <onvice at hotmail.com> a ?crit : > > Hi Olivier, Hi Team, > > I'm looking for the same thing? > > - Which source client should I use ? > - I want to stream an already encoded video, does it require a source client ? > - How can I embed that in a browser ? > > I found Freej but I did not yet understand how this software works. > > Thanks in advance for your answers. > > -- > Onvice > > From: obatard at icloud.com > Date: Wed, 25 Jun 2014 01:24:36 +0200 > To: icecast at xiph.org > Subject: [Icecast] Webm streaming. > > Hello, > > I?m new to icecast, after installing and configuring audio, I want to stream some webm videos in web browsers, so I have a few questions (I can?t find the answers in the docs) : > > > - Which source client should I use ? > - I want to stream an already encoded video, does it require a source client ? > - How can I embed that in a browser ? > > > Thanks by advance for your help. > > > Olivier BATARD > > > > _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast/attachments/20140627/07eb51a3/attachment.htm
Hi, use gstreamer, exemple pipeline: gst-launch-0.10 -v -e v4l2src norm="NTSC" device=/dev/video0 ! queue ! videorate force-fps=15 ! videoscale ! video/x-raw-yuv, width=360, height=240 ! queue ! vp8enc mode=1 bitrate=120000 speed=2 ! queue ! webmmux streamable=true name=mux alsasrc device=default ! queue ! audio/x-raw-int,channels=2,rate=48000,depth=16 ! audioconvert ! queue ! vorbisenc bitrate=48000 ! mux. mux. ! queue ! shout2send ip="yourdomain" port="8000" password="yourpassword" mount="/yourmount.webm" public="true" streamname=" " description=" " genre=" " url=" " or Theorur http://pub.nkosi.org/theorur/theorur-0.6h.tar.gz To force gstreamer 0.10: theorur -0 To force gstreamer 1.0: theorur -1 You must have compiled gstreamer with the latest version of libshout (2.3.1). Ubuntu 14.04 comes by default and player I use http://mediaelementjs.com/ Regards, Rafael Gomes