mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
Update npm
This commit is contained in:
parent
8341712d58
commit
1bd85100b9
5320 changed files with 58396 additions and 344722 deletions
11
node_modules/mux.js/CHANGELOG.md
generated
vendored
11
node_modules/mux.js/CHANGELOG.md
generated
vendored
|
@ -1,3 +1,14 @@
|
|||
<a name="7.0.3"></a>
|
||||
## [7.0.3](https://github.com/videojs/mux.js/compare/v7.0.2...v7.0.3) (2024-03-12)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 608 caption out of bound rows ([#442](https://github.com/videojs/mux.js/issues/442)) ([37ec801](https://github.com/videojs/mux.js/commit/37ec801))
|
||||
|
||||
### Chores
|
||||
|
||||
* change code example transmuxer event listeners ([#438](https://github.com/videojs/mux.js/issues/438)) ([2d61f49](https://github.com/videojs/mux.js/commit/2d61f49))
|
||||
|
||||
<a name="7.0.2"></a>
|
||||
## [7.0.2](https://github.com/videojs/mux.js/compare/v7.0.1...v7.0.2) (2023-11-27)
|
||||
|
||||
|
|
5
node_modules/mux.js/README.md
generated
vendored
5
node_modules/mux.js/README.md
generated
vendored
|
@ -283,6 +283,8 @@ Here we put all of this together in a very basic example player.
|
|||
data.set(segment.data, segment.initSegment.byteLength);
|
||||
console.log(muxjs.mp4.tools.inspect(data));
|
||||
sourceBuffer.appendBuffer(data);
|
||||
// reset the 'data' event listener to just append (moof/mdat) boxes to the Source Buffer
|
||||
transmuxer.off('data');
|
||||
})
|
||||
|
||||
fetch(segments.shift()).then((response)=>{
|
||||
|
@ -294,10 +296,9 @@ Here we put all of this together in a very basic example player.
|
|||
}
|
||||
|
||||
function appendNextSegment(){
|
||||
// reset the 'data' event listener to just append (moof/mdat) boxes to the Source Buffer
|
||||
transmuxer.off('data');
|
||||
transmuxer.on('data', (segment) =>{
|
||||
sourceBuffer.appendBuffer(new Uint8Array(segment.data));
|
||||
transmuxer.off('data');
|
||||
})
|
||||
|
||||
if (segments.length == 0){
|
||||
|
|
6
node_modules/mux.js/cjs/m2ts/caption-stream.js
generated
vendored
6
node_modules/mux.js/cjs/m2ts/caption-stream.js
generated
vendored
|
@ -1549,9 +1549,11 @@ var Cea608Stream = function Cea608Stream(field, dataChannel) {
|
|||
}
|
||||
|
||||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
} // Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
|
||||
if (row !== this.row_) {
|
||||
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
8
node_modules/mux.js/dist/mux-flv.js
generated
vendored
8
node_modules/mux.js/dist/mux-flv.js
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/*! @name mux.js @version 7.0.2 @license Apache-2.0 */
|
||||
/*! @name mux.js @version 7.0.3 @license Apache-2.0 */
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
typeof define === 'function' && define.amd ? define(factory) :
|
||||
|
@ -2246,9 +2246,11 @@
|
|||
}
|
||||
|
||||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
} // Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
|
||||
if (row !== this.row_) {
|
||||
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
4
node_modules/mux.js/dist/mux-flv.min.js
generated
vendored
4
node_modules/mux.js/dist/mux-flv.min.js
generated
vendored
File diff suppressed because one or more lines are too long
8
node_modules/mux.js/dist/mux-mp4.js
generated
vendored
8
node_modules/mux.js/dist/mux-mp4.js
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/*! @name mux.js @version 7.0.2 @license Apache-2.0 */
|
||||
/*! @name mux.js @version 7.0.3 @license Apache-2.0 */
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('global/window')) :
|
||||
typeof define === 'function' && define.amd ? define(['global/window'], factory) :
|
||||
|
@ -4178,9 +4178,11 @@
|
|||
}
|
||||
|
||||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
} // Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
|
||||
if (row !== this.row_) {
|
||||
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
4
node_modules/mux.js/dist/mux-mp4.min.js
generated
vendored
4
node_modules/mux.js/dist/mux-mp4.min.js
generated
vendored
File diff suppressed because one or more lines are too long
8
node_modules/mux.js/dist/mux.js
generated
vendored
8
node_modules/mux.js/dist/mux.js
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/*! @name mux.js @version 7.0.2 @license Apache-2.0 */
|
||||
/*! @name mux.js @version 7.0.3 @license Apache-2.0 */
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('global/window')) :
|
||||
typeof define === 'function' && define.amd ? define(['global/window'], factory) :
|
||||
|
@ -5039,9 +5039,11 @@
|
|||
}
|
||||
|
||||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
} // Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
|
||||
if (row !== this.row_) {
|
||||
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
4
node_modules/mux.js/dist/mux.min.js
generated
vendored
4
node_modules/mux.js/dist/mux.min.js
generated
vendored
File diff suppressed because one or more lines are too long
6
node_modules/mux.js/es/m2ts/caption-stream.js
generated
vendored
6
node_modules/mux.js/es/m2ts/caption-stream.js
generated
vendored
|
@ -1549,9 +1549,11 @@ var Cea608Stream = function Cea608Stream(field, dataChannel) {
|
|||
}
|
||||
|
||||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
} // Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
|
||||
if (row !== this.row_) {
|
||||
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
4
node_modules/mux.js/lib/m2ts/caption-stream.js
generated
vendored
4
node_modules/mux.js/lib/m2ts/caption-stream.js
generated
vendored
|
@ -1433,7 +1433,9 @@ var Cea608Stream = function(field, dataChannel) {
|
|||
this.setRollUp(packet.pts, row);
|
||||
}
|
||||
|
||||
if (row !== this.row_) {
|
||||
// Ensure the row is between 0 and 14, otherwise use the most
|
||||
// recent or default row.
|
||||
if (row !== this.row_ && row >= 0 && row <= 14) {
|
||||
// formatting is only persistent for current row
|
||||
this.clearFormatting(packet.pts);
|
||||
this.row_ = row;
|
||||
|
|
2
node_modules/mux.js/package.json
generated
vendored
2
node_modules/mux.js/package.json
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mux.js",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"description": "A collection of lightweight utilities for inspecting and manipulating video container formats.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue