-
Notifications
You must be signed in to change notification settings - Fork 751
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
H265 Support? #386
Comments
sample code?
|
recorder = new FFmpegFrameRecorder(ffmpeg_link, imageWidth, imageHeight, 1); It worked when H264, but error H265 |
Try to remove the call to setVideoCodecName().
|
Could you also copy/paste the error message that you get in the log?
|
@saudet as your mind ,I removed setVideoCodecName(). |
Check the log, one of those settings do not apply to H.265. The following works: recorder = new FFmpegFrameRecorder("somefile.mp4", 640, 480);
recorder.setVideoCodec(avcodec.AV_CODEC_ID_H265);
recorder.start(); |
avcodec_open2 error -12
The text was updated successfully, but these errors were encountered: