I am trying to get fragmented Mp4 files to play using MSE in a TypeScript player. I have the fragmented mp4 files being split into the video and audio portions. I am able to play the video and audio after setting the baseMediaDecodeTimes in the tfdt boxes to zero. The issue is that in order to sync the audio with the video, I need to change its baseMediaDecodeTime to something other than zero. When I do this, however, the video wont play (likely due to the fact that it doesn't have the audio for the first couple of milliseconds since I shifted it). The amount of time without audio would not be noticeable so I want to start playing the video. What can I do?
MSE (Media Source Extensions) player not playing fragment due to baseMediaDecodeTime
88 Views Asked by rickyz At
0
There are 0 best solutions below
Related Questions in TYPESCRIPT
- It doesnt always show all the books on my homepage
- S3 integration testing
- Make some of the type's field optional
- storybook 7 does not recognize module declarations
- Page in React only renders elements after refreshing
- Error Inserting into Supabase: Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member
- vscode, debug angular, first time, doesn't debug, 2nd time stops at main.js then it's ok
- Get remote MKV file metadata using nodejs
- Vue/TailwindCSS - Content is behind Sidebar
- TypeScript Error only on big type only when assigned to a variable
- pnpm firebase app "Could not find a declaration file for module 'mime'"
- TypeScript: Type checking while parsing an arbitrary JSON that is typed/
- Issue with BBCode image tag on React
- Typescript: returnType based on value 'single' prop
- Failed to resolve import, but the path is valid, and detected as such by VSCode
Related Questions in VIDEO-PLAYER
- how to add video player in mvc4 which supports .wmv, .3gp, .avi and different other formats
- Create Wistia model in Ruby on Rails
- Video doesn't load on iPhone 5, iOS 6
- how to put angularjs template tag {{myitem}} in video player javascript
- Resize screen during video playng
- How to play my own server videos with vimeo player without uploading?
- How to dynamically change player id and key?
- Using Phonon in Qt5 - a simple video player
- How to record a video Only 2 min in titanium
- Does the video asset for a Dreamweaver Flash player HAVE to be relative to the page?
- What is the flash video player PayPal uses?
- Streaming video from nodejs to an open player
- how to reload video in axVLCPlugin21 using C#
- make a playlist of youtube videos in video-js
- How to play local video in HTML5 using video path
Related Questions in MEDIA-SOURCE
- Media Source Extension on Firefox and IE
- Flush & Latency Issue with Fragmented MP4 Creation in FFMPEG
- Video does not play through even if enough content has been appended
- Youtube Blob urls don't work in browsers but in src
- Live-Streaming webcam webm stream (using getUserMedia) by recording chunks with MediaRecorder over WEB API with WebSockets and MediaSource
- Using MediaSource extensions to play a video playlist
- This SourceBuffer has been removed from the parent media source
- How to feed the video source based on time range?
- what's the maxGranularity/minGranularity?
- Getting number of audio channels for an AudioTrack
- Setting up box metadata for MediaSource to work
- currentTime set to different value after loadmetadata event during seek
- How to seek audio with MediaSource and continue playing?
- can't append to sourceBuffer because mediaSource Element (Parent) was removed
- audio/mp4; codecs="mp4a.40.2" not playing in Chrome and Firefox
Related Questions in FMP4
- Can you reuse an init.mp4 file for two separate FMP4 videos if they are encoded to the same specification?
- How to properly decode a partial mp4 video data on js frontend
- In case of Video segment sidx box be included with only I-Frame?
- diffrence between mvhd box timescale and mdhd box timescale in isobmff format
- Muxing steps for Fragmented MP4 into Progressive MP4
- MSE dont play video if mimetype have audio codecs in chrome
- Concatenate fragmented MP4 from HLS/DASH to a single file
- How to request a single ISM smooth stream fragment and parse a single video frame?
- In isobmff library, how to write only moof and mdat (m4v) (MUXING)
- Using isobmff github. Make fmp4 file
- .m3u8 (HEVC, HLS) video won't play while other will
- MSE (Media Source Extensions) player not playing fragment due to baseMediaDecodeTime
- Restartable HLS encoding in ffmpeg
- Player downloads all moof part of a fragment mp4 file before playing
- how to read partial fragmented mp4 from buffer or stdin
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?