Clarify that automatic subtitles are generated.
authorRastislav Barlik <barlik@zoho.com>
Mon, 16 Nov 2015 14:15:25 +0000 (14:15 +0000)
committerRastislav Barlik <barlik@zoho.com>
Mon, 16 Nov 2015 14:15:25 +0000 (14:15 +0000)
It wasn't clear what automatic word mean.

README.md
youtube_dl/YoutubeDL.py
youtube_dl/options.py

index 38db97c5980e8a3ff186e6e6d8d80fd801eb4e51..b286651cd712933fd4538b88499d9325b25d88e7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -329,8 +329,8 @@ which means you can modify it, redistribute it or use it however you like.
 
 ## Subtitle Options:
     --write-sub                      Write subtitle file
-    --write-auto-sub                 Write automatic subtitle file (YouTube
-                                     only)
+    --write-auto-sub                 Write automatically generated subtitle file
+                                     (YouTube only)
     --all-subs                       Download all the available subtitles of the
                                      video
     --list-subs                      List all available subtitles for the video
index 1783ce01bf683ab0cfa349a1b040362f88cc1a47..422f3ffca3ac583366fd6546ca950b967d1a5954 100755 (executable)
@@ -156,7 +156,7 @@ class YoutubeDL(object):
     writethumbnail:    Write the thumbnail image to a file
     write_all_thumbnails:  Write all thumbnail formats to files
     writesubtitles:    Write the video subtitles to a file
-    writeautomaticsub: Write the automatic subtitles to a file
+    writeautomaticsub: Write the automatically generated subtitles to a file
     allsubtitles:      Downloads all the subtitles of the video
                        (requires writesubtitles or writeautomaticsub)
     listsubtitles:     Lists all available subtitles for the video
index 3dd6d290b830615326c872aaa044156e350fb295..079fe7e8a35af5eedf6eb4f3c450deeada96d5bc 100644 (file)
@@ -363,7 +363,7 @@ def parseOpts(overrideArguments=None):
     subtitles.add_option(
         '--write-auto-sub', '--write-automatic-sub',
         action='store_true', dest='writeautomaticsub', default=False,
-        help='Write automatic subtitle file (YouTube only)')
+        help='Write automatically generated subtitle file (YouTube only)')
     subtitles.add_option(
         '--all-subs',
         action='store_true', dest='allsubtitles', default=False,