Page 1 of 1

Best blessings to the forum members

Posted: 21 Jun 2011 10:58
by benos
I use Win XP.

i hear a lot of voice files from a playlist.
the problem is, that, i can't FASTER their playing anytime a new file plays (from 1.00 to 1.10-1.50\2.**).
i must have a default PLAYING SPEED for all files.
if there is a way to so, my search in the advanced options didn't help me to find it,
that's way i'm asking you guys help..

thanks,
Ben.

Re: Best blessings to the forum members

Posted: 21 Jun 2011 17:37
by VLC_help
You can set rate to certain value with chosen files if you use e.g. XSPF playlists (use text editor to edit the file and insert <vlc:option>rate=2</vlc:option> or similar), but I ain't sure if it works correctly.

Re: Best blessings to the forum members

Posted: 22 Jun 2011 13:22
by benos
Sorry, could you please elaborate more?.
I didn't understand what should i do first and how?.
Thanks.

Re: Best blessings to the forum members

Posted: 22 Jun 2011 19:12
by VLC_help
Save the playlist in XSPF format. And the open it in text editor and add the rate option. (save the playlist and try it in VLC)

Re: Best blessings to the forum members

Posted: 23 Jun 2011 00:58
by benos
Hello again, please show me where to put this row. i tried to put it between the "playlist version" to the "title" but it didn't help.
just show me where so i could finish with that and also teach others, :D

i have posted the whole XSPF file content down here (cutted some bland tracks for U to see the whole file).

thanks,
Beni.

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
<title>Playlist</title>
<trackList>
<track>
<location>file:///C:/Documents%20and%20Settings/ben/Desktop/%D7%97%D7%95%D7%9E%D7%A8%20%D7%9C%D7%9E%D7%99%D7%93%D7%94/%D7%94%D7%A7%D7%9C%D7%98%D7%95%D7%AA%20-%20%D7%9B%D7%90%D7%95%D7%98%D7%99/%D7%A7%D7%A0%D7%99%D7%9D%20%D7%95%D7%9E%D7%93%D7%95%D7%9B%D7%99%D7%9D.wav</location>
<duration>22555</duration>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
</extension>
</track>
<track>
<location>file:///C:/Documents%20and%20Settings/ben/Desktop/%D7%97%D7%95%D7%9E%D7%A8%20%D7%9C%D7%9E%D7%99%D7%93%D7%94/%D7%94%D7%A7%D7%9C%D7%98%D7%95%D7%AA%20-%20%D7%9B%D7%90%D7%95%D7%98%D7%99/%D7%A7%D7%95%D7%9C%D7%95%D7%AA%20%D7%91%D7%A2%D7%9C%D7%99%20%D7%AA%D7%93%D7%99%D7%A8%D7%95%D7%AA%20%D7%A9%D7%95%D7%A0%D7%94%20-%20%D7%A0%D7%AA%D7%A4%D7%95%D7%A1%D7%9D%20%D7%9B%D7%91%D7%A2%D7%9C%D7%99%20%D7%92%D7%95%D7%91%D7%94%20%D7%A9%D7%95%D7%A0%D7%94.wav</location>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>1</vlc:id>
</extension>
</track>
<track>
</trackList>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0" />
<vlc:item tid="1" />
<vlc:item tid="2" />
<vlc:item tid="3" />
</extension>
</playlist>

Re: Best blessings to the forum members

Posted: 23 Jun 2011 17:29
by VLC_help
It should be something like

Code: Select all

<?xml version="1.0" encoding="UTF-8"?> <playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/"> <title>Playlist</title> <trackList> <track> <location>file:///C:/Documents%20and%20Settings/ben/Desktop/%D7%97%D7%95%D7%9E%D7%A8%20%D7%9C%D7%9E%D7%99%D7%93%D7%94/%D7%94%D7%A7%D7%9C%D7%98%D7%95%D7%AA%20-%20%D7%9B%D7%90%D7%95%D7%98%D7%99/%D7%A7%D7%A0%D7%99%D7%9D%20%D7%95%D7%9E%D7%93%D7%95%D7%9B%D7%99%D7%9D.wav</location> <duration>22555</duration> <extension application="http://www.videolan.org/vlc/playlist/0"> <vlc:id>0</vlc:id> <vlc:option>rate=2</vlc:option> </extension> </track> <track> <location>file:///C:/Documents%20and%20Settings/ben/Desktop/%D7%97%D7%95%D7%9E%D7%A8%20%D7%9C%D7%9E%D7%99%D7%93%D7%94/%D7%94%D7%A7%D7%9C%D7%98%D7%95%D7%AA%20-%20%D7%9B%D7%90%D7%95%D7%98%D7%99/%D7%A7%D7%95%D7%9C%D7%95%D7%AA%20%D7%91%D7%A2%D7%9C%D7%99%20%D7%AA%D7%93%D7%99%D7%A8%D7%95%D7%AA%20%D7%A9%D7%95%D7%A0%D7%94%20-%20%D7%A0%D7%AA%D7%A4%D7%95%D7%A1%D7%9D%20%D7%9B%D7%91%D7%A2%D7%9C%D7%99%20%D7%92%D7%95%D7%91%D7%94%20%D7%A9%D7%95%D7%A0%D7%94.wav</location> <extension application="http://www.videolan.org/vlc/playlist/0"> <vlc:id>1</vlc:id> <vlc:option>rate=4</vlc:option> </extension> </track> <track> </trackList> <extension application="http://www.videolan.org/vlc/playlist/0"> <vlc:item tid="0" /> <vlc:item tid="1" /> <vlc:item tid="2" /> <vlc:item tid="3" /> </extension> </playlist>

Re: Best blessings to the forum members

Posted: 23 Jun 2011 21:02
by benos
Didn't work... :(

Plan B?

Re: Best blessings to the forum members

Posted: 24 Jun 2011 13:12
by benos
hope there is..

Re: Best blessings to the forum members

Posted: 24 Jun 2011 15:20
by VLC_help
I don't know any other way.

Re: Best blessings to the forum members

Posted: 12 Aug 2011 00:51
by benos
well, could you please tell me how to create an HOTKEY for Fastening a video? (also in parts of X 0.10).

---

BTW, to whom i need to go to ask that in the next version of VLC there will be an option to faster the playlist's playing speed itself?.

best blessings.

Re: Best blessings to the forum members

Posted: 12 Aug 2011 11:30
by Jean-Baptiste Kempf
Already there.

Re: Best blessings to the forum members

Posted: 22 Aug 2011 09:07
by benos
Really?

Strange, i didn't get an UPDATE notification..

Re: Best blessings to the forum members

Posted: 22 Aug 2011 16:26
by VLC_help
In VLC 1.2.0 most likely.