23515 Commits

Author SHA1 Message Date
Yen Chi Hsuan
b64d04c119
[utils] Clarify for redirecting STDIN in get_exe_version() 2016-10-22 13:04:05 +08:00
John Hawkinson
00ca755231 [get_exe_version] Do version probes with <&-
When doing version probes for ffmpeg, do the
equivalent of calling it as:

    ffmpeg -version <&-

Where <&- is shell syntax for closing stdin before calling the
program. This is roughly equivalent to </dev/null without actually
opening /dev/null.

This prevents ffmpeg -version from hanging when run in the background.
Fixes #955.

The reason is that ffmpeg tries to manipulate stdin to set up terminal
characteristic, and that causes the kernel to suspend the parent
process (youtube-dl).

Note that closing stdin is achieved by calling subprocess.Popen() with
stdin set to subprocess.PIPE and without passing any input to
Popen.communicate(). This is somewhat subtle.
2016-10-22 00:34:08 -04:00
Zhong Jianxin
83526e773a [pandatv] Add new extractor 2016-10-21 11:25:09 +08:00
Sergey M․
69c2d42bd7
release 2016.10.21.1 2016.10.21.1 2016-10-21 04:57:28 +07:00
Sergey M․
062e2769a3
[ChangeLog] Actualize 2016-10-21 04:53:26 +07:00
Sergey M․
859447a28d
[adobepass] PEP 8 2016-10-21 04:38:14 +07:00
Sergey M․
f8ae2c7f30
[pluralsight] Process all clip URLs (closes #10984) 2016-10-21 04:35:32 +07:00
Sergey M․
9ce0077485
release 2016.10.21 2016.10.21 2016-10-21 03:08:42 +07:00
Sergey M․
0ebb86bd18
[ChangeLog] Actualize 2016-10-21 03:07:03 +07:00
Sergey M․
9df6b03caf
[pluralsight] Adapt to new API (closes #10972) 2016-10-21 03:00:03 +07:00
Yen Chi Hsuan
8e2915d70b
Revert "[postprocessor/embedthumbnail] Allow mkv to embed thumbnails"
This reverts commit 7360db05b43741c2dfa1fd024e9c2f013ed97c9e.

This commit was added as an attempt to fix #6046. Unfortunately, the fix
is completely wrong. As reported on #10359, embedded thumbnails are not
displayed in VLC, and Se7en on IRC reports that the embedded thumbnail
misleads mpv as well.

The correct way is using -attachment of ffmpeg, while the current
run_ffmpeg_multiple_files API can't handle it cleanly.
2016-10-20 15:07:19 +08:00
Yen Chi Hsuan
19e447150d
[ChangeLog] Update for #10971 2016-10-20 04:19:33 +08:00
Yen Chi Hsuan
ad9fd84004 Merge pull request #10971 from kasper93/openload
[openload] Fix extraction.
2016-10-20 04:18:27 +08:00
Kacper Michajłow
60633ae9a0 [openload] Fix extraction.
Fixes #10408
2016-10-19 22:00:29 +02:00
Remita Amine
a81dc82151 Credit @raleeper for the Comcast support (#10819) 2016-10-19 20:39:52 +01:00
remitamine
9218a6b4f5 Merge pull request #10819 from raleeper/adobepass
[adobepass] Add Comcast
2016-10-19 20:16:24 +01:00
Remita Amine
02af6ec707 [natgeo] extract m3u8 formats(closes #10959) 2016-10-19 19:39:41 +01:00
Sergey M․
05b7996cab
[ChangeLog] Fix typos and add unreleased version header 2016-10-20 00:00:53 +07:00
raleeper
46f6052950 [adobepass] Add Comcast with fixed _download_webpage calls 2016-10-19 09:56:26 -07:00
Sergey M․
c8802041dd
release 2016.10.19 2016.10.19 2016-10-19 23:55:16 +07:00
Sergey M․
c7911009a0
[ChangeLog] Actualize 2016-10-19 23:53:37 +07:00
Sergey M․
2b96b06bf0
[vidzi] Fix extraction (closes #10908, closes #10952) 2016-10-19 23:31:58 +07:00
Sergey M․
06b3fe2926
[utils] Expose PACKED_CODES_RE 2016-10-19 23:28:49 +07:00
Jack Danger Canty
2c6743bf0f [README.md] Change 'guys' to 'people'
Folks at Ubuntu aren't all male so calling them 'guys' is a little odd.
2016-10-19 22:32:17 +07:00
Remita Amine
efb6242916 [urplay] add supprt for urskola.se and fix subtitle extraction(closes #10915) 2016-10-19 15:05:39 +01:00
Remita Amine
0384932e3d [extractor/common] try to extract non smil wowza mpd manifests 2016-10-19 14:57:12 +01:00
Remita Amine
edd6074cea [extractor/common] detect f4m audio only formats 2016-10-19 14:42:48 +01:00
Remita Amine
791d29dbf8 [orf] add subtitles support(closes #10939) 2016-10-19 11:34:46 +01:00
Sergey M․
481cc7335c
[youtube] Fix --no-playlist behavior for youtu.be/id URLs (closes #10896) 2016-10-19 03:27:18 +07:00
Sergey M․
853a71b628
[nrk] Improve _VALID_URL 2016-10-19 03:02:14 +07:00
Sergey M․
e2628fb6a0
[nrk] Relax _VALID_URL (closes #10928) 2016-10-19 02:59:44 +07:00
Thor77
a57de1577e Add mp31, ogg and flac-format 2016-10-18 13:11:17 +02:00
plexigras
ee23f7a236 fixed vidzi extractor 2016-10-18 07:20:50 +02:00
John Hawkinson
3cd6469e36 [iqm2] Improve jwplayer_data regexp
Surprise! URLs can have parentheses in them, just like like @dstftw
reminded us in
001a30f335 (r83538385)

Use . instead of [^)] and anchor the regexp with \)\); at the end.
Add an only_matching test case for this, although it may switch from
realtime to processed in a few hours...
2016-10-18 00:00:11 -04:00
jbuzzard
e2b9418793 Synchronized with upsteam repository (reverted from commit 67d2737c23e23949908c2c9a3f2434f123a02b1f) (reverted from commit de576b88bc9cde2948a9225cd3b54c7fdf241d24) 2016-10-17 16:34:40 -07:00
jbuzzard
73db397974 Synchronized with upsteam repository (reverted from commit 67d2737c23e23949908c2c9a3f2434f123a02b1f) 2016-10-17 16:34:29 -07:00
jbuzzard
20f653773d Synchronized with upsteam repository (reverted from commit 67d2737c23e23949908c2c9a3f2434f123a02b1f) (reverted from commit de576b88bc9cde2948a9225cd3b54c7fdf241d24) 2016-10-17 16:31:20 -07:00
jbuzzard
de576b88bc Synchronized with upsteam repository (reverted from commit 67d2737c23e23949908c2c9a3f2434f123a02b1f) 2016-10-17 16:30:00 -07:00
Jack Danger Canty
5e594c6a2a Changing 'guys' to 'people'
Folks at Ubuntu aren't all male so calling them 'guys' is a little odd.
2016-10-17 12:57:36 -07:00
Pierre Mdawar
5cdff4dc2a [utils] added explicit string formatting indexes to support Python 2.6 2016-10-17 19:18:29 +03:00
Sergey M․
df4939b1cd
[nytimes] Fix typo 2016-10-17 22:16:23 +07:00
Pierre Mdawar
9bf04c92d3 [utils] initialize exceptions properly by calling the superclass __init__ 2016-10-17 14:48:47 +03:00
Pierre Mdawar
60073843ba [utils] added YoutubeDLError superclass for all the exceptions 2016-10-17 14:38:37 +03:00
Hei Liebrecht
5d4ff49162 MIME type 2016-10-16 20:16:22 -04:00
Bruuuuno
e30c81050f Fixing issues 2016-10-16 23:11:30 +01:00
Bruuuuno
f7e0a94997 Added Contributions 2016-10-16 23:10:56 +01:00
Vitor Esteves
47f5b5ddf6 Update ENTREGA1.md
minor text fixes
2016-10-16 22:41:56 +01:00
yolonhese
a273cbe368 Update ENTREGA1.md 2016-10-16 22:35:51 +01:00
João Manuel Guedes Ferreira
a896f0bf54 Update ENTREGA1.md 2016-10-16 22:35:31 +01:00
yolonhese
30ee766629 caps lock on the "dl"'s 2016-10-16 22:33:58 +01:00