You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I've come across this error whenever using any of the three audio cutting functions:
'Error parsing commandline option start: option requires parameter'
With no programming knowledge and extensive Googling, I believe I've tracked the problem: mpv's syntax doesn't support the old format anymore. I changed the code from
Recently I've come across this error whenever using any of the three audio cutting functions:
'Error parsing commandline option start: option requires parameter'
With no programming knowledge and extensive Googling, I believe I've tracked the problem: mpv's syntax doesn't support the old format anymore. I changed the code from
args = [ mpv_path, video_path, "--start", start_timestamp.toString(), "--end", end_timestamp.toString(), "--aid", aid.toString(), "--video=no", "--o=" + filename ]
to
args = [ mpv_path, video_path, "--start=" + start_timestamp.toString(), "--end=" + end_timestamp.toString(), "--aid=" + aid.toString(), "--video=no", "--o=" + filename ]
and it seemingly works the same as before I started getting this error.
The text was updated successfully, but these errors were encountered: