Skip to content
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

Exception when playing video #39

Closed
adryzz opened this issue Dec 24, 2021 · 1 comment
Closed

Exception when playing video #39

adryzz opened this issue Dec 24, 2021 · 1 comment

Comments

@adryzz
Copy link

adryzz commented Dec 24, 2021

Alright, so i took an H265 10bit anime episode and transcoded it so that it would be easier to play back by my O3DS XL.

ffmpeg -i episode.mkv -c:v scale=400:240, libx264 -preset placebo -t 20 output1.mp4
(scale to 400x240, use H264 preset placebo and only include the first 20 seconds)

But when i try to play it back, the application throws an exception and the console crashes.

(had to zip the dump because github doesnt like .dmp files)
crash_dump_00000023.zip

the video
output1.zip

@Core-2-Extreme
Copy link
Owner

Currently, video player only support yuv420p pixel format so encode your video with -pix_fmt yuv420p.
Your command line would be ffmpeg -i episode.mkv -c:v scale=400:240, libx264 -preset placebo -t 20 -pix_fmt yuv420p output1.mp4

note : O3DS does not have enough power to decode h264 240p video.
If you want to use h264, downscale around 144p or use older codec such as mpeg2video, mpeg1video

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants