Lines 1-6
Link Here
|
1 |
--- youtube-dl.orig 2008-10-12 16:49:43.000000000 +0400 |
1 |
--- youtube-dl.orig 2009-02-18 15:18:40.981138312 +0800 |
2 |
+++ youtube-dl 2008-10-12 16:54:22.000000000 +0400 |
2 |
+++ youtube-dl 2009-02-18 15:20:30.904521591 +0800 |
3 |
@@ -309,6 +309,20 @@ |
3 |
@@ -315,6 +315,20 @@ |
4 |
retcode = self.trouble('ERROR: postprocessing: %s' % str(err)) |
4 |
retcode = self.trouble('ERROR: postprocessing: %s' % str(err)) |
5 |
continue |
5 |
continue |
6 |
|
6 |
|
Lines 21-27
Link Here
|
21 |
break |
21 |
break |
22 |
if not suitable_found: |
22 |
if not suitable_found: |
23 |
retcode = self.trouble('ERROR: no suitable InfoExtractor: %s' % url) |
23 |
retcode = self.trouble('ERROR: no suitable InfoExtractor: %s' % url) |
24 |
@@ -859,6 +873,8 @@ |
24 |
@@ -964,6 +978,8 @@ |
25 |
action='store_true', dest='useliteral', help='use literal title in file name', default=False) |
25 |
action='store_true', dest='useliteral', help='use literal title in file name', default=False) |
26 |
parser.add_option('-n', '--netrc', |
26 |
parser.add_option('-n', '--netrc', |
27 |
action='store_true', dest='usenetrc', help='use .netrc authentication data', default=False) |
27 |
action='store_true', dest='usenetrc', help='use .netrc authentication data', default=False) |
Lines 30-40
Link Here
|
30 |
parser.add_option('-g', '--get-url', |
30 |
parser.add_option('-g', '--get-url', |
31 |
action='store_true', dest='geturl', help='simulate, quiet but print URL', default=False) |
31 |
action='store_true', dest='geturl', help='simulate, quiet but print URL', default=False) |
32 |
parser.add_option('-e', '--get-title', |
32 |
parser.add_option('-e', '--get-title', |
33 |
@@ -915,6 +931,7 @@ |
33 |
@@ -1037,6 +1053,7 @@ |
34 |
or u'%(id)s.%(ext)s'), |
34 |
or u'%(id)s.%(ext)s'), |
35 |
'ignoreerrors': opts.ignoreerrors, |
35 |
'ignoreerrors': opts.ignoreerrors, |
36 |
'ratelimit': opts.ratelimit, |
36 |
'ratelimit': opts.ratelimit, |
37 |
+ 'useavi': opts.useavi, |
37 |
+ 'useavi': opts.useavi, |
|
|
38 |
'nooverwrites': opts.nooverwrites, |
38 |
}) |
39 |
}) |
39 |
fd.add_info_extractor(youtube_pl_ie) |
40 |
fd.add_info_extractor(youtube_search_ie) |
40 |
fd.add_info_extractor(metacafe_ie) |
|
|