forked from Nudin/mpv-script-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpv_script_directory.json
2968 lines (2968 loc) · 124 KB
/
mpv_script_directory.json
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
{
"github:VideoPlayerCode/mpv-tools/Blackbox": {
"name": "Blackbox",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "javascript",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Advanced, modular media browser, file manager and playlist manager for mpv.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:VideoPlayerCode/mpv-tools/Colorbox": {
"name": "Colorbox",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "javascript",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Apply color correction presets.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:VideoPlayerCode/mpv-tools/Gallerizer": {
"name": "Gallerizer",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "javascript",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Image gallery autoloader for mpv.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:VideoPlayerCode/mpv-tools/Leapfrog": {
"name": "Leapfrog",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "javascript",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Effortlessly jump through your playlist, with your own custom jump size and direction, including the ability to jump randomly. Excellent when queuing lots of images and using mpv as an image viewer.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:AssrtOSS/mpv-assrt": {
"name": "mpv-assrt",
"url": "https://github.com/AssrtOSS/mpv-assrt",
"type": "javascript",
"receiving_url": "https://github.com/AssrtOSS/mpv-assrt",
"install_dir": "github/AssrtOSS/mpv-assrt",
"desc": "Download subtitles from assrt.net, with interactive OSD menu.",
"os": [],
"stars": 49,
"sharedrepo": false
},
"github:zc62/mpv-scripts/screenshot-to-clipboard.js": {
"name": "screenshot-to-clipboard",
"url": "https://github.com/zc62/mpv-scripts/blob/master/screenshot-to-clipboard.js",
"type": "javascript",
"receiving_url": "https://github.com/zc62/mpv-scripts",
"install_dir": "github/zc62/mpv-scripts",
"desc": "Generates a temp screenshot file on desktop then copy to clipboard. (Windows only)",
"os": [
"Windows"
],
"stars": 14,
"sharedrepo": true
},
"github:stax76/mpv.net/seek-show-position.js": {
"name": "seek-show-position",
"url": "https://github.com/stax76/mpv.net/blob/master/scripts/javascript/seek-show-position.js",
"type": "javascript",
"install": "git",
"receiving_url": "https://github.com/stax76/mpv.net",
"scriptfiles": [
"scripts/javascript/seek-show-position.js"
],
"install_dir": "github/stax76/mpv.net",
"desc": "Shows the position and duration when seeking formatted as 70:00 / 80:00 instead the built in 01:10:00 / 01:20:00.",
"os": [],
"stars": 563,
"sharedrepo": true
},
"github:Arieleg/mpv-takeSsSequence": {
"name": "takeSsSequence",
"url": "https://github.com/Arieleg/mpv-takeSsSequence",
"type": "javascript",
"receiving_url": "https://github.com/Arieleg/mpv-takeSsSequence",
"install_dir": "github/Arieleg/mpv-takeSsSequence",
"desc": "Take a sequence of equispaced screenshots.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"www.npmjs.com:mpv-script": {
"name": "TypeScript definitions (for developers)",
"url": "https://www.npmjs.com/package/@types/mpv-script",
"type": "javascript",
"desc": "Type definitions for builtin mp modules and globals.",
"os": []
},
"github:VideoPlayerCode/mpv-tools/modules.js": {
"name": "VideoPlayerCode's Modules.js (for developers)",
"url": "https://github.com/VideoPlayerCode/mpv-tools/tree/master/scripts/modules.js",
"type": "javascript",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Tons of pre-written, open source JavaScript modules which helps you rapidly create your own JS user scripts (including a very helpful script config system based on mpv's Lua mp.options API). All modules are free to use (and extend) in your own scripts!",
"os": [],
"stars": 79,
"sharedrepo": true
},
"github:mrxdst/webtorrent-mpv-hook": {
"name": "webtorrent-mpv-hook",
"url": "https://github.com/mrxdst/webtorrent-mpv-hook",
"type": "javascript",
"receiving_url": "https://github.com/mrxdst/webtorrent-mpv-hook",
"install_dir": "github/mrxdst/webtorrent-mpv-hook",
"desc": "Adds a hook that allows mpv to stream torrents. It also provides a osd overlay to show info/progress.",
"os": [],
"stars": 5,
"sharedrepo": false
},
"github:mpv-player/mpv/acompressor.lua": {
"name": "acompressor",
"url": "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/acompressor.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mpv-player/mpv",
"install_dir": "github/mpv-player/mpv",
"scriptfiles": [
"TOOLS/lua/acompressor.lua"
],
"desc": "Dynamic range compressor using acompressor ffmpeg filter with controls to dynamically adjust parameters.",
"os": [],
"stars": 13009,
"sharedrepo": true
},
"github:AN3223/dotfiles/always-play-on-startup.lua": {
"name": "always-play-on-startup",
"url": "https://github.com/AN3223/dotfiles/blob/master/.config/mpv/scripts/always-play-on-startup.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/AN3223/dotfiles",
"install_dir": "github/AN3223/dotfiles",
"scriptfiles": [
".config/mpv/scripts/always-play-on-startup.lua"
],
"desc": "Always play on startup, never start playback in a paused state.",
"os": [],
"stars": 3,
"sharedrepo": true
},
"github:wiiaboo/mpv-scripts/audio-balance.lua": {
"name": "audio-balance",
"url": "https://github.com/wiiaboo/mpv-scripts/blob/master/audio-balance.lua",
"type": "lua script",
"receiving_url": "https://github.com/wiiaboo/mpv-scripts",
"install_dir": "github/wiiaboo/mpv-scripts",
"scriptfiles": [
"audio-balance.lua"
],
"desc": "Port of mpv's balance property to FFmpeg lavfi pan filter.",
"os": [],
"stars": 55,
"sharedrepo": true
},
"github:fbriere/mpv-scripts/audio-file-keys.lua": {
"name": "audio-file-keys",
"url": "https://github.com/fbriere/mpv-scripts/blob/master/scripts/audio-file-keys.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/fbriere/mpv-scripts",
"install_dir": "github/fbriere/mpv-scripts",
"scriptfiles": [
"scripts/audio-file-keys.lua"
],
"desc": "Automatically apply key bindings when playing audio files.",
"os": [],
"stars": 10,
"sharedrepo": true
},
"github:mpv-player/mpv/autocrop.lua": {
"name": "autocrop",
"url": "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/autocrop.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mpv-player/mpv",
"install_dir": "github/mpv-player/mpv",
"scriptfiles": [
"TOOLS/lua/autocrop.lua"
],
"desc": "Automatically crop the video by using lavfi's cropdetect filter to detect black bars.",
"os": [],
"stars": 13009,
"sharedrepo": true
},
"github:mpv-player/mpv/autodeint.lua": {
"name": "autodeint",
"url": "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/autodeint.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mpv-player/mpv",
"install_dir": "github/mpv-player/mpv",
"scriptfiles": [
"TOOLS/lua/autodeint.lua"
],
"desc": "Automatically deinterlace the video by using lavfi's idet filter to detect interlaced content.",
"os": [],
"stars": 13009,
"sharedrepo": true
},
"github:mpv-player/mpv/autoload.lua": {
"name": "autoload",
"url": "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/autoload.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mpv-player/mpv",
"install_dir": "github/mpv-player/mpv",
"scriptfiles": [
"TOOLS/lua/autoload.lua"
],
"desc": "Automatically load playlist entries before and after the currently playing file, by scanning the directory.",
"os": [],
"stars": 13009,
"sharedrepo": true
},
"github:zc62/mpv-scripts/autoloop.lua": {
"name": "autoloop",
"url": "https://github.com/zc62/mpv-scripts/blob/master/autoloop.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/zc62/mpv-scripts",
"install_dir": "github/zc62/mpv-scripts",
"scriptfiles": [
"autoloop.lua"
],
"desc": "Automatically loops files that are under a given duration (default 5 seconds).",
"os": [],
"stars": 14,
"sharedrepo": true
},
"github:wiiaboo/mpv-scripts/auto-profiles.lua": {
"name": "auto-profiles",
"url": "https://github.com/wiiaboo/mpv-scripts/blob/master/auto-profiles.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/wiiaboo/mpv-scripts",
"install_dir": "github/wiiaboo/mpv-scripts",
"scriptfiles": [
"auto-profiles.lua"
],
"desc": "Automatically apply profiles based on predicates written as Lua expressions.",
"os": [],
"stars": 55,
"sharedrepo": true
},
"github:AN3223/dotfiles/auto-save-state.lua": {
"name": "auto-save-state",
"url": "https://github.com/AN3223/dotfiles/blob/master/.config/mpv/scripts/auto-save-state.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/AN3223/dotfiles",
"install_dir": "github/AN3223/dotfiles",
"scriptfiles": [
".config/mpv/scripts/auto-save-state.lua"
],
"desc": "Periodically saves progress with write-watch-later-config, and also cleans up the watch later data after the file is finished playing (so playlists may continue at the correct file).",
"os": [],
"stars": 3,
"sharedrepo": true
},
"gist:Hakkin/5489e511bd6c8068a0fc09304c9c5a82": {
"name": "autosave",
"url": "https://gist.github.com/Hakkin/5489e511bd6c8068a0fc09304c9c5a82",
"type": "lua script",
"desc": "Periodically saves \"watch later\" data during playback, rather than only saving on quit.",
"os": [],
"stars": 15,
"sharedrepo": false
},
"github:kevinlekiller/mpv_scripts/autospeed": {
"name": "autospeed",
"url": "https://github.com/kevinlekiller/mpv_scripts/blob/master/autospeed/",
"type": "lua script",
"receiving_url": "https://github.com/kevinlekiller/mpv_scripts",
"install_dir": "github/kevinlekiller/mpv_scripts",
"desc": "To adjust monitor refresh rate and video speed for almost 1:1 playback. (*nix)",
"os": [
"Linux",
"Mac"
],
"stars": 43,
"sharedrepo": true
},
"github:kevinlekiller/mpv_scripts/autospeedwin": {
"name": "autospeedwin",
"url": "https://github.com/kevinlekiller/mpv_scripts/tree/master/autospeedwin",
"type": "lua script",
"receiving_url": "https://github.com/kevinlekiller/mpv_scripts",
"install_dir": "github/kevinlekiller/mpv_scripts",
"desc": "To adjust monitor refresh rate and video speed for almost 1:1 playback. (Windows)",
"os": [
"Windows"
],
"stars": 43,
"sharedrepo": true
},
"github:davidde/mpv-autosub": {
"name": "autosub",
"url": "https://github.com/davidde/mpv-autosub",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/davidde/mpv-autosub",
"install_dir": "github/davidde/mpv-autosub",
"scriptfiles": [
"autosub.lua"
],
"install-notes": "Copy this path to the subliminal variable at the start of the script:\nlocal subliminal = '/path/to/your/subliminal'",
"desc": "Fully automatic subtitle downloading. No hotkeys required.\nClear setup instructions for Windows, Mac and Linux.",
"os": [
"Linux",
"Windows",
"Mac"
],
"stars": 46,
"sharedrepo": false
},
"github:vayan/autosub-mpv": {
"name": "autosub",
"url": "https://github.com/vayan/autosub-mpv",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/vayan/autosub-mpv",
"install_dir": "github/vayan/autosub-mpv",
"scriptfiles": [
"autosub.lua"
],
"desc": "Automatically download subtitles using subliminal.",
"os": [],
"stars": 51,
"sharedrepo": false
},
"github:joaquintorres/autosubsync-mpv": {
"name": "autosubsync",
"url": "https://github.com/joaquintorres/autosubsync-mpv",
"type": "lua script",
"receiving_url": "https://github.com/joaquintorres/autosubsync-mpv",
"install_dir": "github/joaquintorres/autosubsync-mpv",
"desc": "Automatically sync subtitles using ffsubsync.",
"os": [],
"stars": 5,
"sharedrepo": false
},
"gist:Hakkin/4f978a5c87c31f7fe3ae": {
"name": "betterchapters",
"url": "https://gist.github.com/Hakkin/4f978a5c87c31f7fe3ae",
"type": "lua script",
"desc": "(update)\nLoads the next or previous playlist entry if there are no more chapters in the seek direction.",
"os": [],
"stars": 7,
"sharedrepo": false
},
"github:occivink/mpv-scripts#blur-edgeslua": {
"name": "blur-edges",
"url": "https://github.com/occivink/mpv-scripts#blur-edgeslua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/occivink/mpv-scripts",
"install_dir": "github/occivink/mpv-scripts",
"desc": "Replace black bars with a blurry copy of the video",
"os": [],
"scriptfiles": [
"scripts/blur-edges.lua"
],
"scriptoptfiles": [
"script-opts/blur_edges.conf"
],
"install-notes": "The script defines a toggle-blur command that you can bind.",
"stars": 138,
"sharedrepo": false
},
"github:NurioHin/mpv-bookmarker": {
"name": "bookmarker-menu",
"url": "https://github.com/NurioHin/mpv-bookmarker",
"type": "lua script",
"receiving_url": "https://github.com/NurioHin/mpv-bookmarker",
"install_dir": "github/NurioHin/mpv-bookmarker",
"desc": "A bookmarker menu to manage all your bookmarks in MPV, based on mpv-bookmarker but with a menu",
"os": [],
"stars": 12,
"sharedrepo": false
},
"github:sorayuki-winter/mpv-plugin-bookmark": {
"name": "bookmark",
"url": "https://github.com/sorayuki-winter/mpv-plugin-bookmark",
"type": "lua script",
"receiving_url": "https://github.com/sorayuki-winter/mpv-plugin-bookmark",
"install_dir": "github/sorayuki-winter/mpv-plugin-bookmark",
"desc": "Record and resume last play in current playing folder",
"os": [],
"stars": 7,
"sharedrepo": false
},
"gist:bitingsock/1e7ef04a151963b38e347a723d7e3201": {
"name": "channel mixer",
"url": "https://gist.github.com/bitingsock/1e7ef04a151963b38e347a723d7e3201",
"type": "lua script",
"desc": "A set of keybindings using a modifier (Shift or Ctrl) and the function keys (F8-F12) to can adjust the mixing level of surround channels on the fly.",
"os": [],
"stars": 2,
"sharedrepo": false
},
"github:po5/chapterskip": {
"name": "chapterskip",
"url": "https://github.com/po5/chapterskip",
"type": "lua script",
"receiving_url": "https://github.com/po5/chapterskip",
"install_dir": "github/po5/chapterskip",
"desc": "Automatically skip chapters based on title.",
"os": [],
"stars": 5,
"sharedrepo": false
},
"github:Ares-0/mpv-composition-guides": {
"name": "composition guides",
"url": "https://github.com/Ares-0/mpv-composition-guides",
"type": "lua script",
"receiving_url": "https://github.com/Ares-0/mpv-composition-guides",
"install_dir": "github/Ares-0/mpv-composition-guides",
"desc": "Overlay basic composition guides onto your video.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"github:Arieleg/mpv-copyTime/copyTime": {
"name": "copyTime",
"url": "https://github.com/Arieleg/mpv-copyTime",
"type": "javascript",
"receiving_url": "https://github.com/Arieleg/mpv-copyTime",
"install_dir": "github/Arieleg/mpv-copyTime",
"desc": "Get the current time of the video and copy it to the clipboard with the format HH:MM:SS.MS .",
"os": [],
"stars": 1,
"sharedrepo": false
},
"github:Arieleg/mpv-copyTime-2": {
"name": "copyTime",
"url": "https://github.com/Arieleg/mpv-copyTime",
"type": "lua script",
"receiving_url": "https://github.com/Arieleg/mpv-copyTime",
"install_dir": "github/Arieleg/mpv-copyTime",
"desc": "Get the current time of the video and copy it to the clipboard with the format HH:MM:SS.MS .",
"os": [],
"stars": 1,
"sharedrepo": false
},
"gist:avih/bee746200b5712220b8bd2f230e535de": {
"name": "Tcl/Tk context menu",
"url": "https://gist.github.com/avih/bee746200b5712220b8bd2f230e535de",
"type": "lua script",
"desc": "Configurable context-menu based on Tcl/Tk, for *nix/Windows and probably macOS too.",
"os": [
"Windows",
"Mac",
"Linux",
"Mac"
],
"stars": 10,
"sharedrepo": false
},
"gist:Zehkul/25ea7ae77b30af959be0": {
"name": "convert_script",
"url": "https://gist.github.com/Zehkul/25ea7ae77b30af959be0",
"type": "lua script",
"desc": "Script to quickly convert and crop videos from within mpv, with a GUI.",
"os": [],
"stars": 59,
"sharedrepo": false
},
"github:CogentRedTester/mpv-coverart": {
"name": "coverart",
"url": "https://github.com/CogentRedTester/mpv-coverart",
"type": "lua script",
"receiving_url": "https://github.com/CogentRedTester/mpv-coverart",
"install_dir": "github/CogentRedTester/mpv-coverart",
"desc": "Automatically load external music cover art",
"os": [],
"stars": 4,
"sharedrepo": false
},
"gist:olejorgenb/a5194d9bc183dbe0bfb02aac18fe37f9": {
"name": "copy-permalink",
"url": "https://gist.github.com/olejorgenb/a5194d9bc183dbe0bfb02aac18fe37f9",
"type": "lua script",
"desc": "Copy mpv --time=<current-position> <path-playing> to clipboard. Useful for sharing when playing URLs.",
"os": [],
"stars": 2,
"sharedrepo": false
},
"github:occivink/mpv-scripts#croplua": {
"name": "crop",
"url": "https://github.com/occivink/mpv-scripts#croplua",
"type": "lua script",
"receiving_url": "https://github.com/occivink/mpv-scripts",
"install_dir": "github/occivink/mpv-scripts",
"desc": "Crop the video by defining the target rectangle with the cursor",
"os": [],
"stars": 138,
"sharedrepo": false
},
"gitlab:mozbugbox/mpv-script-mozbugbox/clock": {
"name": "clock",
"url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"type": "lua script",
"receiving_url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"install_dir": "gitlab/mozbugbox/mpv-script-mozbugbox",
"desc": "Constantly show current time on the lower left corner of the video screen.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"gitlab:mozbugbox/mpv-script-mozbugbox/curvesman": {
"name": "curvesman",
"url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"type": "lua script",
"receiving_url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"install_dir": "gitlab/mozbugbox/mpv-script-mozbugbox",
"desc": "Manipulate color curves filter of FFmpeg with hotkeys. Brighten up color, change color temperature/tone, hopefully more. Adjust yellow light tone to white light tone.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"gist:bitingsock/ad58ee5da560ecb922fa4a867ac0ecfd": {
"name": "cycle-audio-device",
"url": "https://gist.github.com/bitingsock/ad58ee5da560ecb922fa4a867ac0ecfd",
"type": "lua script",
"desc": "Cycle through available audio devices with key binds.",
"os": [],
"stars": 7,
"sharedrepo": false
},
"github:mpv-player/mpv/cycle-deinterlace-pullup.lua": {
"name": "cycle-deinterlace-pullup",
"url": "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/cycle-deinterlace-pullup.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mpv-player/mpv",
"install_dir": "github/mpv-player/mpv",
"scriptfiles": [
"TOOLS/lua/cycle-deinterlace-pullup.lua"
],
"desc": "Cycle between deinterlacing, pullup (IVTC), and both filters off.",
"os": [],
"stars": 13009,
"sharedrepo": true
},
"gist:myfreeer/d744c445aa71c0eeb165ca39cf6c0511": {
"name": "cycle-denoise",
"url": "https://gist.github.com/myfreeer/d744c445aa71c0eeb165ca39cf6c0511",
"install": "git",
"receiving_url": "https://gist.github.com/myfreeer/d744c445aa71c0eeb165ca39cf6c0511",
"install_dir": "gist/myfreeer/cycle-denoise",
"scriptfiles": [
"cycle-denoise.lua"
],
"type": "lua script",
"desc": "Cycle between lavfi's denoise filters (press n)",
"os": [],
"stars": 3,
"sharedrepo": false
},
"gist:rrooij/59f57ff5f5a952e56bbb": {
"name": "cycle_messages",
"url": "https://gist.github.com/rrooij/59f57ff5f5a952e56bbb",
"type": "lua script",
"desc": "Cycle between custom OSD messages.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"github:VideoPlayerCode/mpv-tools/auto-keep-gui-open": {
"name": "auto-keep-gui-open",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "lua script",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Intelligently switches mpv's \"keep-open\" behavior based on whether you are running in video-mode or audio-only mode.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:VideoPlayerCode/mpv-tools/cycle-video-rotate": {
"name": "cycle-video-rotate",
"url": "https://github.com/VideoPlayerCode/mpv-tools/",
"type": "lua script",
"receiving_url": "https://github.com/VideoPlayerCode/mpv-tools",
"install_dir": "github/VideoPlayerCode/mpv-tools",
"desc": "Allows you to perform video rotation which perfectly cycles through all 360 degrees without any glitches.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:demanuel/dessubdb/mpv.lua": {
"name": "dessubdb",
"url": "https://github.com/demanuel/dessubdb/blob/master/mpv.lua",
"type": "lua script",
"install": "manual",
"receiving_url": "https://github.com/demanuel/dessubdb",
"install_dir": "github/demanuel/dessubdb",
"scriptfiles": [
"mpv.lua"
],
"desc": "Download automatically subtitles from the thesubdb.com using DESSubdb.",
"os": [],
"stars": 9,
"sharedrepo": true
},
"github:nimatrueway/mpv-locatefile-lua-script": {
"name": "locate-file",
"url": "https://github.com/nimatrueway/mpv-locatefile-lua-script",
"type": "lua script",
"receiving_url": "https://github.com/nimatrueway/mpv-locatefile-lua-script",
"install_dir": "github/nimatrueway/mpv-locatefile-lua-script",
"desc": "Locate current media file on your OS file browser",
"os": [],
"stars": 15,
"sharedrepo": false
},
"github:b4zz4/mpv-delogo": {
"name": "delogo",
"url": "https://github.com/b4zz4/mpv-delogo",
"type": "lua script",
"receiving_url": "https://github.com/b4zz4/mpv-delogo",
"install_dir": "github/b4zz4/mpv-delogo",
"desc": "*** deprecated according to project page. tested and does not work.\nIt removes the logo of the channels in a video (press n)",
"os": [],
"stars": 1,
"sharedrepo": false
},
"github:b4zz4/mpv-deframe": {
"name": "deframe",
"url": "https://github.com/b4zz4/mpv-deframe",
"type": "lua script",
"receiving_url": "https://github.com/b4zz4/mpv-deframe",
"install_dir": "github/b4zz4/mpv-deframe",
"desc": "It removes the frame of youtube videos (press g)",
"os": []
},
"gist:richardpl/0c8011dc23d7ac7b7831b2e6d680114f": {
"name": "drcbox",
"url": "https://gist.github.com/richardpl/0c8011dc23d7ac7b7831b2e6d680114f",
"type": "lua script",
"desc": "Dynamic Audio Normalizer filter with visual feedback.",
"os": [],
"stars": 3,
"sharedrepo": false
},
"github:aidanholm/mpv-easycrop": {
"name": "easycrop",
"url": "https://github.com/aidanholm/mpv-easycrop",
"type": "lua script",
"receiving_url": "https://github.com/aidanholm/mpv-easycrop",
"install_dir": "github/aidanholm/mpv-easycrop",
"desc": "Manually crop a video during playback.",
"os": [],
"stars": 42,
"sharedrepo": false
},
"github:occivink/mpv-scripts#encodelua": {
"name": "encode",
"url": "https://github.com/occivink/mpv-scripts#encodelua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/occivink/mpv-scripts",
"install_dir": "github/occivink/mpv-scripts",
"desc": "Re-encode or remux part of the current video. Can also preserve some filters, such as \"crop\".",
"os": [],
"stars": 138,
"sharedrepo": false,
"scriptfiles": [
"scripts/encode.lua"
]
},
"gist:avih/41acff712abd32e1f436235388c8b523": {
"name": "equalizer",
"url": "https://gist.github.com/avih/41acff712abd32e1f436235388c8b523",
"type": "lua script",
"desc": "5-bands equalizer with colorful display.",
"os": [],
"stars": 18,
"sharedrepo": false
},
"gitlab:lvml/mpv-plugin-excerpt": {
"name": "excerpt",
"url": "https://gitlab.com/lvml/mpv-plugin-excerpt",
"type": "lua script",
"receiving_url": "https://gitlab.com/lvml/mpv-plugin-excerpt",
"install_dir": "gitlab/lvml/mpv-plugin-excerpt",
"desc": "Allows you to quickly create excerpts from media files, you just have to set begin and end markers.",
"os": [],
"stars": 11,
"sharedrepo": false
},
"github:zc62/mpv-scripts/exit-fullscreen.lua": {
"name": "exit-fullscreen",
"url": "https://github.com/zc62/mpv-scripts/blob/master/exit-fullscreen.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/zc62/mpv-scripts",
"install_dir": "github/zc62/mpv-scripts",
"scriptfiles": [
"exit-fullscreen.lua"
],
"desc": "If you use --keep-open=yes, this script exits fullscreen mode when the playback reaches the end of file/playlist.",
"os": [],
"stars": 14,
"sharedrepo": true
},
"github:jgreco/mpv-scripts/fastforward.lua": {
"name": "fastforward",
"url": "https://github.com/jgreco/mpv-scripts/blob/master/fastforward.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/jgreco/mpv-scripts",
"install_dir": "github/jgreco/mpv-scripts",
"scriptfiles": [
"fastforward.lua"
],
"desc": "Instead of skipping forward in media files, speed up the playback for a few seconds. Playback speed decays back to 1x after a few seconds. Tap rapidly or hold down to go faster.",
"os": [],
"stars": 13,
"sharedrepo": true
},
"github:zsugabubus/mpv-fastforward": {
"name": "fast-forward",
"url": "https://github.com/zsugabubus/mpv-fastforward",
"type": "lua script",
"receiving_url": "https://github.com/zsugabubus/mpv-fastforward",
"install_dir": "github/zsugabubus/mpv-fastforward",
"desc": "Another fast-forward plugin with some added features and a bit more customization options.",
"os": [],
"stars": 8,
"sharedrepo": false
},
"github:jonniek/mpv-filenavigator": {
"name": "filenavigator",
"url": "https://github.com/jonniek/mpv-filenavigator",
"type": "lua script",
"receiving_url": "https://github.com/jonniek/mpv-filenavigator",
"install_dir": "github/jonniek/mpv-filenavigator",
"desc": "Navigate directories and open files from your system.",
"os": [],
"stars": 36,
"sharedrepo": false
},
"gitlab:mozbugbox/mpv-script-mozbugbox": {
"name": "filter-test",
"url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"type": "lua script",
"receiving_url": "https://gitlab.com/mozbugbox/mpv-script-mozbugbox",
"install_dir": "gitlab/mozbugbox/mpv-script-mozbugbox",
"desc": "Test mpv/FFmpeg video filter(vf) strings with editable popup dialog.",
"os": [],
"stars": 1,
"sharedrepo": false
},
"github:directorscut82/find_subtitles": {
"name": "find_subtitles",
"url": "https://github.com/directorscut82/find_subtitles",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/directorscut82/find_subtitles",
"install_dir": "github/directorscut82/find_subtitles",
"scriptfiles": [
"find_subtitles.lua"
],
"install-notes": "subliminal (version 1.0.1+) must be installed and in PATH.",
"desc": "(Down)load subtitles with subliminal.",
"os": [
"Linux"
],
"stars": 18,
"sharedrepo": false
},
"github:mfcc64/mpv-scripts/firequalizer15.lua": {
"name": "firequalizer15",
"url": "https://github.com/mfcc64/mpv-scripts/blob/master/firequalizer15.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/mfcc64/mpv-scripts",
"install_dir": "github/mfcc64/mpv-scripts",
"install-notes": "Note that ~~/lua-settings directory should exist to save gain values.",
"scriptfiles": [
"firequalizer15.lua"
],
"desc": "Linear phase 15-bands equalizer.",
"os": [],
"stars": 55,
"sharedrepo": true
},
"github:wiiaboo/mpv-scripts/fix-sub-timing.lua": {
"name": "fix_sub_timing",
"url": "https://github.com/wiiaboo/mpv-scripts/blob/master/fix-sub-timing.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/wiiaboo/mpv-scripts",
"install_dir": "github/wiiaboo/mpv-scripts",
"scriptfiles": [
"fix-sub-timing.lua"
],
"desc": "Compute the correct speed/delay of subtitles by manually synching two points in time.",
"os": [],
"stars": 55,
"sharedrepo": true
},
"github:AN3223/dotfiles/force-window-profile.lua": {
"name": "force-window-profile",
"url": "https://github.com/AN3223/dotfiles/blob/master/.config/mpv/scripts/force-window-profile.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/AN3223/dotfiles",
"install_dir": "github/AN3223/dotfiles",
"scriptfiles": [
".config/mpv/scripts/force-window-profile.lua"
],
"desc": "Applies the force-window profile when force-window is set (i.e. when starting mpv from the .desktop file)",
"os": [],
"stars": 3,
"sharedrepo": true
},
"github:haasn/gentoo-conf/fpsadjust.lua": {
"name": "fpsadjust",
"url": "https://github.com/haasn/gentoo-conf/blob/xor/home/nand/.mpv/scripts/avail/fpsadjust.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/haasn/gentoo-conf",
"install_dir": "github/haasn/gentoo-conf",
"scriptfiles": [
"home/nand/.mpv/scripts/avail/fpsadjust.lua"
],
"desc": "Automatically adjust playback speed to synchronize the video to the display if possible (eg. by adjusting 23.976 Hz to 24 Hz for better compatibility with a 60 Hz display).\nObsolete: mpv now has a native display-sync option.",
"os": [],
"stars": 65,
"sharedrepo": true
},
"github:dya-tel/mpv-scripts/blackout": {
"name": "blackout",
"url": "https://github.com/dya-tel/mpv-scripts",
"type": "lua script",
"receiving_url": "https://github.com/dya-tel/mpv-scripts",
"install_dir": "github/dya-tel/mpv-scripts",
"desc": "A fast crossplatfrom boss-key, but without window minimization (and possible problems with some VO drivers).",
"os": [],
"stars": 12,
"sharedrepo": false
},
"github:dya-tel/mpv-scripts/fuzzydir": {
"name": "fuzzydir",
"url": "https://github.com/dya-tel/mpv-scripts",
"type": "lua script",
"receiving_url": "https://github.com/dya-tel/mpv-scripts",
"install_dir": "github/dya-tel/mpv-scripts",
"desc": "Allows using wildcards for sub-file-paths and audio-file-paths.",
"os": [],
"stars": 12,
"sharedrepo": false
},
"github:jgreco/mpv-scripts/gallery-dl_hook.lua": {
"name": "gallery-dl_hook",
"url": "https://github.com/jgreco/mpv-scripts/blob/master/gallery-dl_hook.lua",
"type": "lua script",
"install": "git",
"receiving_url": "https://github.com/jgreco/mpv-scripts",
"install_dir": "github/jgreco/mpv-scripts",
"scriptfiles": [
"gallery-dl_hook.lua"
],
"install-notes": "to use, prepend the gallery url with: gallery-dl://",
"desc": "Load online image galleries (imgur, etc) as playlists using gallery-dl.",
"os": [],
"stars": 13,
"sharedrepo": true
},
"github:CounterPillow/mpv-gpufreq": {
"name": "gpufreq",
"url": "https://github.com/CounterPillow/mpv-gpufreq",
"type": "lua script",
"receiving_url": "https://github.com/CounterPillow/mpv-gpufreq",
"install_dir": "github/CounterPillow/mpv-gpufreq",
"desc": "Show current and maximum GPU frequencies for GPUs using the DRM stack on Linux.",
"os": [
"Linux"
],
"stars": 1,
"sharedrepo": false
},
"github:po5/groupwatch_sync": {
"name": "groupwatch_sync",
"url": "https://github.com/po5/groupwatch_sync",
"type": "lua script",
"receiving_url": "https://github.com/po5/groupwatch_sync",
"install_dir": "github/po5/groupwatch_sync",
"desc": "Quickly get back in sync with a group watch by adjusting playback speed.",
"os": [],
"stars": 2,
"sharedrepo": false
},
"github:detuur/mpv-scripts/boss-key": {
"name": "boss-key",
"url": "https://github.com/detuur/mpv-scripts",
"type": "lua script",
"receiving_url": "https://github.com/detuur/mpv-scripts",
"install_dir": "github/detuur/mpv-scripts",
"desc": "Minimise and pause video at the same time. Windows/Linux. Eliminated the time lag in previous versions.",
"os": [
"Linux",
"Windows"
],
"stars": 12,
"sharedrepo": false
},
"github:detuur/mpv-scripts/histogram": {
"name": "histogram",
"url": "https://github.com/detuur/mpv-scripts",
"type": "lua script",
"receiving_url": "https://github.com/detuur/mpv-scripts",
"install_dir": "github/detuur/mpv-scripts",
"desc": "Exposes a configurable way to overlay ffmpeg histograms in mpv. There is a substantial amount of config available.",
"os": [],
"stars": 12,
"sharedrepo": false
},
"gist:ntasos/d1d846abd7d25e4e83a78d22ee067a22": {
"name": "KDialog-open-files",
"url": "https://gist.github.com/ntasos/d1d846abd7d25e4e83a78d22ee067a22",
"type": "lua script",
"desc": "Use KDE's KDialog to add files to playlist, subtitles to playing video or open URLs.",
"os": [],
"stars": 6,
"sharedrepo": false
},
"github:occivink/mpv-image-viewer/drag-to-pan": {
"name": "drag-to-pan",
"url": "https://github.com/occivink/mpv-image-viewer",
"type": "lua script",
"receiving_url": "https://github.com/occivink/mpv-image-viewer",
"install_dir": "github/occivink/mpv-image-viewer",
"desc": "Pan the current video or image with the cursor.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:occivink/mpv-image-viewer/image-viewer": {
"name": "image-viewer",
"url": "https://github.com/occivink/mpv-image-viewer",
"type": "lua script",
"receiving_url": "https://github.com/occivink/mpv-image-viewer",
"install_dir": "github/occivink/mpv-image-viewer",
"desc": "Configurations, scripts and tips for using mpv as an image viewer.",
"os": [],
"stars": 79,
"sharedrepo": false
},
"github:mosquito-byte/mpv-interactive-video": {
"name": "interactive-video",
"url": "https://github.com/mosquito-byte/mpv-interactive-video",
"type": "lua script",
"receiving_url": "https://github.com/mosquito-byte/mpv-interactive-video",
"install_dir": "github/mosquito-byte/mpv-interactive-video",
"desc": "Script for watching interactive videos (such as Netflix's Black Mirror: Bandersnatch).",
"os": [],
"stars": 10,
"sharedrepo": false
},
"github:oltodosel/interSubs": {
"name": "interSubs",
"url": "https://github.com/oltodosel/interSubs",
"type": "lua script",
"receiving_url": "https://github.com/oltodosel/interSubs",
"install_dir": "github/oltodosel/interSubs",
"desc": "Interactive subtitles. Instantly translate selected word/sentence. Works on Linux, macOS.",
"os": [
"Linux",
"Mac"
],
"stars": 83,
"sharedrepo": false
},
"github:l29ah/w3crapcli/mpv-lastfm.lua": {
"name": "last.fm scrobbler",
"url": "https://github.com/l29ah/w3crapcli/blob/master/last.fm/mpv-lastfm.lua",
"type": "lua script",
"install": "manual",
"receiving_url": "https://github.com/l29ah/w3crapcli",
"install_dir": "github/l29ah/w3crapcli",
"scriptfiles": [
"last.fm/mpv-lastfm.lua"
],