-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
youtube-download.lua
1373 lines (1221 loc) · 50.4 KB
/
youtube-download.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- youtube-download.lua
--
-- Download video/audio from youtube via youtube-dl and ffmpeg/avconv
-- This is forked/based on https://github.com/jgreco/mpv-youtube-quality
--
-- Video download bound to ctrl-d by default.
-- Audio download bound to ctrl-a by default.
-- Requires youtube-dl in PATH for video download
-- Requires ffmpeg or avconv in PATH for audio download
local mp = require 'mp'
local utils = require 'mp.utils'
local msg = require 'mp.msg'
local opts = {
-- Key bindings
-- Set to empty string "" to disable
download_video_binding = "ctrl+d",
download_audio_binding = "ctrl+a",
download_subtitle_binding = "ctrl+s",
download_video_embed_subtitle_binding = "ctrl+i",
select_range_binding = "ctrl+r",
download_mpv_playlist = "",
-- Specify audio format: "best", "aac","flac", "mp3", "m4a", "opus", "vorbis", or "wav"
audio_format = "mp3",
-- Specify ffmpeg/avconv audio quality
-- insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K
audio_quality = "0",
-- Embed the thumbnail on audio files
embed_thumbnail = false,
-- Add metadata to audio files
audio_add_metadata = false,
-- Add metadata to video files
video_add_metadata = false,
-- Same as youtube-dl --format FORMAT
-- see https://github.com/ytdl-org/youtube-dl/blob/master/README.md#format-selection
-- set to "current" to download the same quality that is currently playing
video_format = "",
-- Remux the video into another container if necessary: "avi", "flv",
-- "gif", "mkv", "mov", "mp4", "webm", "aac", "aiff", "alac", "flac",
-- "m4a", "mka", "mp3", "ogg", "opus", "vorbis", "wav"
remux_video = "",
-- Encode the video to another format if necessary: "mp4", "flv", "ogg", "webm", "mkv", "avi"
recode_video = "",
-- Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames
restrict_filenames = true,
-- Download the whole Youtube playlist (false) or only one video (true)
-- Same as youtube-dl --no-playlist
no_playlist = true,
-- Download the whole mpv playlist (true) or only the current video (false)
-- This is the default setting, it can be overwritten with the download_mpv_playlist key binding
mpv_playlist = false,
-- Use an archive file, see youtube-dl --download-archive
-- You have these options:
-- * Set to empty string "" to not use an archive file
-- * Set an absolute path to use one archive for all downloads e.g. download_archive="/home/user/archive.txt"
-- * Set a relative path/only a filename to use one archive per directory e.g. download_archive="archive.txt"
-- * Use $PLAYLIST to create one archive per playlist e.g. download_archive="/home/user/archives/$PLAYLIST.txt"
download_archive = "",
-- Use a cookies file for youtube-dl
-- Same as youtube-dl --cookies
-- On Windows you need to use a double blackslash or a single fordwardslash
-- For example "C:\\Users\\Username\\cookies.txt"
-- Or "C:/Users/Username/cookies.txt"
cookies = "",
-- Set '/:dir%mpvconf%' to use mpv config directory to download
-- OR change to '/:dir%script%' for placing it in the same directory of script
-- OR change to '~~/ytdl/download' for sub-path of mpv portable_config directory
-- OR write any variable using '/:var', such as: '/:var%APPDATA%/mpv/ytdl/download' or '/:var%HOME%/mpv/ytdl/download'
-- OR specify the absolute path, such as: "C:\\Users\\UserName\\Downloads"
-- OR leave empty "" to use the current working directory
download_path = "/:dir%mpvconf%/ytdl/download",
-- Filename format to download file
-- see https://github.com/ytdl-org/youtube-dl/blob/master/README.md#output-template
-- For example: "%(title)s.%(ext)s"
filename = "%(title)s.%(ext)s",
-- Subtitle language
-- Same as youtube-dl --sub-lang en
sub_lang = "en",
-- Subtitle format
-- Same as youtube-dl --sub-format best
sub_format = "best",
-- Download auto-generated subtitles
-- Same as youtube-dl --write-auto-subs / --no-write-auto-subs
sub_auto_generated = false,
-- Log file for download errors
log_file = "",
-- Executable of youtube-dl to use, e.g. "youtube-dl", "yt-dlp" or
-- path to the executable file
-- Set to "" to auto-detect the executable
youtube_dl_exe = "yt-dlp",
-- Use a config file, see youtube-dl --config-location, instead of
-- the usual options for this keyboard shortcut. This way you can
-- overwrite the predefined behaviour of the keyboard shortcut and
-- all of the above options with a custom download behaviour defined
-- in each config file.
-- Set to "" to retain the predefined behaviour
download_video_config_file = "",
download_audio_config_file = "",
download_subtitle_config_file = "",
download_video_embed_subtitle_config_file= "",
-- Open a new terminal window/tab for download
-- This allows you to monitor the download progress
-- If mpv_playlist is true and the whole mpv playlist should be
-- downloaded, then all the downloads are scheduled immediately.
-- Before each download is started, the script waits the given
-- timeout in seconds
open_new_terminal = false,
open_new_terminal_timeout = 3,
-- Set the command that opens a new terminal (JSON array)
-- Use "$cwd" as a placeholder for the working directory
-- Use "$cmd" as a placeholder for the download command
-- See .conf file for Windows and xfce examples.
open_new_terminal_command = [[
["wt", "-w", "ytdlp", "new-tab", "-d", "$cwd", "cmd", "/K", "$cmd"]
]],
-- Used to localize uosc-submenu content
-- Must use json format, example for Chinese: [{"Download": "下载","Audio": "音频"}]
locale_content = [[
[]
]],
}
local function table_size(t)
local s = 0
for _, _ in pairs(t) do
s = s + 1
end
return s
end
local function exec(args, capture_stdout, capture_stderr)
local ret = mp.command_native({
name = "subprocess",
playback_only = false,
capture_stdout = capture_stdout,
capture_stderr = capture_stderr,
args = args,
})
return ret.status, ret.stdout, ret.stderr, ret
end
local function exec_async(args, capture_stdout, capture_stderr, detach, callback)
return mp.command_native_async({
name = "subprocess",
playback_only = false,
capture_stdout = capture_stdout,
capture_stderr = capture_stderr,
args = args,
detach = detach,
}, callback)
end
local function trim(str)
return str:gsub("^%s+", ""):gsub("%s+$", "")
end
local function not_empty(str)
if str == nil or str == "" then
return false
end
return trim(str) ~= ""
end
local function path_separator()
return package.config:sub(1,1)
end
local function path_join(...)
return table.concat({...}, path_separator())
end
local function get_current_format()
-- get the current youtube-dl format or the default value
local ytdl_format = mp.get_property("options/ytdl-format")
if not_empty(ytdl_format) then
return ytdl_format
end
ytdl_format = mp.get_property("ytdl-format")
if not_empty(ytdl_format) then
return ytdl_format
end
return "bestvideo+bestaudio/best"
end
--Read configuration file
(require 'mp.options').read_options(opts, "youtube-download")
--Read text string
local locale_content = utils.parse_json(opts.locale_content)
local open_new_terminal_command = utils.parse_json(opts.open_new_terminal_command)
local is_windows = package.config:sub(1, 1) == "\\"
local function locale(str)
if str and locale_content then
for k, v in ipairs(locale_content) do
return v[str] or str
end
end
return str
end
--Read command line arguments
local ytdl_raw_options = mp.get_property("ytdl-raw-options")
if ytdl_raw_options ~= nil and ytdl_raw_options:find("cookies=") ~= nil then
local cookie_file = ytdl_raw_options:match("cookies=([^,]+)")
if cookie_file ~= nil then
opts.cookies = cookie_file
end
end
--Try to detect youtube-dl/yt-dlp executable
local executables = {"yt-dlp", "youtube-dl", "yt-dlp_x86", "yt-dlp_macos", "yt-dlp_min", "yt-dlc"}
local function detect_executable()
local function detect_executable_callback(success, ret, _)
if not success or ret.status ~= 0 then
detect_executable()
else
msg.debug("Found working executable " .. opts.youtube_dl_exe)
end
end
opts.youtube_dl_exe = table.remove(executables, 1)
if opts.youtube_dl_exe ~= nil then
msg.debug("Trying executable '" .. opts.youtube_dl_exe .. "' ...")
exec_async({opts.youtube_dl_exe, "--version"}, false, false, false, detect_executable_callback)
else
msg.error("No working executable found, using fallback 'youtube-dl'")
opts.youtube_dl_exe = "youtube-dl"
end
end
if not not_empty(opts.youtube_dl_exe) then
msg.debug("Trying to detect executable...")
detect_executable()
end
if opts.download_path:match('^/:dir%%mpvconf%%') then
opts.download_path = opts.download_path:gsub('/:dir%%mpvconf%%', mp.find_config_file('.'))
elseif opts.download_path:match('^/:dir%%script%%') then
opts.download_path = opts.download_path:gsub('/:dir%%script%%', mp.find_config_file('scripts'))
elseif opts.download_path:match('^/:var%%(.*)%%') then
local os_variable = opts.download_path:match('/:var%%(.*)%%')
opts.download_path = opts.download_path:gsub('/:var%%(.*)%%', os.getenv(os_variable))
elseif opts.download_path:match('^~') then
opts.download_path = mp.command_native({ "expand-path", opts.download_path }) -- Expands both ~ and ~~
end
--create opts.download_path if it doesn't exist
if not_empty(opts.download_path) and utils.readdir(opts.download_path) == nil then
local windows_args = { 'powershell', '-NoProfile', '-Command', 'mkdir', string.format("\"%s\"", opts.download_path) }
local unix_args = { 'mkdir', '-p', opts.download_path }
local args = is_windows and windows_args or unix_args
local res = mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = args})
if res.status ~= 0 then
msg.error("Failed to create youtube-download save directory "..opts.download_path..". Error: "..(res.error or "unknown"))
return
end
end
local DOWNLOAD = {
VIDEO=1,
AUDIO=2,
SUBTITLE=3,
VIDEO_EMBED_SUBTITLE=4,
CONFIG_FILE=5
}
local select_range_mode = 0
local start_time_seconds = nil
local start_time_formated = nil
local end_time_seconds = nil
local end_time_formated = nil
local switches = {
mpv_playlist_toggle = opts.mpv_playlist,
}
local mpv_playlist_status = nil
local is_downloading = false
local process_id = nil
local should_cancel = false
local was_cancelled = false
local script_name = mp.get_script_name()
local function disable_select_range()
-- Disable range mode
select_range_mode = 0
-- Remove the arrow key key bindings
mp.remove_key_binding("select-range-set-up")
mp.remove_key_binding("select-range-set-down")
mp.remove_key_binding("select-range-set-left")
mp.remove_key_binding("select-range-set-right")
end
local function download(download_type, config_file, overwrite_opts)
if switches.mpv_playlist_toggle and mpv_playlist_status == nil then
-- Start downloading the whole mpv playlist
local playlist_length = mp.get_property_number('playlist-count', 0)
if playlist_length == 0 then
mpv_playlist_status = nil
mp.osd_message("Download failed: mpv playlist is empty", 5)
return
end
-- Store current playlist
mpv_playlist_status = {}
local i = 0
while i < playlist_length do
local url = mp.get_property('playlist/'..i..'/filename')
if url ~= nil and (url:find("ytdl://") == 1 or url:find("https?://") == 1) then
mpv_playlist_status[url] = false
end
i = i + 1
end
end
local video_format = opts.video_format
if overwrite_opts ~= nil then
if overwrite_opts.video_format ~= nil then
video_format = overwrite_opts.video_format
end
end
local start_time = os.date("%c")
if is_downloading then
if process_id ~= nil and should_cancel then
-- cancel here
mp.osd_message("Canceling download ...", 3)
was_cancelled = true
mp.abort_async_command(process_id)
should_cancel = false
elseif process_id ~= nil then
should_cancel = true
mp.osd_message("Download in progress. Press again to cancel download", 5)
end
return
end
is_downloading = true
should_cancel = false
was_cancelled = false
local ass0 = mp.get_property("osd-ass-cc/0")
local ass1 = mp.get_property("osd-ass-cc/1")
local mpv_playlist_i = 0
local mpv_playlist_n = 0
local url = nil
if mpv_playlist_status ~= nil then
for key, value in pairs(mpv_playlist_status) do
if not value then
if url == nil then
url = key
end
else
mpv_playlist_i = mpv_playlist_i + 1
end
mpv_playlist_n = mpv_playlist_n + 1
end
if url == nil then
local n = table_size(mpv_playlist_status)
mpv_playlist_status = nil
mp.osd_message("Finished downloading mpv playlist (".. tostring(n) .. " entries)", 5)
return
end
else
url = mp.get_property("path")
end
if url:find("ytdl://") ~= 1 and url:find("https?://") ~= 1
then
mp.osd_message("Not a youtube URL: " .. tostring(url), 10)
is_downloading = false
return
end
url = string.gsub(url, "ytdl://", "") -- Strip possible ytdl:// prefix.
local list_match = url:match("list=(%w+)")
local download_archive = opts.download_archive
if list_match ~= nil and opts.download_archive ~= nil and opts.download_archive:find("$PLAYLIST", 1, true) then
download_archive = opts.download_archive:gsub("$PLAYLIST", list_match)
end
if download_type == DOWNLOAD.CONFIG_FILE then
mp.osd_message("Download started\n" .. ass0 .. "{\\fs8}--config-location:\n'" .. config_file .. "'" .. ass1, 2)
elseif download_type == DOWNLOAD.AUDIO then
mp.osd_message("Audio download started", 2)
elseif download_type == DOWNLOAD.SUBTITLE then
mp.osd_message("Subtitle download started", 2)
elseif download_type == DOWNLOAD.VIDEO_EMBED_SUBTITLE then
mp.osd_message("Video w/ subtitle download started", 2)
else
mp.osd_message("Video download started", 2)
end
local filepath = opts.filename
if not_empty(opts.download_path) then
filepath = opts.download_path .. "/" .. filepath
end
-- Compose command line arguments
local command = {}
local range_mode_file_name = nil
local range_mode_subtitle_file_name = nil
local start_time_offset = 0
if download_type == DOWNLOAD.CONFIG_FILE then
table.insert(command, opts.youtube_dl_exe)
table.insert(command, "--config-location")
table.insert(command, config_file)
table.insert(command, url)
elseif select_range_mode == 0 or (select_range_mode > 0 and (download_type == DOWNLOAD.AUDIO or download_type == DOWNLOAD.SUBTITLE)) then
table.insert(command, opts.youtube_dl_exe)
table.insert(command, "--no-overwrites")
if opts.restrict_filenames then
table.insert(command, "--restrict-filenames")
end
if not_empty(filepath) then
table.insert(command, "-o")
table.insert(command, filepath)
end
if opts.no_playlist then
table.insert(command, "--no-playlist")
end
if not_empty(download_archive) then
table.insert(command, "--download-archive")
table.insert(command, download_archive)
end
if download_type == DOWNLOAD.SUBTITLE then
table.insert(command, "--sub-lang")
table.insert(command, opts.sub_lang)
table.insert(command, "--write-sub")
table.insert(command, "--skip-download")
if not_empty(opts.sub_format) then
table.insert(command, "--sub-format")
table.insert(command, opts.sub_format)
end
if opts.sub_auto_generated then
table.insert(command, "--write-auto-subs")
else
table.insert(command, "--no-write-auto-subs")
end
if select_range_mode > 0 then
mp.osd_message("Range mode is not available for subtitle-only download", 10)
is_downloading = false
return
end
elseif download_type == DOWNLOAD.AUDIO then
table.insert(command, "--extract-audio")
if not_empty(opts.audio_format) then
table.insert(command, "--audio-format")
table.insert(command, opts.audio_format)
end
if not_empty(opts.audio_quality) then
table.insert(command, "--audio-quality")
table.insert(command, opts.audio_quality)
end
if opts.embed_thumbnail then
table.insert(command, "--embed-thumbnail")
end
if opts.audio_add_metadata then
table.insert(command, "--add-metadata")
end
if select_range_mode > 0 then
local start_time_str = tostring(start_time_seconds)
local end_time_str = tostring(end_time_seconds)
table.insert(command, "--external-downloader")
table.insert(command, "ffmpeg")
table.insert(command, "--external-downloader-args")
table.insert(command, "-loglevel warning -nostats -hide_banner -ss ".. start_time_str .. " -to " .. end_time_str .. " -avoid_negative_ts make_zero")
end
else --DOWNLOAD.VIDEO or DOWNLOAD.VIDEO_EMBED_SUBTITLE
if download_type == DOWNLOAD.VIDEO_EMBED_SUBTITLE then
table.insert(command, "--embed-subs")
table.insert(command, "--sub-lang")
table.insert(command, opts.sub_lang)
if not_empty(opts.sub_format) then
table.insert(command, "--sub-format")
table.insert(command, opts.sub_format)
end
if opts.sub_auto_generated then
table.insert(command, "--write-auto-subs")
else
table.insert(command, "--no-write-auto-subs")
end
end
if not_empty(video_format) then
table.insert(command, "--format")
if video_format == "current" then
table.insert(command, get_current_format())
else
table.insert(command, video_format)
end
end
if not_empty(opts.remux_video) then
table.insert(command, "--remux-video")
table.insert(command, opts.remux_video)
end
if not_empty(opts.recode_video) then
table.insert(command, "--recode-video")
table.insert(command, opts.recode_video)
end
if opts.video_add_metadata then
table.insert(command, "--add-metadata")
end
end
if not_empty(opts.cookies) then
table.insert(command, "--cookies")
table.insert(command, opts.cookies)
end
table.insert(command, url)
elseif select_range_mode > 0 and
(download_type == DOWNLOAD.VIDEO or download_type == DOWNLOAD.VIDEO_EMBED_SUBTITLE) then
-- Show download indicator
mp.set_osd_ass(0, 0, "{\\an9}{\\fs12}⌛🔗")
start_time_seconds = math.floor(start_time_seconds)
end_time_seconds = math.ceil(end_time_seconds)
local start_time_str = tostring(start_time_seconds)
local end_time_str = tostring(end_time_seconds)
-- Add time to the file name of the video
local filename_format
-- Insert start time/end time
if not_empty(filepath) then
if filepath:find("%%%(start_time%)") ~= nil then
-- Found "start_time" -> replace it
filename_format = tostring(filepath:
gsub("%%%(start_time%)[^diouxXeEfFgGcrs]*[diouxXeEfFgGcrs]", start_time_str):
gsub("%%%(end_time%)[^diouxXeEfFgGcrs]*[diouxXeEfFgGcrs]", end_time_str))
else
local ext_pattern = "%(ext)s"
if filepath:sub(-#ext_pattern) == ext_pattern then
-- Insert before ext
filename_format = filepath:sub(1, #(filepath) - #ext_pattern) ..
start_time_str .. "-" ..
end_time_str .. ".%(ext)s"
else
-- append at end
filename_format = filepath .. start_time_str .. "-" .. end_time_str
end
end
else
-- default youtube-dl filename pattern
filename_format = "%(title)s-%(id)s." .. start_time_str .. "-" .. end_time_str .. ".%(ext)s"
end
-- Find a suitable format
local format = "bestvideo[ext*=mp4]+bestaudio/best[ext*=mp4]/best"
local requested_format = video_format
if requested_format == "current" then
requested_format = get_current_format()
end
if requested_format == nil or requested_format == "" then
format = format
elseif requested_format == "best" then
-- "best" works, because its a single file stream
format = "best"
elseif requested_format:find("mp4") ~= nil then
-- probably a mp4 format, so use it
format = requested_format
else
-- custom format, no "mp4" found -> use default
msg.warn("Select range mode requires a .mp4 format or \"best\", found " ..
requested_format .. "\n(" .. video_format .. ")" ..
"\nUsing default format instead: " .. format)
end
-- Get the download url of the video file
-- e.g.: youtube-dl -g -f bestvideo[ext*=mp4]+bestaudio/best[ext*=mp4]/best -s --get-filename https://www.youtube.com/watch?v=abcdefg
command = {opts.youtube_dl_exe}
if opts.restrict_filenames then
table.insert(command, "--restrict-filenames")
end
if not_empty(opts.cookies) then
table.insert(command, "--cookies")
table.insert(command, opts.cookies)
end
table.insert(command, "-g")
table.insert(command, "--no-playlist")
table.insert(command, "-f")
table.insert(command, format)
table.insert(command, "-o")
table.insert(command, filename_format)
table.insert(command, "-s")
table.insert(command, "--get-filename")
table.insert(command, url)
msg.debug("info exec: " .. table.concat(command, " "))
local info_status, info_stdout, info_stderr = exec(command, true, true)
if info_status ~= 0 then
mp.set_osd_ass(0, 0, "")
mp.osd_message("Could not retieve download stream url: status=" .. tostring(info_status) .. "\n" ..
ass0 .. "{\\fs8} " .. info_stdout:gsub("\r", "") .."\n" .. info_stderr:gsub("\r", "") .. ass1, 20)
msg.debug("info_stdout:\n" .. info_stdout)
msg.debug("info_stderr:\n" .. info_stderr)
mp.set_osd_ass(0, 0, "")
is_downloading = false
return
end
-- Split result into lines
local info_lines = {}
local last_index = 0
local info_lines_N = 0
while true do
local start_i, end_i = info_stdout:find("\n", last_index, true)
if start_i then
local line = tostring(trim(info_stdout:sub(last_index, start_i)))
if line ~= "" then
table.insert(info_lines, line)
info_lines_N = info_lines_N + 1
end
else
break
end
last_index = end_i + 1
end
if info_lines_N < 2 then
mp.set_osd_ass(0, 0, "")
mp.osd_message("Could not extract download stream urls and filename from output\n" ..
ass0 .. "{\\fs8} " .. info_stdout:gsub("\r", "") .."\n" .. info_stderr:gsub("\r", "") .. ass1, 20)
msg.debug("info_stdout:\n" .. info_stdout)
msg.debug("info_stderr:\n" .. info_stderr)
mp.set_osd_ass(0, 0, "")
is_downloading = false
return
end
range_mode_file_name = info_lines[info_lines_N]
table.remove(info_lines)
if download_type == DOWNLOAD.VIDEO_EMBED_SUBTITLE then
-- youtube-dl --write-sub --skip-download https://www.youtube.com/watch?v=abcdefg -o "temp.%(ext)s"
command = {opts.youtube_dl_exe, "--write-sub", "--skip-download", "--sub-lang", opts.sub_lang}
if not_empty(opts.sub_format) then
table.insert(command, "--sub-format")
table.insert(command, opts.sub_format)
end
if opts.sub_auto_generated then
table.insert(command, "--write-auto-subs")
else
table.insert(command, "--no-write-auto-subs")
end
local randomName = "tmp_" .. tostring(math.random())
table.insert(command, "-o")
table.insert(command, randomName .. ".%(ext)s")
table.insert(command, url)
-- Start subtitle download
msg.debug("exec: " .. table.concat(command, " "))
local subtitle_status, subtitle_stdout, subtitle_stderr = exec(command, true, true)
if subtitle_status == 0 and subtitle_stdout:find(randomName) then
local i, j = subtitle_stdout:find(randomName .. "[^\n]+")
range_mode_subtitle_file_name = trim(subtitle_stdout:sub(i, j))
if range_mode_subtitle_file_name ~= "" then
if range_mode_file_name:sub(-4) ~= ".mkv" then
-- Only mkv supports all kinds of subtitle formats
range_mode_file_name = range_mode_file_name:sub(1,-4) .. "mkv"
end
end
else
mp.osd_message("Could not find a suitable subtitle")
msg.debug("subtitle_stdout:\n" .. subtitle_stdout)
msg.debug("subtitle_stderr:\n" .. subtitle_stderr)
end
end
-- Download earlier (cut off afterwards)
start_time_offset = math.min(15, start_time_seconds)
start_time_seconds = start_time_seconds - start_time_offset
start_time_str = tostring(start_time_seconds)
end_time_str = tostring(end_time_seconds)
command = {"ffmpeg", "-loglevel", "warning", "-nostats", "-hide_banner", "-y"}
for _, value in ipairs(info_lines) do
table.insert(command, "-ss")
table.insert(command, start_time_str)
table.insert(command, "-to")
table.insert(command, end_time_str)
table.insert(command, "-i")
table.insert(command, value)
end
if not_empty(range_mode_subtitle_file_name) then
table.insert(command, "-ss")
table.insert(command, start_time_str)
table.insert(command, "-i")
table.insert(command, range_mode_subtitle_file_name)
table.insert(command, "-to") -- To must be after input for subtitle
table.insert(command, end_time_str)
end
table.insert(command, "-c")
table.insert(command, "copy")
table.insert(command, range_mode_file_name)
disable_select_range()
end
-- Show download indicator
if mpv_playlist_n > 0 then
mp.set_osd_ass(0, 0, "{\\an9}{\\fs12}" .. tostring(mpv_playlist_i) .."/" .. tostring(mpv_playlist_n) .. "⌛💾")
else
mp.set_osd_ass(0, 0, "{\\an9}{\\fs12}⌛💾")
end
-- Callback
local function download_ended(success, ret, error)
if mpv_playlist_status ~= nil then
mpv_playlist_status[url] = true
end
local playlist_finished = -1
if mpv_playlist_status ~= nil then
local to_do = false
for _, value in pairs(mpv_playlist_status) do
if not value then
to_do = true
break
end
end
if not to_do then
playlist_finished = table_size(mpv_playlist_status)
mpv_playlist_status = nil
end
end
process_id = nil
if opts.open_new_terminal then
is_downloading = false
-- Hide download indicator
mp.set_osd_ass(0, 0, "")
-- Start next download if downloading whole mpv playlist
if playlist_finished ~= -1 then
mp.osd_message("Started last download of mpv playlist (".. tostring(playlist_finished) .. " entries)", 5)
elseif mpv_playlist_status ~= nil then
-- Wait a short time starting the next download
-- otherwise wt.exe will stop the previous command and not open a new tab
local n = opts.open_new_terminal_timeout
if n == nil or n < 1 then
n = 1
end
exec({"ping", "-n", tostring(n), "localhost"}, false, false)
download(download_type, config_file, overwrite_opts)
end
return
end
local stdout = ret.stdout
local stderr = ret.stderr
local status = ret.status
if status == 0 and range_mode_file_name ~= nil then
mp.set_osd_ass(0, 0, "{\\an9}{\\fs12}⌛🔨")
-- Cut first few seconds to fix errors
local start_time_offset_str = tostring(start_time_offset)
if #start_time_offset_str == 1 then
start_time_offset_str = "0" .. start_time_offset_str
end
local max_length = end_time_seconds - start_time_seconds + start_time_offset + 12
local tmp_file_name = range_mode_file_name .. ".tmp." .. range_mode_file_name:sub(-3)
command = {"ffmpeg", "-loglevel", "warning", "-nostats", "-hide_banner", "-y",
"-i", range_mode_file_name, "-ss", "00:00:" .. start_time_offset_str,
"-c", "copy", "-avoid_negative_ts", "make_zero", "-t", tostring(max_length), tmp_file_name}
msg.debug("mux exec: " .. table.concat(command, " "))
local muxstatus, muxstdout, muxstderr = exec(command, true, true)
if muxstatus ~= 0 and not_empty(muxstderr) then
msg.warn("Remux log:" .. tostring(muxstdout))
msg.warn("Remux errorlog:" .. tostring(muxstderr))
end
if muxstatus == 0 then
os.remove(range_mode_file_name)
os.rename(tmp_file_name, range_mode_file_name)
if not_empty(range_mode_subtitle_file_name) then
os.remove(range_mode_subtitle_file_name)
end
end
end
is_downloading = false
-- Hide download indicator
mp.set_osd_ass(0, 0, "")
local wrote_error_log = false
if stderr ~= nil and not_empty(opts.log_file) and not_empty(stderr) then
-- Write stderr to log file
local title = mp.get_property("media-title")
local file = io.open (opts.log_file , "a+")
file:write("\n[")
file:write(start_time)
file:write("] ")
file:write(url)
file:write("\n[\"")
file:write(title)
file:write("\"]\n")
file:write(stderr)
file:close()
wrote_error_log = true
end
-- Retrieve the file name
local filename = nil
if range_mode_file_name == nil and stdout then
local i, j, last_i, start_index = 0
while i ~= nil do
last_i, start_index = i, j
i, j = stdout:find ("Destination: ",j, true)
end
if last_i ~= nil then
local end_index = stdout:find ("\n", start_index, true)
if end_index ~= nil and start_index ~= nil then
filename = trim(stdout:sub(start_index, end_index))
end
end
elseif not_empty(range_mode_file_name) then
filename = range_mode_file_name
end
if (status ~= 0) then
if was_cancelled then
mp.osd_message("Download cancelled!", 2)
if filename ~= nil then
os.remove(filename .. '.part')
end
elseif download_type == DOWNLOAD.CONFIG_FILE and stderr:find("config") ~= nil then
local start_index = stderr:find("config")
local end_index = stderr:find ("\n", start_index, true)
local osd_text = ass0 .. "{\\fs12} " .. stderr:sub(start_index - 7, end_index) .. ass1
mp.osd_message("Config file problem:\n" .. osd_text, 10)
else
mp.osd_message("download failed:\n" .. tostring(stderr), 10)
end
msg.error("URL: " .. tostring(url))
msg.error("Return status code: " .. tostring(status))
msg.debug(tostring(stdout))
msg.warn(tostring(stderr))
return
end
if string.find(stdout, "has already been recorded in archive") ~=nil then
mp.osd_message("Has already been recorded in archive", 5)
return
end
local osd_text = "Download succeeded\n"
local osd_time = 5
-- Find filename or directory
if filename then
local filepath_display
local basepath
if filename:find("/") == nil and filename:find("\\") == nil then
basepath = utils.getcwd()
filepath_display = path_join(utils.getcwd(), filename)
else
basepath = ""
filepath_display = filename
end
if filepath_display:len() < 100 then
osd_text = osd_text .. ass0 .. "{\\fs12} " .. filepath_display .. " {\\fs20}" .. ass1
elseif basepath == "" then
osd_text = osd_text .. ass0 .. "{\\fs8} " .. filepath_display .. " {\\fs20}" .. ass1
else
osd_text = osd_text .. ass0 .. "{\\fs11} " .. basepath .. "\n" .. filename .. " {\\fs20}" .. ass1
end
if wrote_error_log then
-- Write filename and end time to log file
local file = io.open (opts.log_file , "a+")
file:write("[" .. filepath_display .. "]\n")
file:write(os.date("[end %c]\n"))
file:close()
end
else
if wrote_error_log then
-- Write directory and end time to log file
local file = io.open (opts.log_file , "a+")
file:write("[" .. utils.getcwd() .. "]\n")
file:write(os.date("[end %c]\n"))
file:close()
end
osd_text = osd_text .. utils.getcwd()
end
-- Show warnings
if not_empty(stderr) then
msg.warn("Errorlog:" .. tostring(stderr))
if stderr:find("incompatible for merge") == nil then
local i = stderr:find("Input #")
if i ~= nil then
stderr = stderr:sub(i)
end
osd_text = osd_text .. "\n" .. ass0 .. "{\\fs8} " .. stderr:gsub("\r", "") .. ass1
osd_time = osd_time + 5
end
end
if playlist_finished ~= -1 then
osd_text = osd_text .. "\nFinished downloading mpv playlist (".. tostring(playlist_finished) .. " entries)"
elseif mpv_playlist_status ~= nil then
download(download_type, config_file, overwrite_opts)
end
mp.osd_message(osd_text, osd_time)
end
-- Start download
msg.debug("exec (async): " .. table.concat(command, " "))
if opts.open_new_terminal then
mp.osd_message(table.concat(command, " "), 3)
-- Check working directory is writable (in case the filename does not specify a directory)
local cwd = utils.getcwd()
local has_cwd = false
for _, value in pairs(open_new_terminal_command) do
if value == "$cwd" then
has_cwd = true
break
end
end
if has_cwd then
local win_programs = "C:\\Program Files"
local win_win = "C:\\Windows"
if cwd:lower():sub(1, #win_programs) == win_programs:lower() or cwd:lower():sub(1, #win_win) == win_win:lower() then
msg.debug("The mpv working directory ('" ..cwd .."') is probably not writable. Trying %USERPROFILE%...")
local user_profile = os.getenv("USERPROFILE")
if user_profile ~= nil then
cwd = user_profile
else
msg.warn("open_new_terminal is enabled, but %USERPROFILE% is not defined")
mp.osd_message("open_new_terminal is enabled, but %USERPROFILE% is not defined", 3)
end
end
end
-- Escape restricted characters on Windows
if is_windows then
local restricted = "&<>|"
for key, value in ipairs(command) do
command[key] = value:gsub("[".. restricted .. "]", "^%0")
end
end
-- Prepend command with open_new_terminal_command
local i = 1
local inserted_cmd = false
for _, value in pairs(open_new_terminal_command) do
if value == "$cwd" then
table.insert(command, i, cwd)
elseif value == "$cmd" then
inserted_cmd = true
elseif inserted_cmd then
table.insert(command, value) -- append after command
else
table.insert(command, i, value) -- prepend before command
end
i = i + 1
end
msg.debug("exec (async): " .. table.concat(command, " "))
end
process_id = exec_async(