Video encoding format documentation #9
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: birdulon/RhythmGame#9
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Need to record encoding settings somewhere, I can never find them when I need to do new ones. Godot is rather impoverished on format support (VP8/VP9/Theora) and chokes hard on good (slow) profiles. The GDNative ffmpeg plugin isn't a silver bullet either, at least the old version wasn't.
Found my old script, unfortunately it passed bitrate as an argument so that will need to be determined still.
ffmpeg -i "$i" -c:v libvpx -b:v ${bitrate} -deadline realtime -cpu-used 1 "${i%.*}.webm"