Mailing List archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[vdr] Re: Streaming Recorded Shows with VLC
>
> I've played with VDR, streamdev-server and VideoLAN client, and found
> that VLC doesn't understand the audio, so my streams are mute.
> Switching
> to MPlayer (as the client) gives me working audio.
>
> Have you thought of an automated way to stream VDR recordings?
>
> Has anyone?
>
Try this..
cat 00*.vdr|pes2ts2 0 0|ts2ps 0 0|vlcs
Where vlcs is:
#!/bin/sh
vlc -vvv /dev/stdin -I telnet --aspect-ratio 4:3 --sout
'#transcode{vcodec=DIV3,vb=512,acodec=mp3,ab=128,channels=2,width=544,height
=480,deinterlace}:std{access=mmsh,mux=asfh,url=:1234}'
pes2ts2 and ts2ps can be found in this source:
http://www.metzlerbros.org/dvb/libdvb-0.5.4.tar.gz
The Makefile seems to have a small mistake in it though, so before you do a
"make install" apply this patch:
--- libdvb-0.5.4/dvb-mpegtools/Makefile 2004-01-28 11:44:27.000000000 -0800
+++ libdvb-0.5.4-fixed/dvb-mpegtools/Makefile 2004-07-08
00:17:45.000000000 -0700
@@ -61,7 +61,7 @@
install -m 755 audiofilter $(PREFIX)/bin/
install -m 755 dvb-mpegtools_main $(PREFIX)/bin/
install -m 755 dvbaudio $(PREFIX)/bin/
- install -m 755 dvb_show_image $(PREFIX)/bin/
+ install -m 755 show_dvb_image $(PREFIX)/bin/
install -m 755 dia $(PREFIX)/bin/
for f in $(LINKS); do\
ln -sf $(PREFIX)/bin/dvb-mpegtools_main $(PREFIX)/bin/$$f ;\
Home |
Main Index |
Thread Index