<br><div><span class="gmail_quote">On 2/27/06, <b class="gmail_sendername">Daniel Walton</b> &lt;<a href="mailto:dwalton@cisco.com">dwalton@cisco.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I'm running 0.19 and have patched in the jogibear's 0.19 compliant version of<br>MythStreamTV mentioned here:<br><br><a href="http://mythtv.org/pipermail/mythtv-dev/2006-January/044015.html">http://mythtv.org/pipermail/mythtv-dev/2006-January/044015.html
</a><br><br>But I can't find the right combination of vlc and ffmeg that will work.&nbsp;&nbsp;If<br>anyone has mythstreamtv working on 0.19 can you share your vlc and ffmpeg info<br>with me?&nbsp;&nbsp;I've tried the following:<br></blockquote>
</div><br><br>I've got it working using the instructions in the README.&nbsp; I'm using vlc-0.8.1 and ffmpeg-0.4.9-pre1<br><br>I configured ffmpeg as:<br><br>&nbsp;./configure --disable-x11 --disable-xvideo --disable-gtk --disable-sdl --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac --with-ffmpeg-zlib --enable-mad --enable-libdvbpsi --enable-a52 --disable-dvdplay --enable-dvdnav --enable-vorbis --enable-ogg --enable-theora --enable-mkv --enable-freetype --disable-cddax --disable-vcdx --enable-speex --enable-flac --enable-goom --enable-livedotcom --enable-caca --disable-skins2 --enable-modplug --enable-debug --enable-gpl --enable-mp3lame --enable-pp 
<br><br><br>I configured vlc as:<br>./configure --disable-x11 --disable-xvideo --disable-gtk --disable-sdl --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-zlib<br>&nbsp;--enable-mad --enable-libdvbpsi --enable-a52 --disable-dvdplay --enable-dvdnav --enable-vorbis --enable-ogg --enable-theora
<br>&nbsp;--enable-mkv --enable-freetype --disable-cddax --disable-vcdx --enable-speex --enable-flac --enable-goom --enable-livedotcom<br>&nbsp;--enable-caca --disable-skins2 --enable-modplug --enable-debug --enable-gpl --enable-mp3lame --enable-pp
<br>&nbsp;--with-ffmpeg-tree=/root/vlc/ffmpeg-0.4.9-pre1/<br><br>I seem to remember that some extra libraries were needed before ffmpeg would compile.&nbsp; I believe it was libmpeg2, which I installed via mpeg2dec-0.4.1-cvs.<br><br>
I also found that mythstreamtv would only work with specific video/audio codecs (ie DIV3 and mp3).&nbsp; I'm using the following manually tuned settings for my specific situtation in my mythstreamtv.sh and pretty much only use mmsh in vlc for remote playback:
<br>---snip---<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if [ $PROTOCOL = &quot;mms&quot; ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /usr/bin/vlc -I http --http-host=:8002 --sout-transcode-deinterlace $1 &quot;:sout=#transcode{vcodec=DIV3,acodec=mp3,<br>vb=448,ab=64,scale=$SIZE,}:std{access=mmsh,mux=ogg,url=:8001,}&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; elif [ $PROTOCOL = &quot;http&quot; ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /usr/bin/vlc -I http --http-host=:8002 --sout-transcode-deinterlace $1<br>&quot; :sout=#transcode{vcodec=DIV3,acodec=mp3,vb=448,ab=64,scale=$SIZE,}:<br>std{access=http{user=$HTTP_USER,pwd=$HTTP_PWD,mime=video/x-ms-asf},mux=ogg,url=:8001,}&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fi<br><br><br><br>hope this helps,<br>JS<br>