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
Love the readme.
Have been testing your code to see my own results and I noticed my file sizes export to about 1.35 MB.
I am not an expert in ffmpeg but I believe your bitrate needs to be multiplied by 8 to approximate what is actually intended.
ffmpeg
e.g.
Proposed solution
bitrate=$(( $(echo "scale=0; $targetSizeKilobytes/ $durationSeconds" | bc) * 8 ))
hopefully this helps :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Love the readme.
Have been testing your code to see my own results and I noticed my file sizes export to about 1.35 MB.
I am not an expert in
ffmpeg
but I believe your bitrate needs to be multiplied by 8 to approximate what is actually intended.e.g.
Proposed solution
hopefully this helps :)
The text was updated successfully, but these errors were encountered: