Page 1 of 1
OSD Title show forever?
Posted: 27 Jun 2011 20:40
by ReD-BaRoN
I'm running --no-embedded-video, and need the title to remain on the screen forever. --video-title-timeout does not seem to have a value to disable the timeout, as video-title-timeout=0|-1 don't show the video title at all.
Is there a way to make the title stay on the screen for the duration of the session?
Thanks!
Re: OSD Title show forever?
Posted: 27 Jun 2011 20:40
by Jean-Baptiste Kempf
I don't think so... Use the marq video filter module for this.
Re: OSD Title show forever?
Posted: 27 Jun 2011 20:57
by ReD-BaRoN
Hmm, that doesn't seem to work. I'm on a Mac, hopefully that's not the issue. Here's the command I'm running:
Code: Select all
/Applications/VLC.app/Contents/MacOS/VLC udp://@239.1.1.80:49410 --no-embedded-video --video-x=0 --video-y=21 --width=320 --height=180 --marq-marquee=test --marq-position=9 &
What am I missing?
Thanks!
Re: OSD Title show forever?
Posted: 27 Jun 2011 20:59
by Jean-Baptiste Kempf
--video-filter marq
Re: OSD Title show forever?
Posted: 27 Jun 2011 21:45
by ReD-BaRoN
No luck
. Video plays, but no marquee is displayed.
Code: Select all
admins-Mac-Pro:Preferences admin$ /Applications/VLC.app/Contents/MacOS/VLC --no-embedded-video --video-x=0 --video-y=210 --width=320 --height=180 --video-filter=marq --marq-marquee=test --marq-position=9 --marq-opacity=255 --marq-color=0 udp://@239.1.1.80:49410&
[3] 35393
admins-Mac-Pro:Preferences admin$ [0x100214d38] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 0) for PID 0
No accelerated IMDCT transform found
[0x1458abf08] main video output error: Failed to create video filter2 'marq'
[0x1458abf08] main video output error: Failed while trying to append 'marq' to filter chain
[0x1458abf08] main video output error: Video filter chain creation failed
[0x1458abf08] main video output error: Failed to create video filter2 'marq'
[0x1458abf08] main video output error: Failed while trying to append 'marq' to filter chain
[0x1458abf08] main video output error: Video filter chain creation failed
Re: OSD Title show forever?
Posted: 28 Jun 2011 15:22
by Jean-Baptiste Kempf
Use all the logs -vvv and read them
Re: OSD Title show forever?
Posted: 28 Jun 2011 16:05
by ReD-BaRoN
This looks to be the culprit:
Code: Select all
[0x1030c6708] main filter debug: looking for video filter2 module: 0 candidates
[0x1030c6708] main filter debug: no video filter2 module matched "marq"
[0x1030c6708] main filter debug: TIMER module_need() : 0.349 ms - Total 0.349 ms / 1 intvls (Avg 0.349 ms)
[0x106840b08] main video output error: Failed to create video filter2 'marq'
[0x106840b08] main video output error: Failed while trying to append 'marq' to filter chain
[0x106840b08] main video output error: Video filter chain creation failed
Possible the Mac build isn't built with it?
Full debug output here:
http://pastebin.com/vtSU0Dzq
Thanks.
Re: OSD Title show forever?
Posted: 28 Jun 2011 16:52
by Jean-Baptiste Kempf
--sub-filter=marq
Re: OSD Title show forever?
Posted: 28 Jun 2011 19:35
by ReD-BaRoN
EDIT: It's working now, --sub-filter fixed it.
Thanks!