Search found 45 matches

Go to advanced search

by fenrir
15 Nov 2008 22:45
Forum: General VLC media player Troubleshooting
Topic: vlc dvd copy creates huge output file
Replies: 4
Views: 2348

Re: vlc dvd copy creates huge output file

You should use dvdsimple to copy DVD otherwise with DVD menu support activated (dvd://), the title may be looping again and again.
by fenrir
10 Oct 2008 22:49
Forum: VLC media player Feature Requests
Topic: Smarter Caching
Replies: 4
Views: 983

Re: Smarter Caching

I have vastly improved startup time and seek latency even with really high buffering value in git master.
by fenrir
21 Sep 2008 23:54
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

I have fixed the positioning of 00:00:45,499 --> 00:00:50,500 I am looking at the invalid tags and <> display and I will add "support" for it but I don't really feel that a player should handle such broken streams/designs. Using html tags and <> instead of </> seems wrong (Not that vlc sup...
by fenrir
21 Sep 2008 00:11
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

By the way, I have a question about "Hide these tags: {\some_letters_or_num}" :
What characters are allowed inside the {\} ?
If some_letters_or_num is really only A-Z aZ and 0-9 then the one you use will not be hidden because of _ ;)
by fenrir
21 Sep 2008 00:07
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

It does that because we have a precision of about one or two frames (40/80ms) for subtitle rendering, so ...
by fenrir
20 Sep 2008 17:56
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

I have fixed all overlap positioning problems except one in your last test: the one with a subtitle that starts 1 frame before the end of the previous subtitle. I will try to see why but it does not seem really important for me. About the italic/bold problem, it isn't present under linux, so it may ...
by fenrir
12 Sep 2008 20:41
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

About VLC 1.0 (git) : - are you sure bold and italics are not working? They work perfectly here. What OS are you using? - about font face: why would your sample not display anything ? On my computer I do not have the font you request, so instead of loosing the subtitle, a default font is used. I wil...
by fenrir
08 Sep 2008 20:19
Forum: VLC media player Feature Requests
Topic: Complete support for .srt subtitles
Replies: 49
Views: 15569

Re: Complete support for .srt subtitles

In the master (1.0) I have fixed all issues except - position (left, right, top, ...) - subtitles overlap About overlapped subtitles, what would be the right way? - The more recent override the previous one? - or both should be displayed at the same time? and if so, which one should be on the top of...
by fenrir
23 Oct 2007 17:33
Forum: VLC media player Feature Requests
Topic: Karaoke CD+G support?
Replies: 74
Views: 56445

Re: Karaoke CD+G support?

In VLC, you just need to open the mp3 (and not the CDG), then the CDG file will be automatically found for you. In fact, CDG files act just like a subtitle. Doing the other way around will be a bit to intrusive in VLC. Plus, that way you do not even need to add .cdg to the interface ;) Now about the...
by fenrir
21 Oct 2007 18:05
Forum: General VLC media player Troubleshooting
Topic: howto stop vlc after 30 minutes or X minutes
Replies: 15
Views: 50907

Re: howto stop vlc after 30 minutes or X minutes

When reading a streaming source, stop-time does not always works. But you can use run-time (second) like this:
vlc url --run-time 1800 vlc:quit
by fenrir
21 Oct 2007 18:03
Forum: General VLC media player Troubleshooting
Topic: High/low speed with sound?
Replies: 11
Views: 5892

Re: High/low speed with sound?

I have added 1.5x and 3x speed position.
I plan to add audio pitch modification but it is not quite done yet (btw soundtouch is not suitable for our needs as it buffers too much audio when going slower and the current vlc audio output does not like that at all).
by fenrir
20 Oct 2007 20:38
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Script for Timed Video Input Capture
Replies: 2
Views: 1421

Re: Script for Timed Video Input Capture

If you use the svn version, you can use the option --run-time (the parameter is in second). It specify the amount of time one input will run.
For example
vlc url --run-time 3600 vlc:quit
will play 'url' for 1 hour before quitting vlc.
by fenrir
12 Oct 2007 21:54
Forum: General VLC media player Troubleshooting
Topic: Boken deinterlacing
Replies: 1
Views: 580

Re: Boken deinterlacing

I have commited a fix.
It should work in the next nightly build.
Thanks for your report.
by fenrir
13 Jun 2007 22:40
Forum: VLC media player for macOS Troubleshooting
Topic: AIFF playback
Replies: 3
Views: 1318

It should be fixed in SVN (You may want to try a nightly build tomorrow.)
by fenrir
22 May 2006 20:07
Forum: VLC media player Feature Requests
Topic: raw TCP input
Replies: 5
Views: 8935

You should already be able to read TS over TCP using:
vlc tcp://ip:port
(You can enforce the TS demuxer using vlc tcp/ts://ip:port)
by fenrir
19 Jul 2004 09:56
Forum: General VLC media player Troubleshooting
Topic: Is Transcoding with keeping multiple audio PIDs possible?
Replies: 1
Views: 443

With the current SVN it is possible to keep all audio, just add the option --sout-all With 0.7.2 it's a bit more complicated, if your source is a TS then add /ts2: before the name, and if it's PS then add /ps2: Example: vlc /ts2:my_ts_file --sout '#....' --sout-all (/ts2: forces to use another TS de...
by fenrir
25 May 2004 21:48
Forum: General VLC media player Troubleshooting
Topic: Want to change the pid for a audio and video stream
Replies: 1
Views: 16077

You can use pid-audio and pid-video (using mux=ts{pid-audio=X,pid-video=Y}
or using --sout-ts-pid-audio=X --sout-ts-pid-video=Y)

See the output of vlc -p mux_ts for more informations/options.
by fenrir
25 May 2004 21:40
Forum: General VLC media player Troubleshooting
Topic: quicktime .mov problem
Replies: 5
Views: 1506

I have commited a workaround. (Basically just using samplesize 8 for alaw/ulaw, in mp4.c).
Thanks for the report.
by fenrir
09 Mar 2004 21:48
Forum: General VLC media player Troubleshooting
Topic: MKV problem - Mac 10.3.2
Replies: 1
Views: 652

MKV is supported, but your file use real video codec that we don't support.

Go to advanced search