-
Notifications
You must be signed in to change notification settings - Fork 53
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
Concat already recorded WebM files #9
Comments
@surma Is that something we could do here? |
Thx, the idea was more to do it in the browser from a wasm build of libVPX, as I currently repurposed ts-ebml to do the job :-) |
@sebavan That is the ultimate idea with What found:
And probably some notes that are not recollecting right now.
The only issue with using the linked Native Messaging approach is setup time and not being able to use the code at any URL other than Am willing to help with the procedure ( |
@sebavan If you are interested am relatively certain the What approach are you currently using to concatenate or merge WebM and Matroska files? |
Can you post a link to the code? |
Unfortunately it is not OSS at the moment but basically I simply change the timestamp of each chunk to add the previous concatenated duration. I hope those kind of simple edition tools will make it into a richer js api. |
Had the same concept. Though am not sure how to achieve that goal. For audio it is possible to use Web Audio API For encoded images within a video AFAIK there is not an existing method in JavaScript to extract all images from a file without playing the media. See also https://discourse.wicg.io/t/webcodecs-proposal/3662/15. |
Re
see https://libwebpjs.appspot.com/vp8/webm-javascript-decoder/. FWIW Improved the implementation of
creating the missing adjacent track then piping through
note the order of indexes 1 and 3 are opposite from the remainding indexes this is the corresponding map
the resulting file https://github.com/guest271314/native-messaging-mkvmerge/blob/master/native-messaging-mkvmerge-vp8.webm?raw=true, plnkr https://plnkr.co/edit/8J61Rw?p=preview. |
Hi @sebavan can you provide more details or a sample snippet. I am trying to trim the first few seconds of the video obtained from the Chrome Media API. I am trying to understand How the clusters element are structured and how will the resultant metadata looks like. |
Hello,
It is definitely more a question than an issue :-)
I am wondering if it would be possible to use the same kind of setup to stitch and trim webm files together ?
I was trying to look into ffmpeg alternatives.
Thanks in advance
The text was updated successfully, but these errors were encountered: