-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Lossless conversion from an image to a video #2322
Comments
Try to increase the quality |
@saudet what attribute(s) can I change to increase the quality, is it the |
Okay, so I just did a comparison between running ffmpeg though javacv and running ffpmeg straight from the command line, the output of the ffmpeg though javacv is worse compared to ffpmeg straight from the command line even though both use the same settings, is there any reason why this is the case? |
You could check the output files with ffprobe to spot the differences |
Also, we can easily accomplish this with the ffmpeg program: |
Well I just check the sizes of those files and I can see the one from ffpmeg command line is 10 times bigger than the other one |
Why can't we achieve the same with ffmpegframerecorder, I thought it is a wrapper around ffmpeg already? |
You just need to do: |
Yeah I tried that already but it didn't fix the issue, look like it has been the issue with the |
I just manage to use FrameRecorder to record the desktop screen in FFV1 with the above setting though. I also have preset as ultrafast as video option. So it's definitely working. Not sure why it didn't work for you. |
I'm trying to convert an image to a video using the following settings:
The result came out is blurry and have different colours compare to the original image. The original image is a JPEG with RGB colour format, its size is about 67KB. May anyone suggest why this is the case? Thanks in advance
The text was updated successfully, but these errors were encountered: