Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mediaxml

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mediaxml - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

2

package.json
{
"name": "mediaxml",
"version": "0.5.5",
"version": "0.5.6",
"description": "A general purpose module for working with XML that includes first class support for media manifests like ADI, mRSS, and SCTE-236.",

@@ -5,0 +5,0 @@ "scripts": {

@@ -1073,3 +1073,3 @@ const { AbstractDocument } = require('./document')

if (result) {
return document.constructor.Video.from(document, result)
return document.constructor.VideoDescription.from(document, result)
}

@@ -1081,2 +1081,19 @@

/**
* The audio description for this programme.
* @public
* @accessor
* @type {Array<AudioDescription>}
*/
get audio() {
const { document, node } = this
const result = node.query(':children[name ~> /^audio/i]:first')
if (result) {
return document.constructor.AudioDescription.from(document, result)
}
return null
}
/**
* The rating for this programme.

@@ -1083,0 +1100,0 @@ * @public

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc