-
-
Notifications
You must be signed in to change notification settings - Fork 855
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
video: Add support for playing F4V (MP4) files #14655
base: master
Are you sure you want to change the base?
Conversation
println!("F4V"); | ||
|
||
let mut cursor = slice.as_cursor(); | ||
let context = mp4parse::read_mp4(&mut cursor).unwrap(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is still a draft, so I don't know if it's supposed to be panic-free yet, but on http://new.weedtowonder.org/, when click the play button on the video, this caused the panic :
panicked at core/src/streams.rs:850:63:
called `Result::unwrap()` on an `Err` value: InvalidData(CheckParserStateErr)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Every video on that site has that same result.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this on desktop for you? Or with the extension?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aand now the site seems to have changed...?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On web after building the extension, and I changed the site to add https. It's now https://new.weedtowonder.org/.
78c9928
to
0bf83d7
Compare
Just found a cool web based MP4 dissector tool: https://gpac.github.io/mp4box.js/test/filereader.html |
Also note, this time testing with the attached files and a directory named mp4-1200 containing the files from https://github.com/danielhjacobs/danielhjacobs.github.io/tree/main/mp4-1200, I get this error when opening anastasia2017-teacher.swf with a Desktop app built from this PR and clicking one of the videos: panicked at core/src/streams.rs:1384:26:
called `Result::unwrap()` on an `Err` value: DecoderError(DecoderError(MiddleOfBitstream)) |
Replacing https://github.com/ruffle-rs/ruffle/pull/14655/files#diff-894b995744e59b9d8803f92eb6b185191b9018cd571feeaeb4a7c53dbd9a0bc5R1380-R1385 with this removes the panic: match context.video.decode_video_stream_frame(
video_handle,
encoded_frame,
context.renderer,
) {
Ok(bitmap) => {
write.last_decoded_bitmap = Some(bitmap);
}
Err(e) => {
tracing::error!(
"Decoding video frame {} failed: {}",
frame_id.unwrap(),
e
);
return;
}
} But that doesn't fix the underlying issue, as then there is the message |
799995c
to
cd79037
Compare
Similar to the somewhat related #14654, this is in a really early stage.
TODOs:
mp4
would be a better fit thanmp4parse
mp4parse
, which is made for a really similar use case in Firefox.CodecType
andextra_data
missing fromavc1
track pdeljanov/Symphonia#271