-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.plist
1115 lines (1098 loc) · 28.3 KB
/
info.plist
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>bundleid</key>
<string>com.tucomel.videodownloaderalfred</string>
<key>category</key>
<string>Tools</string>
<key>connections</key>
<dict>
<key>12E7915C-C435-4191-983F-00949256722A</key>
<array>
<dict>
<key>destinationuid</key>
<string>28422647-406C-41A0-9213-F8DCF6DAA304</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>24F9353B-47E7-4C13-897A-C2BDE205E29D</key>
<array>
<dict>
<key>destinationuid</key>
<string>2D29886C-4E07-412B-B344-FA2355872056</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>28422647-406C-41A0-9213-F8DCF6DAA304</key>
<array>
<dict>
<key>destinationuid</key>
<string>E4936EF0-B129-4E64-9892-FB0A03364BB6</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>2D29886C-4E07-412B-B344-FA2355872056</key>
<array>
<dict>
<key>destinationuid</key>
<string>E5A4E5B7-73A3-4F22-B470-342A340D2C37</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>57078066-0564-478C-966A-9B981EE7800E</key>
<array>
<dict>
<key>destinationuid</key>
<string>CB30E87E-4DE3-4FC3-AC95-C598FA8989E8</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>BF646B06-4EF2-45C9-8D49-8F4FB47E09B3</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>5B439D56-8EA4-4110-9977-01B4EB4D0DDE</key>
<array>
<dict>
<key>destinationuid</key>
<string>0A5D353F-5761-4528-9C3A-748A5951D3C4</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>7DDA3FBA-3FC8-4A52-B823-828B6583D78E</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>7DDA3FBA-3FC8-4A52-B823-828B6583D78E</key>
<array>
<dict>
<key>destinationuid</key>
<string>E173526C-76A5-49E2-91E7-D037370C204D</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>A73B2F73-8230-4689-A4B2-8448CA341704</key>
<array>
<dict>
<key>destinationuid</key>
<string>0EE74F6E-141E-480F-9607-330FA62FA721</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>A7E827A4-C0E8-4FA1-AE11-51807F25A2A1</key>
<array>
<dict>
<key>destinationuid</key>
<string>6570E17A-DB88-48D8-B3F2-7880B3037772</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>B3D9B3B3-67F8-4378-A055-B06E37B83971</key>
<array>
<dict>
<key>destinationuid</key>
<string>CB30E87E-4DE3-4FC3-AC95-C598FA8989E8</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>BF646B06-4EF2-45C9-8D49-8F4FB47E09B3</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>B538B435-B651-419B-8752-8F9B5D3D1DB4</key>
<array>
<dict>
<key>destinationuid</key>
<string>24F9353B-47E7-4C13-897A-C2BDE205E29D</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>BF646B06-4EF2-45C9-8D49-8F4FB47E09B3</key>
<array>
<dict>
<key>destinationuid</key>
<string>C677C0FC-8D57-47C9-A418-74D09F8D2453</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>A7E827A4-C0E8-4FA1-AE11-51807F25A2A1</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>C677C0FC-8D57-47C9-A418-74D09F8D2453</key>
<array/>
<key>D55D407A-D6DC-4FBE-9B4A-278344FE6B96</key>
<array>
<dict>
<key>destinationuid</key>
<string>3B7A60B0-65BB-4928-9F46-17CB24155CCF</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>A73B2F73-8230-4689-A4B2-8448CA341704</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>E5A4E5B7-73A3-4F22-B470-342A340D2C37</key>
<array>
<dict>
<key>destinationuid</key>
<string>E7CA8965-C7D6-412D-AE3D-172DD7A27ECF</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>E7CA8965-C7D6-412D-AE3D-172DD7A27ECF</key>
<array>
<dict>
<key>destinationuid</key>
<string>B3D9B3B3-67F8-4378-A055-B06E37B83971</string>
<key>modifiers</key>
<integer>1048576</integer>
<key>modifiersubtext</key>
<string>Extract audio from video (delete video after)</string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>57078066-0564-478C-966A-9B981EE7800E</string>
<key>modifiers</key>
<integer>524288</integer>
<key>modifiersubtext</key>
<string>Download and auto-play video</string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>BF646B06-4EF2-45C9-8D49-8F4FB47E09B3</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
<dict>
<key>destinationuid</key>
<string>E5987C95-B3AC-4962-82D0-7DCDF7810FE1</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
</dict>
<key>createdby</key>
<string>Arthur Melo</string>
<key>description</key>
<string>Download videos from YouTube, Vimeo, DailyMotion and more...</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>Video Downloader Alfred</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>2</integer>
<key>keyword</key>
<string>vd-help</string>
<key>subtext</key>
<string>Information on using the Video Downloader workflow for Alfred.</string>
<key>text</key>
<string>Video Downloader Help</string>
<key>withspace</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.input.keyword</string>
<key>uid</key>
<string>12E7915C-C435-4191-983F-00949256722A</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>63</integer>
<key>script</key>
<string>echo "$(<"HELP.txt")"</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>0</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>28422647-406C-41A0-9213-F8DCF6DAA304</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alignment</key>
<integer>0</integer>
<key>backgroundcolor</key>
<string></string>
<key>fadespeed</key>
<integer>0</integer>
<key>fillmode</key>
<integer>0</integer>
<key>font</key>
<string></string>
<key>ignoredynamicplaceholders</key>
<false/>
<key>largetypetext</key>
<string></string>
<key>textcolor</key>
<string></string>
<key>wrapat</key>
<integer>50</integer>
</dict>
<key>type</key>
<string>alfred.workflow.output.largetype</string>
<key>uid</key>
<string>E4936EF0-B129-4E64-9892-FB0A03364BB6</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>2</integer>
<key>keyword</key>
<string>vd-update</string>
<key>subtext</key>
<string>Check for Video Downloader updates...</string>
<key>text</key>
<string>Update Video Downloader</string>
<key>withspace</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.input.keyword</string>
<key>uid</key>
<string>D55D407A-D6DC-4FBE-9B4A-278344FE6B96</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<false/>
<key>onlyshowifquerypopulated</key>
<false/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>Checking for updates...</string>
<key>title</key>
<string>Video Downloader Update</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>3B7A60B0-65BB-4928-9F46-17CB24155CCF</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<false/>
<key>onlyshowifquerypopulated</key>
<false/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>{query}</string>
<key>title</key>
<string>Video Downloader Update</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>0EE74F6E-141E-480F-9607-330FA62FA721</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>63</integer>
<key>script</key>
<string>sh vd-update.sh</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>0</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>A73B2F73-8230-4689-A4B2-8448CA341704</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string>{query}</string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>audio</key>
<string>-audio</string>
<key>notification</key>
<string>Extracting audio from : {query}</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>B3D9B3B3-67F8-4378-A055-B06E37B83971</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<false/>
<key>onlyshowifquerypopulated</key>
<true/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>{var:notification}</string>
<key>title</key>
<string>Preparing</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>CB30E87E-4DE3-4FC3-AC95-C598FA8989E8</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<true/>
<key>onlyshowifquerypopulated</key>
<false/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>{query}</string>
<key>title</key>
<string>Download Complete</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>C677C0FC-8D57-47C9-A418-74D09F8D2453</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string>{query}</string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>notification</key>
<string>Waiting video to autoplay : {query}</string>
<key>play</key>
<string>-play</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>57078066-0564-478C-966A-9B981EE7800E</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>0</integer>
<key>script</key>
<string>if [ -z "$ext" ]; then
ext=-1
fi
if [ -z "$size" ]; then
size=-1
fi
if [ -z "$play" ]; then
play=-1
fi
if [ -z "$audio" ]; then
audio=-1
fi
#echo "parameters : ("{query}" $ext $size $play $audio)"
sh vd.sh "{query}" $ext $size $play $audio</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>5</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>BF646B06-4EF2-45C9-8D49-8F4FB47E09B3</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>fixedorder</key>
<true/>
<key>items</key>
<string>[{"imagefile":"1cf158467e3af7e0d34b1fc5b0554463477b7f17.png","title":"Skip"},{"imagefile":"c88eafeb28ba5d8e2a25a9bed3ca6837df3f7343.png","title":"480p","arg":"480","subtitle":"Compress video to 480p"},{"imagefile":"4a88b4f901461be82ffcf5fa0838ac9f457d8c29.png","title":"720P","arg":"720","subtitle":"Compress video to 720p"},{"imagefile":"0454d424f3f4245d2c5210243b246b814740bb61.png","title":"1080p","arg":"1080","subtitle":"Compress video to 1080p"}]</string>
<key>matchmode</key>
<integer>0</integer>
<key>runningsubtext</key>
<string></string>
<key>subtext</key>
<string>Select one mode</string>
<key>title</key>
<string>Select video size</string>
<key>withspace</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.input.listfilter</string>
<key>uid</key>
<string>2D29886C-4E07-412B-B344-FA2355872056</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>fixedorder</key>
<true/>
<key>items</key>
<string>[{"title":"Mp4","arg":"mp4","subtitle":"Convert to Mp4"},{"title":"GIF","arg":"gif","subtitle":"Save as GIF"},{"title":"Mov","arg":"mov","subtitle":"Convert to Mov"}]</string>
<key>keyword</key>
<string>vd</string>
<key>matchmode</key>
<integer>0</integer>
<key>runningsubtext</key>
<string></string>
<key>subtext</key>
<string>Select one extension</string>
<key>title</key>
<string>Video extension</string>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.listfilter</string>
<key>uid</key>
<string>B538B435-B651-419B-8752-8F9B5D3D1DB4</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>0</integer>
<key>keyword</key>
<string>vd</string>
<key>subtext</key>
<string>Hold CMD (⌘) to extract audio, Hold OPT (⌥) to auto-play.</string>
<key>text</key>
<string>URL : {var:ext} {var:size} {query}</string>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.keyword</string>
<key>uid</key>
<string>E7CA8965-C7D6-412D-AE3D-172DD7A27ECF</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string></string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>size</key>
<string>{query}</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>E5A4E5B7-73A3-4F22-B470-342A340D2C37</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string></string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>ext</key>
<string>{query}</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>24F9353B-47E7-4C13-897A-C2BDE205E29D</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>path</key>
<string>{query}</string>
</dict>
<key>type</key>
<string>alfred.workflow.action.revealfile</string>
<key>uid</key>
<string>6570E17A-DB88-48D8-B3F2-7880B3037772</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>type</key>
<integer>0</integer>
</dict>
<key>type</key>
<string>alfred.workflow.utility.transform</string>
<key>uid</key>
<string>A7E827A4-C0E8-4FA1-AE11-51807F25A2A1</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<false/>
<key>onlyshowifquerypopulated</key>
<false/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>{query}</string>
<key>title</key>
<string>Downloading...</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>E5987C95-B3AC-4962-82D0-7DCDF7810FE1</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>0</integer>
<key>keyword</key>
<string>vd-info</string>
<key>subtext</key>
<string>Retrieve detailed information about the video...</string>
<key>text</key>
<string>Get Video Information...</string>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.keyword</string>
<key>uid</key>
<string>5B439D56-8EA4-4110-9977-01B4EB4D0DDE</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>lastpathcomponent</key>
<false/>
<key>onlyshowifquerypopulated</key>
<false/>
<key>removeextension</key>
<false/>
<key>text</key>
<string>Retrieving video information from {query}</string>
<key>title</key>
<string>Video Info</string>
</dict>
<key>type</key>
<string>alfred.workflow.output.notification</string>
<key>uid</key>
<string>0A5D353F-5761-4528-9C3A-748A5951D3C4</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alignment</key>
<integer>0</integer>
<key>backgroundcolor</key>
<string></string>
<key>fadespeed</key>
<integer>0</integer>
<key>fillmode</key>
<integer>0</integer>
<key>font</key>
<string></string>
<key>ignoredynamicplaceholders</key>
<false/>
<key>largetypetext</key>
<string></string>
<key>textcolor</key>
<string></string>
<key>wrapat</key>
<integer>50</integer>
</dict>
<key>type</key>
<string>alfred.workflow.output.largetype</string>
<key>uid</key>
<string>E173526C-76A5-49E2-91E7-D037370C204D</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>63</integer>
<key>script</key>
<string>sh vd-info.sh "{query}"</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>5</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>7DDA3FBA-3FC8-4A52-B823-828B6583D78E</string>
<key>version</key>
<integer>2</integer>
</dict>
</array>
<key>readme</key>
<string>Video Downloader Alfred (Workflow)
Updated Version of Video Downloader (workflow) Version 1.1 (2021-02-25)
Video Downloader Alfred is an Alfred workflow written in Bash/Shell for easily downloading videos (and/or extracting audio) from various websites such as YouTube, Vimeo, DailyMotion and more... It uses youtube-dl as the core component.
Installation
Download and double click video-downloader-alfred.alfredworkflow. It will be imported into Alfred automatically.
Here is a full visual list of what Video Downloader Alfred can do:
video-downloader-alfred.png
Here is how the workflow nodes look like:
video-downloader-alfred-workflow.png
Usage
vd-update will automatically check and update the core component. Run this first when you import the workflow.
vd {video-url} without any option will download the best video+audio option from URL merge then and save the video file to your home folder "~".
vd {video-extension} and/or {video-compression} {video-url} with this option you can choose compression size and extension (any or both) .
video-downloader-alfred.gif
vd {video-url} hold ⌘ will download the video file, then automatically extract and create an audio file. (.mp3) (The original video file is deleted at the end)
vd {video-url} hold ⌥ will download the video file, then automatic try to play with your default player (VLC, IINA or QT)
video-downloader-alfred-info
vd-info {video-url} will display some video meta-data in Large Type and create an .info.json file.
vd-help will display a quick help in Large Type.
Instagram (private or public photos/videos including Reels and IGTV) (optional)
Nexts steps is only necessarely for private contents download
Log-in to your instagram account and use GetCookies extension to save your cookie file.
Put the file inside "$plugin_folder/cookies" (like image below) using the exacly name "instagram.com_cookies.txt" (do not worry, I will not have access to this file, he will be used by youtube-dl at --cookies parameter)
video-downloader-cookies.png
Audio Extraction (optional)
For this feature, you should install FFmpeg yourself manually (because of licensing issues).
One way to install FFmpeg is;
Install XCode
Install Command Line Tools for Xcode
Install MacPorts
Install FFmpeg by running the command below in Terminal:
$ sudo port install ffmpeg
You can append these options to enable support for various codecs and FFmpeg features:
+gpl +postproc +lame +theora +libogg +vorbis +xvid +x264 +a52 +faac +faad +dts +nonfree
Notes
Videos, audio and meta-data files will be downloaded/created on your folder "~".
This workflow will display post notifications where appropriate (before/after downloads, on download errors, updates, etc)...
Supported Sites
• YouTube
• Instagram (private profiles need "cookie file".txt)
• Vimeo
• Dailymotion
• Twitch
• MetaCafe
• Google Video
• MTV
• Soundcloud
• Photobucket Videos
• DepositFiles
• blip.tv
• myvideo.de
• Google Plus
• The Daily Show / Colbert Nation
• The Escapist
• CollegeHumor
• arte.tv
• xvideos
• infoq
• mixcloud
• Stanford Open Content
• Youku
• XNXX
• more...
list here.
Requirements
Python version 2.6, 2.7, or 3.3+
FFmpeg (optional, required for audio extraction feature)
GetCookies (optional, required for private instagram profiles for example)
License
Video Downloader Alfred workflow is released to the public domain. (Do whatever you like with it.) FFmpeg is a trademark of Fabrice Bellard and it is licensed under LGPL version 2.1 http://www.ffmpeg.org/legal.html</string>
<key>uidata</key>
<dict>
<key>0A5D353F-5761-4528-9C3A-748A5951D3C4</key>
<dict>
<key>xpos</key>
<real>1025</real>
<key>ypos</key>
<real>835</real>
</dict>
<key>0EE74F6E-141E-480F-9607-330FA62FA721</key>
<dict>
<key>xpos</key>
<real>1025</real>
<key>ypos</key>
<real>240</real>
</dict>
<key>12E7915C-C435-4191-983F-00949256722A</key>
<dict>
<key>xpos</key>
<real>625</real>
<key>ypos</key>
<real>15</real>
</dict>
<key>24F9353B-47E7-4C13-897A-C2BDE205E29D</key>
<dict>
<key>xpos</key>
<real>195</real>
<key>ypos</key>
<real>590</real>
</dict>
<key>28422647-406C-41A0-9213-F8DCF6DAA304</key>
<dict>
<key>xpos</key>
<real>825</real>
<key>ypos</key>
<real>15</real>
</dict>
<key>2D29886C-4E07-412B-B344-FA2355872056</key>
<dict>
<key>xpos</key>
<real>270</real>
<key>ypos</key>
<real>560</real>
</dict>
<key>3B7A60B0-65BB-4928-9F46-17CB24155CCF</key>
<dict>
<key>xpos</key>
<real>1025</real>
<key>ypos</key>
<real>130</real>
</dict>
<key>57078066-0564-478C-966A-9B981EE7800E</key>
<dict>
<key>note</key>
<string>Download and auto-play video</string>
<key>xpos</key>
<real>715</real>
<key>ypos</key>
<real>515</real>
</dict>
<key>5B439D56-8EA4-4110-9977-01B4EB4D0DDE</key>
<dict>
<key>xpos</key>
<real>625</real>
<key>ypos</key>
<real>835</real>
</dict>
<key>6570E17A-DB88-48D8-B3F2-7880B3037772</key>
<dict>
<key>xpos</key>