diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | youtube_dl/version.py | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -288,6 +288,10 @@ which means you can modify it, redistribute it or use it however you like. postprocessors (default) --prefer-ffmpeg Prefer ffmpeg over avconv for running the postprocessors + --exec CMD Execute a command on the file after + downloading, similar to find's -exec + syntax. Example: --exec 'adb push {} + /sdcard/Music/ && rm {}' # CONFIGURATION diff --git a/youtube_dl/version.py b/youtube_dl/version.py index 68205af0f..192f3effc 100644 --- a/youtube_dl/version.py +++ b/youtube_dl/version.py @@ -1,2 +1,2 @@ -__version__ = '2014.08.25' +__version__ = '2014.08.25.1' |