1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00

Update npm

This commit is contained in:
Daniel Neto 2024-04-03 15:54:35 -03:00
parent 8341712d58
commit 1bd85100b9
5320 changed files with 58396 additions and 344722 deletions

11
node_modules/mux.js/CHANGELOG.md generated vendored
View file

@ -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
View file

@ -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){

View file

@ -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;

View file

@ -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;

File diff suppressed because one or more lines are too long

View file

@ -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;

File diff suppressed because one or more lines are too long

8
node_modules/mux.js/dist/mux.js generated vendored
View file

@ -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;

File diff suppressed because one or more lines are too long

View file

@ -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;

View file

@ -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
View file

@ -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",