Youtube help

For questions and discussion that is NOT (I repeat NOT) specific to a certain Operating System.
etn
New Cone
New Cone
Posts: 3
Joined: 23 Jul 2010 05:05

Re: Youtube help

Postby etn » 25 Jul 2010 04:54

I haven't found it yet either, however, I think you two guys who are being so rude should take that elsewhere.

You probably would've gotten a lot more help if you had nicely asked for a link.

IamZombie
New Cone
New Cone
Posts: 6
Joined: 23 Jul 2010 02:53

Re: Youtube help

Postby IamZombie » 25 Jul 2010 09:00

I haven't found it yet either, however, I think you two guys who are being so rude should take that elsewhere.

You probably would've gotten a lot more help if you had nicely asked for a link.

What help?
His only reply was to yell that we need to upgrade to some unreleased/non-public version.
Forum rules
Be polite when posting, and please refrain from using insults or other abusive language.
Don't use ALL CAPITALS EVERYWHERE or very big text or a lot of color in your posting. This is considered to be highly annoying and will most likely result in no one answering you.

Rémi Denis-Courmont
Developer
Developer
Posts: 15266
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: Youtube help

Postby Rémi Denis-Courmont » 25 Jul 2010 09:27

I haven't found it yet either, however, I think you two guys who are being so rude should take that elsewhere.

You probably would've gotten a lot more help if you had nicely asked for a link.
http://git.videolan.org/?p=vlc/vlc-1.1. ... 211e535e66
I haven't checked the nightly builds status, but it should be in.
What help?
His only reply was to yell that we need to upgrade to some unreleased/non-public version.
No. My response was to point that out. Then when another two people completely ignored the response (not even bothering to ask clarifications, you know), I wrote the same thing again in larger fonts. And, for those who don't understand version numbers, I even added that, well it is more recent than 1.1.1.

And no big news here. When a bug is fixed in the latest develoment version, the bug is fixed. Over. That's how our bug tracker has worked for years, and that's how the whole software industry works internally. This is especially true for open-source: http://git.videolan.org/?p=vlc/vlc-1.1. ... 211e535e66

The project simply cannot make a full blown release for every fix that is delivered (I count already 220 individual changes since 1.1.0). And even if we could, what do you guys would think if we had the auto-update kicking every 4 hours (220 changes in 35 days), and how do you think the download servers would cope?
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

kovezett
Blank Cone
Blank Cone
Posts: 51
Joined: 12 Mar 2009 19:57

Re: Youtube help

Postby kovezett » 25 Jul 2010 15:17

1. Find the youtube.lua file on your computer.
2. Open it with a text editor.
3. Replace the text with this:

Code: Select all

--[[ $Id$ Copyright © 2007-2009 the VideoLAN team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. --]] -- Helper function to get a parameter's value in a URL function get_url_param( url, name ) local _, _, res = string.find( url, "[&?]"..name.."=([^&]*)" ) return res end function get_arturl( path, video_id ) if string.match( vlc.path, "iurl=" ) then return vlc.strings( get_url_param( vlc.path, "iurl" ) ) end if not arturl then return "http://img.youtube.com/vi/"..video_id.."/default.jpg" end end -- Probe function. function probe() if vlc.access ~= "http" then return false end youtube_site = string.match( string.sub( vlc.path, 1, 8 ), "youtube" ) if not youtube_site then -- FIXME we should be using a builtin list of known youtube websites -- like "fr.youtube.com", "uk.youtube.com" etc.. youtube_site = string.find( vlc.path, ".youtube.com" ) if youtube_site == nil then return false end end return ( string.match( vlc.path, "watch%?v=" ) -- the html page or string.match( vlc.path, "watch_fullscreen%?video_id=" ) -- the fullscreen page or string.match( vlc.path, "p.swf" ) -- the (old?) player url or string.match( vlc.path, "jp.swf" ) -- the (new?) player url (as of 24/08/2007) or string.match( vlc.path, "player2.swf" ) ) -- another player url end -- Parse function. function parse() if string.match( vlc.path, "watch%?v=" ) then -- This is the HTML page's URL while true do -- Try to find the video's title line = vlc.readline() if not line then break end if string.match( line, "<meta name=\"title\"" ) then _,_,name = string.find( line, "content=\"(.-)\"" ) end if string.match( line, "<meta name=\"description\"" ) then -- Don't ask me why they double encode ... _,_,description = vlc.strings.resolve_xml_special_chars(vlc.strings.resolve_xml_special_chars(string.find( line, "content=\"(.-)\"" ))) end if string.match( line, "subscribe_to_user=" ) then _,_,artist = string.find( line, "subscribe_to_user=([^&]*)" ) end -- CURRENT: var swfHTML = (isIE) ? "<object [...]><param name=\"flashvars\" value=\"rv.2.thumbnailUrl=http%3A%2F%2Fi4.ytimg.com%2Fvi%2F3MLp7YNTznE%2Fdefault.jpg&rv.7.length_seconds=384 [...] &video_id=OHVvVmUNBFc [...] &t=OEgsToPDskK3zO44y0QN8Fr5ZSAZwCQp [...] if string.match( line, "swfHTML" ) and string.match( line, "video_id" ) then _,_,t = string.find( line, "&t=(.-)&" ) -- OLD 1: var swfArgs = {hl:'en',BASE_YT_URL:'http://youtube.com/',video_id:'XPJ7d8dq0t8',l:'292',t:'OEgsToPDskLFdOYrrlDm3FQPoQBYaCP1',sk:'0gnr-AE6QZJEZmCMd3lq_AC'}; -- OLD 2: var swfArgs = { "BASE_YT_URL": "http://youtube.com", "video_id": "OHVvVmUNBFc", "l": 88, "sk": "WswKuJzDBsdD6oG3IakCXgC", "t": "OEgsToPDskK3zO44y0QN8Fr5ZSAZwCQp", "plid": "AARGnwWMrmGkbpOxAAAA4AT4IAA", "tk": "mEL4E7PqHeaZp5OG19NQThHt9mXJU4PbRTOw6lz9osHi4Hixp7RE1w=="}; -- OLD 3: 'SWF_ARGS': { [a lot of stuff...], "video_id": "OHVvVmUNBFc", "sk": "WswKuJzDBsdD6oG3IakCXgC", "t": "OEgsToPDskK3zO44y0QN8Fr5ZSAZwCQp", "plid": "AARGnwWMrmGkbpOxAAAA4AT4IAA"}; elseif ( string.match( line, "SWF_ARGS" ) or string.match( line, "swfArgs" ) ) and string.match( line, "video_id" ) then if string.match( line, "BASE_YT_URL" ) then _,_,base_yt_url = string.find( line, "\"BASE_YT_URL\": \"(.-)\"" ) end _,_,t = string.find( line, "\"t\": \"(.-)\"" ) -- vlc.msg.err( t ) -- video_id = string.gsub( line, ".*&video_id:'([^']*)'.*", "%1" ) end if name and description and artist --[[and video_id]] then break end end if not video_id then video_id = get_url_param( vlc.path, "v" ) end if not base_yt_url then base_yt_url = "http://youtube.com/" end arturl = get_arturl( vlc.path, video_id ) -- fmt is the format of the video: 18 is HQ (mp4) fmt = get_url_param( vlc.path, "fmt" ) if fmt then format = "&fmt=" .. fmt else format = "" end if t then return { { path = base_yt_url .. "get_video?video_id="..video_id.."&t="..t.."&asv="..format; name = name; description = description; artist = artist; arturl = arturl } } else -- This shouldn't happen ... but keep it as a backup. return { { path = "http://www.youtube.com/v/"..video_id; name = name; description = description; artist = artist; arturl = arturl } } end else -- This is the flash player's URL if string.match( vlc.path, "title=" ) then name = get_url_param( vlc.path, "title" ) end video_id = get_url_param( vlc.path, "video_id" ) arturl = get_arturl( vlc.path, video_id ) fmt = get_url_param( vlc.path, "fmt" ) if fmt then format = "&fmt=" .. fmt else format = "" end if not string.match( vlc.path, "t=" ) then -- This sucks, we're missing "t" which is now mandatory. Let's -- try using another url return { { path = "http://www.youtube.com/v/"..video_id; name = name; arturl = arturl } } end return { { path = "http://www.youtube.com/get_video.php?video_id="..video_id.."&t="..get_url_param( vlc.path, "t" ).."&asv="..format; name = name; arturl = arturl } } end end
4. Save the file.

That's all.

Anfe
New Cone
New Cone
Posts: 1
Joined: 26 Jul 2010 00:08

Re: Youtube help

Postby Anfe » 26 Jul 2010 00:10

Thanks kovezett.
I've changed the youtube.lua file and now it works.
I can watch youtube videos on VLC. :D

IamZombie
New Cone
New Cone
Posts: 6
Joined: 23 Jul 2010 02:53

Re: Youtube help

Postby IamZombie » 26 Jul 2010 02:38

OK, thank you for the help, I can now view youtube videos in VLC.

Now how do I save them?
If I convert them, all I get is a ~200 byte file.

I'm trying to save just the audio from a video.

vilapupu
Blank Cone
Blank Cone
Posts: 28
Joined: 01 Jun 2009 04:15
VLC version: 3.0.12
Operating System: Win 10 Pro x64
Location: MD, USA

Re: Youtube help

Postby vilapupu » 26 Jul 2010 10:34

OK, so I was getting this problem today, so instead of making a topic about it, I just tried looking it first if the bug was reported and saw this. ^^
did the youtube.lua file thing and it worked! ^^
Now, I did this differently since I have Windows Vista so I will tell on how I did it:

1st was to look for the file. I just pressed on Start, then "Computer", then to "Local Disk (C:)" and then I copy and pasted ' youtube.lua ' in the top right corner of the screen. (for quick results, go to the "Program Files" folder when searching the " youtube.lua ".

2nd was to Open the youtube.lua file with WordPad. then I just deleted everything in the document and copy and pasted all from the new text that was posted here

3rd was that Before saving, to Right-click the file 'youtube.lua' and press on "Properties". Then from there I went to the "Security" Tab, clicked on "Edit", press on Continue to the pop-up window, and then checked the "Full Control" in 'User' (will say your username of your PC) and clicked OK.

4rd was the simplest one and it was to go back to the WordPad Document and click on "Save". and close it.


Hope this was useful for Win Vista (and probally Windows 7 users) to not get the "access denied" or "can't save" message when editing "youtube.lua" in Wordpad or in any other text editing program.

migawka
Blank Cone
Blank Cone
Posts: 10
Joined: 01 Apr 2010 02:23
Location: Poland

Re: Youtube help

Postby migawka » 29 Jul 2010 15:23

hi, can someone change the youtube.lua code to force VLC to play higher quality videos 480p? thanks
VLC v1.1.5, OS Windows XP Pro SP3

kovezett
Blank Cone
Blank Cone
Posts: 51
Joined: 12 Mar 2009 19:57

Re: Youtube help

Postby kovezett » 29 Jul 2010 16:21

hi, can someone change the youtube.lua code to force VLC to play higher quality videos 480p? thanks
You can add fmt switchers to the URL:

Original LQ FLV:

http://www.youtube.com/watch?v=Yy2uHAS-el0

MPG: add &fmt=18

http://www.youtube.com/watch?v=Yy2uHAS-el0&fmt=18

FLV: add &fmt=34

http://www.youtube.com/watch?v=Yy2uHAS-el0&fmt=34

HQ FLV: add &fmt=35

http://www.youtube.com/watch?v=Yy2uHAS-el0&fmt=35

HD MP4: add &fmt=22

http://www.youtube.com/watch?v=Yy2uHAS-el0&fmt=22

migawka
Blank Cone
Blank Cone
Posts: 10
Joined: 01 Apr 2010 02:23
Location: Poland

Re: Youtube help

Postby migawka » 29 Jul 2010 20:35

I don't want add anything to the URLs, I want youtube.lua to open automatically 480p
VLC v1.1.5, OS Windows XP Pro SP3

Lotesdelere
Cone Master
Cone Master
Posts: 9967
Joined: 08 Sep 2006 04:39
Location: Europe

Re: Youtube help

Postby Lotesdelere » 29 Jul 2010 22:07

I'm getting the highest available resolution with VLC v1.1.2.

For instance when using the link Kovezett has posted I automatically get 720p:
http://www.youtube.com/watch?v=Yy2uHAS-el0

kovezett
Blank Cone
Blank Cone
Posts: 51
Joined: 12 Mar 2009 19:57

Re: Youtube help

Postby kovezett » 30 Jul 2010 15:15

I'm getting the highest available resolution with VLC v1.1.2.

For instance when using the link Kovezett has posted I automatically get 720p:
http://www.youtube.com/watch?v=Yy2uHAS-el0
Yes, great improvement in the new youtube.lua script! :)

What a pity that the Mozilla plugin can't handle it... :(

migawka
Blank Cone
Blank Cone
Posts: 10
Joined: 01 Apr 2010 02:23
Location: Poland

Re: Youtube help

Postby migawka » 30 Jul 2010 16:32

I'm getting the highest available resolution with VLC v1.1.2.

For instance when using the link Kovezett has posted I automatically get 720p:
http://www.youtube.com/watch?v=Yy2uHAS-el0
bug. when I use Open location from clipboard Ctr + V and Play VLC jumps to the first position on the playlist
v1.1.2
VLC v1.1.5, OS Windows XP Pro SP3

lamosca
New Cone
New Cone
Posts: 9
Joined: 01 Aug 2010 07:48

Re: Youtube help

Postby lamosca » 01 Aug 2010 09:38

Hello all. I wrote a shell script for mac to sort of automate the process of opening youtube vids in vlc. I call it 'YouSuck'; inspired by 'rtmpsuck' and my general feelings towards flash performance on my mac. I'm extremely new to shell scripting so this is anything but perfect, however it does make the process a little easier. Any tips or edits are welcome. Also you may need to install ngrep if you don't already have it.

Code: Select all

#!/bin/sh function vlc(){ open -a /Applications/VLC.app $1 } function vsearch(){ printf "Open a YouTube video and press 'Enter' in Terminal" echo ngrep -q -W byline | grep -Eiom 2 'http.+watch\?v=.+(channel|related|[^\?\.])' >> "/tmp/UNSORTED.m3u" read awk '!x[$0]++' /tmp/UNSORTED.m3u > /tmp/YOUTEMPS.m3u vlc /tmp/YOUTEMPS.m3u } if [ -f /tmp/YOUTEMPS.m3u ]; then printf "Open recently watched videos? [y/n] " read -n 1 answer if [ "$answer" = "y" ]; then echo open -a /Applications/VLC.app "/tmp/YOUTEMPS.m3u" exit 1 elif [ "$answer" = "n" ]; then echo vsearch fi else vsearch fi
Here is a vid of it in action. http://www.youtube.com/watch?v=VoE9az9NIsQ. Watch it in vlc :)

kartal
New Cone
New Cone
Posts: 9
Joined: 18 Sep 2008 15:45

Re: Youtube help

Postby kartal » 06 Aug 2010 02:21

I had no idea about Youtube feature. Accidentally ended up here. Thank you for the fix and the Youtube support

jm-deagot
New Cone
New Cone
Posts: 8
Joined: 25 Aug 2011 04:15

Re: Youtube help

Postby jm-deagot » 30 Aug 2011 23:56

I'm using VLC 1.1.11, and am getting the following error when trying to watch Youtube videos :

File reading failed:
VLC could not open the file "www.youtube.com/watch?v=OPXD4ipoMQ8".
Your input can't be opened:
VLC is unable to open the MRL '://www.youtube.com/watch?v=OPXD4ipoMQ8'. Check the log for details.

I've tried the lua patch, but, that didn't seem to fix it :(

I am slightly hard of hearing, so, VLC would be a lifeline for me as so many Youtube videos are so quiet.

Can anyone help?

Rémi Denis-Courmont
Developer
Developer
Posts: 15266
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: Youtube help

Postby Rémi Denis-Courmont » 31 Aug 2011 08:13

I appreciate that you like to use VLC, but you don't need VLC to increase the volume. You just need to adjust the volume knob on your PC speakers.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

osmium
New Cone
New Cone
Posts: 3
Joined: 29 Aug 2013 20:40

Re: Youtube help

Postby osmium » 29 Aug 2013 20:57

I'm assuming anyone who uses VLC to boost video volume does so for the same reason as me: because even with system, application, youtube, and speaker volumes all the way up, some videos are still barely audible due to improper mixing when the video was made. VLC allows you to bring the volume up to 200% making these videos audible.

I'm running into playback issues with VLC 2.0.8 Twoflower for only SOME videos. In my case VLC is able to determine the name of the video, but not play it. An example of a problem is with http://www.youtube.com/watch?v=9V85OykSDT8. The error I get in VLC in level 2 (debug) logging mode is

Code: Select all

main debug: processing request item: http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706, node: Playlist, skip: 0 main debug: resyncing on http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706 main debug: http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706 is at 1 main debug: starting playback of the new playlist item main debug: resyncing on http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706 main debug: http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706 is at 1 main debug: creating new input thread main debug: Creating an input for 'http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' main debug: using timeshift granularity of 50 MiB, in path 'C:\Users\STEPHE~1.QFT\AppData\Local\Temp' main debug: `http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' gives access `http' demux `' path `r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' main debug: creating demux: access='http' demux='' location='r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' file='\\r14---sn-q4f7dnls.c.youtube.com\videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312,911403,923002,914047,916623,929117,929121,929906,929907,929922,929127,929129,929131,929930,936403,925726,925720,925722,925718,929917,906945,929933,920302,913428,920605,904830,919373,930803,908536,904122,938701,936308,909549,900816,912711,904494,904497,900375,906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp,id,ip,ipbits,itag,ratebypass,source,upn,expire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' main debug: looking for access_demux module: 0 candidates main debug: no access_demux module matched "http" main debug: TIMER module_need() : 0.169 ms - Total 0.169 ms / 1 intvls (Avg 0.169 ms) main debug: creating access 'http' location='r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706', path='\\r14---sn-q4f7dnls.c.youtube.com\videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312,911403,923002,914047,916623,929117,929121,929906,929907,929922,929127,929129,929131,929930,936403,925726,925720,925722,925718,929917,906945,929933,920302,913428,920605,904830,919373,930803,908536,904122,938701,936308,909549,900816,912711,904494,904497,900375,906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp,id,ip,ipbits,itag,ratebypass,source,upn,expire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' main debug: looking for access module: 2 candidates access_http debug: http: server='r14---sn-q4f7dnls.c.youtube.com' port=80 file='/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' main debug: net: connecting to r14---sn-q4f7dnls.c.youtube.com port 80 main debug: connection succeeded (socket = 1416) qt4 debug: IM: Setting an input access_http debug: protocol 'HTTP' answer code 500 access_http error: error: HTTP/1.1 500 Internal Server Error access_http debug: switching to HTTP version 1.0 main debug: net: connecting to r14---sn-q4f7dnls.c.youtube.com port 80 main debug: connection succeeded (socket = 1416) access_http debug: protocol 'HTTP' answer code 500 access_http error: error: HTTP/1.1 500 Internal Server Error main debug: net: connecting to r14---sn-q4f7dnls.c.youtube.com port 80 main debug: connection succeeded (socket = 1416) access_mms error: error: HTTP/1.1 500 Internal Server Error main debug: no access module matching "http" could be loaded main debug: TIMER module_need() : 577.809 ms - Total 577.809 ms / 1 intvls (Avg 577.809 ms) main error: open of `http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2C929922%2C929127%2C929129%2C929131%2C929930%2C936403%2C925726%2C925720%2C925722%2C925718%2C929917%2C906945%2C929933%2C920302%2C913428%2C920605%2C904830%2C919373%2C930803%2C908536%2C904122%2C938701%2C936308%2C909549%2C900816%2C912711%2C904494%2C904497%2C900375%2C906001&ms=au&itag=45&sver=3&mt=1377802223&ratebypass=yes&sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&expire=1377825427&ip=173.219.117.156&mv=m&ipbits=8&key=yt1&signature=A98A7A8359C1D9817918F312954C76301BAF7812.3C3C8F9DBDD2FD6DA123C4918BEBA8A02AA36706' failed main debug: dead input main debug: changing item without a request (current 1/2) main debug: nothing to play qt4 debug: IM: Deleting the input main debug: TIMER input launching for 'http://r14---sn-q4f7dnls.c.youtube.com/videoplayback?id=f55f393b29120d3f&cp=U0hWTFhNU19HUUNONl9QR1dFOlVGc1pYY1YzM3d6&source=youtube&upn=UNj1R-tDWYg&fexp=931312%2C911403%2C923002%2C914047%2C916623%2C929117%2C929121%2C929906%2C929907%2 : 631.627 ms - Total 631.627 ms / 1 intvls (Avg 631.627 ms)
Most videos play just fine. I'm not entering the URL any differently into VLC.

Thanks for any help you can provide.

Rémi Denis-Courmont
Developer
Developer
Posts: 15266
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: Youtube help

Postby Rémi Denis-Courmont » 29 Aug 2013 21:39

200% is not very much compared to what you can do with the mixer or speaker amplifier...
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

osmium
New Cone
New Cone
Posts: 3
Joined: 29 Aug 2013 20:40

Re: Youtube help

Postby osmium » 30 Aug 2013 19:48

Obviously if I had external speakers this wouldn't be a problem. Like I said, I have the volumes all the way up in the Windows mixer and I have the volume all the way up on the YouTube player. I know what I'm doing. Bringing to the volume up in VLC to 200% doubles the gain. I've used this method for numerous videos when dealing with my little built-in speakers.

THAT ASIDE, I'm looking for a resolution for the fact that VLC is unable to play some YouTube videos. Did you try it for yourself with the URL I provided?

JSLover
Cone that earned his stripes
Cone that earned his stripes
Posts: 116
Joined: 20 Mar 2012 00:08
VLC version: 2.1.5
Operating System: Win7
Location: r.secsrv.net/youtube.lua

Re: YouTube help

Postby JSLover » 01 Sep 2013 11:19

An example of a problem is with http://www.youtube.com/watch?v=9V85OykSDT8.
...this video doesn't work, cuz format 45 is effed up on YouTube (I don't know how or why). Format 45 (aka &fmt=45, or &itag=45) is the 1st listed format for this video, by being listed 1st, it's the default one VLC chooses...

This URL doesn't work (explicitly choosing fmt=45)...
These URLs do work...
...(note: this video has other formats, that I chose not to link to: 43, 34, 18, 5, 36, 17).
"why the f*** do i need a google+ account to comment on a video?" — jawed (2013) (about YouTube's new requirement of Google+)

youtube.lua — Play YouTube videos in VLC!
Updated: Thu, Jan 15, 2015 --- 1/15/15, 7:19:19pm EST

forum.videolan.org/viewtopic.php?f=29&t=111977&p=379147#p379147
Sigh, the above can't be a link: "You cannot use certain BBCodes: [url]."...so, I can't even link back to a post on this forum?
How about this: can long-term/trusted users be allowed links in sigs?

osmium
New Cone
New Cone
Posts: 3
Joined: 29 Aug 2013 20:40

Re: Youtube help

Postby osmium » 02 Sep 2013 21:06

Thanks, JSLover! I didn't know anything about the formatting URL suffixes. Is there a way I can see available formats in the future for a given video?


Return to “General VLC media player Troubleshooting”

Who is online

Users browsing this forum: No registered users and 16 guests