Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
38
rated 0 times [  38] [ 0]  / answers: 1 / hits: 45870  / 2 Years ago, sun, august 14, 2022, 6:52:55

I would like to play youtube videos on VLC.
I am newbie (one of mac os re, but can fallow instructions :)
when i enter address on network stream nothing happens it is on the playlist but nothing happens it is not playing.
I have a firewall if it helps :)



Problem solved thanks to your help!!


More From » vlc

 Answers
4

I assume you entered the URL correctly (no https but http, and only the v=... part, like http://www.youtube.com/watch?v=-wxawmjnRWY)?



Open the Extras menu and click on Messages. Now click play again and see what message's there.



My guess is it's



lua error: Couldn't extract youtube video URL, please check for updates to this script


VLC parses YouTube's HTML source code to look for the video, but sometimes, YouTube changes its way it outputs the HTML, so VLC is unable to find the video URL.



Possible workarounds




  • Go to https://www.youtube.com/html5 and enable html5 there to play the video in your browser without flash

  • Install minitube and try to play the video there

  • Wait for an update of VLC (or update the lua script yourself - not so easy, see Updating the VLC YouTube parser)

  • Install the package youtube-dl and download the video to your harddisk. It's a command line utility though



Updating the VLC YouTube parser



Update just the Lua script for YouTube parsing to the latest version from VLC:



Open the Terminal application and enter these commands:



Make sure curl is installed, we need this to download the new file



sudo apt-get install curl


Get rid of the old, non-working scripts



sudo rm /usr/lib/vlc/lua/playlist/youtube.*


Download the current ones (use the whole command line, yes, it's quite long):



sudo curl "http://git.videolan.org/?p=vlc.git;a=blob_plain;f=share/lua/playlist/youtube.lua;hb=HEAD" -o /usr/lib/vlc/lua/playlist/youtube.lua


See if it works.


[#35084] Monday, August 15, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
alliulet

Total Points: 46
Total Questions: 109
Total Answers: 97

Location: Svalbard and Jan Mayen
Member since Sat, Oct 10, 2020
4 Years ago
;