Is it possible to configure the mp3 plugin to play realplayer streams?
If not, is there a plugin for VDR for Realplayer?
Hi Simon, On Sa, Jul 08, 2006 at 06:55:39 -0700, Simon Baxter wrote:
Is it possible to configure the mp3 plugin to play realplayer streams?
If not, is there a plugin for VDR for Realplayer?
Try the mplayer-plugin. greatings Halim
Thanks. Looks like the mplayer rpms don't support the Realmedia codecs??
mplayer http://www.bbc.co.uk/radio2/realmedia/fmg2.ram MPlayer 1.0pre8-4.1.1 (C) 2000-2006 MPlayer Team CPU: AMD Athlon(tm) XP 2800+ (Family: 6, Model: 10, Stepping: 0) CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 0
Opening joystick device /dev/input/js0 Can't open joystick device /dev/input/js0: No such file or directory Can't init input joystick Setting up LIRC support... mplayer: could not connect to socket mplayer: No such file or directory Failed to open LIRC support. You will not be able to use your remote control.
Playing http://www.bbc.co.uk/radio2/realmedia/fmg2.ram. STREAM_HTTP(1), URL: http://www.bbc.co.uk/radio2/realmedia/fmg2.ram Resolving www.bbc.co.uk for AF_INET6... Couldn't resolve name for AF_INET6: www.bbc.co.uk Resolving www.bbc.co.uk for AF_INET... Connecting to server www.bbc.co.uk[212.58.240.120]: 80... Cache size set to 320 KBytes Cache fill: 0.02% (71 bytes) Win32 LoadLibrary failed to load: avisynth.dll, /usr/lib/codecs/avisynth.dll, /usr/lib/win32/avisynth.dll, /usr/local/lib/win32/avisynth.dll
Exiting... (End of file)
Simon Baxter wrote:
Hi Simon, On Sa, Jul 08, 2006 at 06:55:39 -0700, Simon Baxter wrote:
Is it possible to configure the mp3 plugin to play realplayer streams?
If not, is there a plugin for VDR for Realplayer?
Try the mplayer-plugin. greatings Halim
Thanks. Looks like the mplayer rpms don't support the Realmedia codecs??
I think you have to use: mplayer -playlist http://www.bbc.co.uk/radio2/realmedia/fmg2.ram
Simon Baxter wrote:
Hi Simon, On Sa, Jul 08, 2006 at 06:55:39 -0700, Simon Baxter wrote:
Is it possible to configure the mp3 plugin to play realplayer streams?
If not, is there a plugin for VDR for Realplayer?
Try the mplayer-plugin. greatings Halim
Thanks. Looks like the mplayer rpms don't support the Realmedia codecs??
I think you have to use: mplayer -playlist http://www.bbc.co.uk/radio2/realmedia/fmg2.ram
Yip - that works!
Thanks!
I think you have to use: mplayer -playlist http://www.bbc.co.uk/radio2/realmedia/fmg2.ram
Yip - that works!
Thanks!
Any suggestions on how to set up the URL as a source?
cat /media/video/vdr-1.4.0/plugins/mplayersources.conf /media/video/TV;Television Programs;0;*.avi/*.mpg/*.AVI/*.MPG /media/video/amule/Incoming/;The Mule;0;*.avi/*.mpg/*.mpeg/*.AVI/*.MPG/*.MPEG /media/video/archive/;Video Archive;1;*.avi/*.mpg/*.mpeg/*.AVI/*.MPG/*.MPEG /home/vdruser/Desktop/Photos;Movies on Desktop;0;*.avi/*.mpg/*.AVI/*.MPG /mnt/pics;Network Video;1;*.avi /media/video/Movies;Movies;0 http://www.bbc.co.uk/radio2/realmedia/fmg2.ram;BBC Radio 2;0
(last entry doesn't work)
Simon Baxter wrote:
I think you have to use: mplayer -playlist http://www.bbc.co.uk/radio2/realmedia/fmg2.ram
Yip - that works!
Thanks!
Any suggestions on how to set up the URL as a source?
cat /media/video/vdr-1.4.0/plugins/mplayersources.conf /media/video/TV;Television Programs;0;*.avi/*.mpg/*.AVI/*.MPG /media/video/amule/Incoming/;The Mule;0;*.avi/*.mpg/*.mpeg/*.AVI/*.MPG/*.MPEG /media/video/archive/;Video Archive;1;*.avi/*.mpg/*.mpeg/*.AVI/*.MPG/*.MPEG /home/vdruser/Desktop/Photos;Movies on Desktop;0;*.avi/*.mpg/*.AVI/*.MPG /mnt/pics;Network Video;1;*.avi /media/video/Movies;Movies;0 http://www.bbc.co.uk/radio2/realmedia/fmg2.ram;BBC Radio 2;0
(last entry doesn't work)
Create some directory and put a file in there that has only the line "http://www.bbc.co.uk/radio2/realmedia/fmg2.ram" and the extension of your chosing (for example *.playlist).
Then you have to modify your mplayer.sh to add -playlist to mplayer command line when playing files with this extension.
Create some directory and put a file in there that has only the line "http://www.bbc.co.uk/radio2/realmedia/fmg2.ram" and the extension of your chosing (for example *.playlist).
Then you have to modify your mplayer.sh to add -playlist to mplayer command line when playing files with this extension.
I'm still learning many scripting tasks - can you suggest a way to test if a file has a '.playlist' suffix?
Simon Baxter wrote:
Create some directory and put a file in there that has only the line "http://www.bbc.co.uk/radio2/realmedia/fmg2.ram" and the extension of your chosing (for example *.playlist).
Then you have to modify your mplayer.sh to add -playlist to mplayer command line when playing files with this extension.
I'm still learning many scripting tasks - can you suggest a way to test if a file has a '.playlist' suffix?
FILENAME=somefile.playlist
if [ "${FILENAME##*.}" = "playlist" ]; then
Anssi Hannula wrote:
Then you have to modify your mplayer.sh to add -playlist to mplayer command line when playing files with this extension.
mp3sources.conf: /mnt/samba/music;Network;0;*.mp3/*.ogg/*.wav/*.m3u/*.pls
.pls playlists should work with default mplayer-plugin without mplayer.sh modification. Just put plain URL in filename.pls, URL can be any stream that mplayer support.