Code:
**External links are only visible to Support Staff** It seems youtube is removing the 1080p videos in mp4 and webm formats. They now use a new format (DASH) for 1080p. This format is not supported yet by smplayer. In this format the video and audio are separated in different streams. Youtube-dl can download videos in this format (it’s necessary to download both the video and audio streams). The development version of smplayer can play the files downloaded by youtube-dl. You just open the video (with mp4 extension) and smplayer will use automatically the m4a for the audio. This example shows how to download both the video and audio with youtube-dl: This lists the available formats: youtube-dl -F **External links are only visible to Support Staff** [youtube] Setting language [youtube] Vpg9yizPP_g: Downloading video webpage [youtube] Vpg9yizPP_g: Downloading video info webpage [youtube] Vpg9yizPP_g: Extracting video information Available formats: 22 : mp4 [720x1280] 18 : mp4 [360x640] 43 : webm [360x640] 5 : flv [240x400] 36 : 3gp [240x320] 17 : 3gp [144x176] 137 : mp4 [1080p] (DASH Video) 136 : mp4 [720p] (DASH Video) 135 : mp4 [480p] (DASH Video) 134 : mp4 [360p] (DASH Video) 133 : mp4 [240p] (DASH Video) 160 : mp4 [192p] (DASH Video) 141 : m4a [256k] (DASH Audio) 140 : m4a [128k] (DASH Audio) 139 : m4a [48k] (DASH Audio) This downloads the video: youtube-dl -f 137 **External links are only visible to Support Staff** [youtube] Setting language [youtube] Vpg9yizPP_g: Downloading video webpage [youtube] Vpg9yizPP_g: Downloading video info webpage [youtube] Vpg9yizPP_g: Extracting video information [download] Destination: Big Buck Bunny [HD] _ FULL MOVIE Short film (2008)-Vpg9yizPP_g.mp4 [download] 100% of 205.34MiB in 02:53 This downloads the audio: youtube-dl -f 141 **External links are only visible to Support Staff** [youtube] Setting language [youtube] Vpg9yizPP_g: Downloading video webpage [youtube] Vpg9yizPP_g: Downloading video info webpage [youtube] Vpg9yizPP_g: Extracting video information [download] Destination: Big Buck Bunny [HD] _ FULL MOVIE Short film (2008)-Vpg9yizPP_g.m4a [download] 100% of 18.14MiB in 00:20 Now smplayer can play both files by opening the mp4: smplayer "Big Buck Bunny [HD] _ FULL MOVIE Short film (2008)-Vpg9yizPP_g.mp4" This requires the development version of smplayer, the latest version of youtube-dl and a very recent version of mplayer (with older ones, file plays but seek doesn’t work correctly). If you want to join the video and audio files into one video file, it seems it can be done with mencoder (again, you need a very recent version of mencoder): mencoder -oac copy -ovc copy -fafmttag 0x706d -of lavf -lavfopts format=mp4 "Big Buck Bunny [HD] _ FULL MOVIE Short film (2008)-Vpg9yizPP_g.mp4" -audiofile "Big Buck Bunny [HD] _ FULL MOVIE Short film (2008)-Vpg9yizPP_g.m4a" -o full_movie.mp4