mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Bump cloudinary from 1.29.0 to 1.30.0 (#1890)
* Bump cloudinary from 1.29.0 to 1.30.0 Bumps [cloudinary](https://github.com/cloudinary/pycloudinary) from 1.29.0 to 1.30.0. - [Release notes](https://github.com/cloudinary/pycloudinary/releases) - [Changelog](https://github.com/cloudinary/pycloudinary/blob/master/CHANGELOG.md) - [Commits](https://github.com/cloudinary/pycloudinary/compare/1.29.0...1.30.0) --- updated-dependencies: - dependency-name: cloudinary dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update cloudinary==1.30.0 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
7f132439be
commit
6b835226cd
18 changed files with 61 additions and 27 deletions
|
@ -1093,11 +1093,11 @@ var slice = [].slice,
|
|||
*
|
||||
* If the parameter is an object,
|
||||
* @param {(string|Object)} param - the video codec as either a String or a Hash
|
||||
* @return {string} the video codec string in the format codec:profile:level
|
||||
* @return {string} the video codec string in the format codec:profile:level:b_frames
|
||||
* @example
|
||||
* vc_[ :profile : [level]]
|
||||
* vc_[ :profile : [level : [b_frames]]]
|
||||
* or
|
||||
{ codec: 'h264', profile: 'basic', level: '3.1' }
|
||||
{ codec: 'h264', profile: 'basic', level: '3.1', b_frames: false }
|
||||
* @ignore
|
||||
*/
|
||||
|
||||
|
@ -1112,6 +1112,9 @@ var slice = [].slice,
|
|||
video += ":" + param['profile'];
|
||||
if ('level' in param) {
|
||||
video += ":" + param['level'];
|
||||
if ('b_frames' in param && param['b_frames'] === false) {
|
||||
video += ":bframes_no";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue