Video tutorial: https://www.youtube.com/watch?v=YOh_s6LBqto
movies2anki on AnkiWeb: https://ankiweb.net/shared/info/939347702
movies2anki id: 939347702
Add line
args += ["--profile=movies2anki"]
before line
cmd = [mpv_executable] + args + [fullpath] (around line 239)
in player.py file.
Change line
action.setShortcut(QKeySequence("Ctrl+M")) (around line 2016)
to
action.setShortcut(QKeySequence("Ctrl+Alt+M")) (insert desired key combination)
in movies2anki.py file.
Search the entire code of movies2anki for
movies2anki (add-on),
and replace it with Main (or some other name you prefer).
Search the entire code of movies2anki for
== "Main" (There should be a space before the ==! No way to display it on GitHub),
and replace it with
.startswith("Main") (substitute a different name if you prefer).