Best blessings to the forum members

Microsoft Windows specific usage questions
Forum rules
Please post only Windows specific questions in this forum category. If you don't know where to post, please read the different forums' rules. Thanks.
benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Best blessings to the forum members

Postby benos » 21 Jun 2011 10:58

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.

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Best blessings to the forum members

Postby VLC_help » 21 Jun 2011 17:37

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.

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 22 Jun 2011 13:22

Sorry, could you please elaborate more?.
I didn't understand what should i do first and how?.
Thanks.

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Best blessings to the forum members

Postby VLC_help » 22 Jun 2011 19:12

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)

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 23 Jun 2011 00:58

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>

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Best blessings to the forum members

Postby VLC_help » 23 Jun 2011 17:29

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>

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 23 Jun 2011 21:02

Didn't work... :(

Plan B?

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 24 Jun 2011 13:12

hope there is..

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Best blessings to the forum members

Postby VLC_help » 24 Jun 2011 15:20

I don't know any other way.

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 12 Aug 2011 00:51

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.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Best blessings to the forum members

Postby Jean-Baptiste Kempf » 12 Aug 2011 11:30

Already there.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

benos
Blank Cone
Blank Cone
Posts: 17
Joined: 21 Jun 2011 10:53

Re: Best blessings to the forum members

Postby benos » 22 Aug 2011 09:07

Really?

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

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: Best blessings to the forum members

Postby VLC_help » 22 Aug 2011 16:26

In VLC 1.2.0 most likely.


Return to “VLC media player for Windows Troubleshooting”

Who is online

Users browsing this forum: No registered users and 38 guests