This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "samples_save": true, | |
| "samples_format": "png", | |
| "samples_filename_pattern": "", | |
| "save_images_add_number": true, | |
| "grid_save": true, | |
| "grid_format": "png", | |
| "grid_extended_filename": false, | |
| "grid_only_if_multiple": true, | |
| "grid_prevent_empty_spots": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This script solves the issue in this stackoverflow question: | |
| # https://superuser.com/questions/1092246/how-to-prevent-windows-10-from-automatically-adding-keyboard-layouts-i-e-us-ke | |
| # This method adds the en-US layout then removes it, ensuring that the layout is always removed from the taskbar | |
| # I don't have a high enough reputation so I can't post this there, so here is the script: | |
| # define the language to be removed | |
| $LanguageToRemove = "en-US" | |
| # get the current language list | |
| $LangList = Get-WinUserLanguageList |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var timeObserver; | |
| /** seek playback to the given second */ | |
| function seek_to(time) { | |
| mp.set_property_number("time-pos", time); | |
| } | |
| function get_json_path() { | |
| var video_path = mp.get_property("path"); | |
| return video_path.replace(/\.[^.]+$/, ".json"); |
NewerOlder