Skip to content

Unable to load frame N from MediaVideo #1981

Answered by eberrigan
Thomasbush9 asked this question in Help!
Discussion options

You must be logged in to vote

Hi @Thomasbush9,

Please let us know your installation method / environment info. Also please provide the full error message.

Here are some things you can try:

Verify Video Integrity: Even after re-encoding, the video might still contain corrupted frames. You can check for any errors in the video file using ffmpeg:

ffmpeg -v error -i input.avi -f null - 2>error.log

This command will log any decoding errors to error.log. If there are issues, consider removing or repairing the problematic frames.

Inspect Frame N: It might help to extract frame N directly to see if it can be read:

ffmpeg -i input.avi -vf "select=eq(n\,N)" -vframes 1 frameN.jpg

If this fails, the frame might be corrupted.

Let …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@eberrigan
Comment options

Answer selected by eberrigan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help!
Labels
None yet
2 participants