-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
fix: fixes from single ffprobe command #57
Conversation
@@ -225,6 +232,14 @@ func getAudioCodec(inputFilePath: String) -> AudioCodec { | |||
return convertToAudioCodec(inputCodec: codec) | |||
} | |||
|
|||
func getVideoCodecTag(inputFilePath: String) -> String { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note this adds another async ffprobe command, but we will be removing all these extra sync ffprobe commands once #54 is merged
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, with double check of .gitignore
.gitignore
Outdated
Converter.xcworkspace/xcuserdata/francescovirga.xcuserdatad/UserInterfaceState.xcuserstate | ||
Converter.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that we can actually just add xcuserdata/
as whole, per line 41 of the suggested gitignore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything in this directory is specific to our own Xcode setups
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kk sounds good!
Adds the video conversion fixes from #54 to main, since our man Taner is salty and we don't know when https://github.com/tanersener/ffmpeg-kit/issues/571 will be fixed 😉