Audio-video stream with use Liquidsoap -


i have problem audio-video stream icecast2 server using liquidsoap. using example code use picture in jpg format - works!

<code>s = single("/mnt/dysk1/all/test.gif") output.icecast(   %ogg(%theora),   host="localhost",   port=8000,   password="*****",   mount="/test1.ogg",   name="test1",   description="testing...",   url=" ",   s)</code> 

example code example use audio-video in avi format , audio-video in mp4 format , audio-video in webm format- did not work!

<code>s = single("/mnt/dysk1/all/test.avi") output.icecast(   %ogg(%theora, %vorbis),   host="localhost",   port=8000,   password="*****",   mount="/test1.ogg",   name="test1",   description="testing...",   url=" ",   s)</code> 

you receive following error message:

invalid value @ line 1, char 12-36:  not valid media file of kind {audio=2;video=1;midi=0} "/mnt/dysk1/all/test.avi".

example code example use audio-video in ogv format - did not work!

<code>s = single("/mnt/dysk1/all/test.ogv") output.icecast(   %ogg(%theora, %vorbis),   host="localhost",   port=8000,   password="*****",   mount="/test1.ogg",   name="test1",   description="testing...",   url=" ",   s)</code> 

you receive following error message:

notification: speex header small notification: speex header small notification: speex header small notification: speex header small

my distribution linux raspbian. liquidsoap installation repository

apt-get install liquidsoap liquidsoap-plugin-all

i apologize low level of english proficiency. please me.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -