We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running dotnet FFMP.dll --convert -d .\Vids\ --threads 4 --output-format ".\New\{{name}}_audio.mkv" -- -c:v copy -c:a libopus -b:a 160k,
dotnet FFMP.dll --convert -d .\Vids\ --threads 4 --output-format ".\New\{{name}}_audio.mkv" -- -c:v copy -c:a libopus -b:a 160k
I'd expect FFMP to create a new directory "New" next to "Vids" to which all files are written. Instead, the actual file structure looks like this:
Vids<video name>\New{{name}}_audio.mkv
The text was updated successfully, but these errors were encountered:
Works as expected on Linux, so it seems to be Windows exclusive
Sorry, something went wrong.
Issue seems indeed to be related to windows. macOS works fine as well. Maybe I have to implement better escaping for paths on windows.
Turns out, this is not an actual issue, since --output-format was removed in PRE, closing this.
massimo-rnd
No branches or pull requests
When running
dotnet FFMP.dll --convert -d .\Vids\ --threads 4 --output-format ".\New\{{name}}_audio.mkv" -- -c:v copy -c:a libopus -b:a 160k
,I'd expect FFMP to create a new directory "New" next to "Vids" to which all files are written. Instead, the actual file structure looks like this:
Vids<video name>\New{{name}}_audio.mkv
The text was updated successfully, but these errors were encountered: