From 1ba0a257504d8100b3ac235f920461707a777d79 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Tue, 13 Sep 2011 23:52:23 +0200 Subject: [PATCH] Youtube: new video formats, again --- videosite/YouTubeGrabber.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/videosite/YouTubeGrabber.pm b/videosite/YouTubeGrabber.pm index 1a331d1..d72d783 100644 --- a/videosite/YouTubeGrabber.pm +++ b/videosite/YouTubeGrabber.pm @@ -28,8 +28,8 @@ my %preflist = ( my %videoformats = ( # Container/Video codec/Audio codec/Resolution 5 => 'FLV/Sorenson/MP3/240p', - 18 => 'MP4/H264/AAC/360p', - 22 => 'MP4/H264/AAC/720p', + 18 => 'MP4/H264/AAC/360p', # isommp42 + 22 => 'MP4/H264/AAC/720p', # isommp42 34 => 'FLV/H264/AAC/360p', 35 => 'FLV/H264/AAC/480p', 37 => 'MP4/H264/AAC/1080p', @@ -37,6 +37,8 @@ my %videoformats = ( 43 => 'WebM/VP8/Vorbis/360p', 44 => 'WebM/VP8/Vorbis/480p', 45 => 'WebM/VP8/Vorbis/720p', + 82 => 'MP4/H264/AAC/360p', # isomavc1mp42 + 84 => 'MP4/H264/AAC/720p', # isomavc1mp42 ); sub new { -- 1.8.3.1