jmuxer 2.1.0 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="AgentMigrationStateService">
4
+ <option name="migrationStatus" value="COMPLETED" />
5
+ </component>
6
+ </project>
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- [![Build Status](https://travis-ci.org/samirkumardas/jmuxer.svg?branch=master)](https://travis-ci.org/samirkumardas/jmuxer)
2
- ![Maintenance](https://img.shields.io/maintenance/yes/2025.svg)
1
+ [![pages-build-deployment](https://github.com/samirkumardas/jmuxer/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/samirkumardas/jmuxer/actions/workflows/pages/pages-build-deployment)
2
+ ![Maintenance](https://img.shields.io/maintenance/yes/2026.svg)
3
3
  ![license](https://img.shields.io/github/license/mashape/apistatus.svg)
4
4
 
5
5
  jMuxer
@@ -8,9 +8,9 @@ jMuxer - a simple javascript mp4 muxer that works in both browser and node envir
8
8
 
9
9
  Live Demo
10
10
  -------
11
- [Click here](https://samirkumardas.github.io/jmuxer/) to view a working demo
11
+ [Click here](https://webstream-labs.github.io/jmuxer/) to view a working demo
12
12
 
13
- [Click here](https://samirkumardas.github.io/jmuxer/h264_player.html) to play a h264 file online
13
+ [Click here](https://webstream-labs.github.io/jmuxer/h264_player.html) to play a h264 file online
14
14
 
15
15
  How to use?
16
16
  -------
@@ -96,6 +96,8 @@ Media dataObject may have following properties:
96
96
 
97
97
  *compositionTimeOffset* - Composition time offset, difference between decode time and presentation time of frames, in milliseconds. This is only used for video and usually needed when B-frames are present in video stream.
98
98
 
99
+ *isLastVideoFrameComplete* - true/false. whether the last frame in the buffer provided is complete and can be immediatly pushed to the remuxer. Frame in this context refers to a H264/H265 frame, which might or might not correspond to a frame of video. This flag allows to remove a 1 frame delay which is naturally present because jMuxer doesn't know if the data it received is complete unless the next NALU header is received; use this only if you are sure of it, otherwise issues may arrise. Defaults to false.
100
+
99
101
  **ES6 Example:**
100
102
 
101
103
  Install module through `npm`
@@ -213,9 +215,6 @@ A distribution version is available inside *dist* directory. However, if you nee
213
215
  3. npm install
214
216
  4. npm run build OR npm run pro
215
217
 
216
- Support
217
- -----------
218
- If the project helps you, [buy me a cup of coffee!](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=USD&business=samir@ascendtechnologies.net&item_name=donation%20for%20jMuxer)
219
218
 
220
219
  Credits
221
220
  -----------