-
Notifications
You must be signed in to change notification settings - Fork 115
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
PAL8 video decoding #143
Comments
Workaround:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a set of SMK files with PAL8 pixel format.
ffmpeg command line utility successfully converts it to MP4/h264 and I easily play this MP4 files in java using humble or xuggler.
I'd like to play these files from java directly without use of ffmpeg CLI, but both xuggler and humble fails (to play or transcode from my SMK files) with very similar error (it refuses to convert PAL8 to BGR)
Xuggler:
Humble:
I see, they both try to convert format in Java code and there is no converter implemented for such pair of formats. But it's a pity, because ffmpeg can do it. Why do not expose a possibility to transcode by ffmpeg natively? (at least just do something like
ffmpeg -i somefile.smk somefile.mp4
command do).file example: https://drive.google.com/file/d/1cH_HxygvIV2FoRwoM7YO_A6SZGHadLSQ/view?usp=sharing
The text was updated successfully, but these errors were encountered: