this post was submitted on 01 Jan 2024
8 points (100.0% liked)
techsupport
2469 readers
5 users here now
The Lemmy community will help you with your tech problems and questions about anything here. Do not be shy, we will try to help you.
If something works or if you find a solution to your problem let us know it will be greatly apreciated.
Rules: instance rules + stay on topic
Partnered communities:
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I would try adding ffmpeg to path, setting your working directory to the output folder, and running the script from there. If that doesn't work then you probably need to tweak the script.
The script page you linked also gives example syntax of
Did you try modifying the very last argument to something like "c:/your/path/%~nf_new.mkv"?
Thank you, didnt knew that I should put the path there. Ended up with this: for %f in (*.opus) do ffmpeg -i "%f" -b:a 192k -ar 44100 "E:\MUZICA\Music\miscmp3\%~nf_new.mp3"
Did that work or are you missing a backslash after "miscmp3"?
It was a typo, I put a backslash there like 40min ago(so it worked) but it seems like it didnt edit... Weird
Try clicking view source, it shows it
I don't know the markup language for Lemmy but it might be treating it like an escape character. In any case, I hope your ffmpeg project is working!