Skip to main content

A module to parse, analyze and validate MPEG-DASH MPD

Project description

mpd-inspector

Overview

This is a module to parse MPEG-DASH Media Presentation Documents (aka. MPD) from files or URLs, and interpret them This package is built as a fork from the excellent mpd-parser. The main reasons for forking it are:

  1. I needed to change the behaviour to be closer to the MPEG-DASH spec, in particular DASH-IF IOP rules.
  2. I wanted to parse all MPD attributes into native Python types (including for datetimes and durations)
  3. I wanted to be able to expose unparsed elements
  4. I wanted to add a layer of inspection/analysis to make it possible to calculate implicit/derived values (eg. start and duration of periods in multi-period MPD) - in particular again for validation against the DASH-IF Interoperability guidance

Installation

$ python -m pip install mpd-inspector

Usage

Importing

from mpd_parser.parser import Parser

parse from string

with open("path/to/file.mpd", mode="r") as manifest_file:
    mpd_string = manifest_file.read()
    parsed_mpd = Parser.from_string(mpd_string)

parse from file

input_file = "path/to/file.mpd"
mpd = Parser.from_file(input_file)

parse from url

input_url = "https://my-server.com/path/to/stream.mpd"
mpd = Parser.from_url(input_url)

inspect it

mpd_inspector = MPDInspector(mpd)

convert back to string

mpd_as_xml_string = Parser.to_string(parsed_mpd)

Example manifests

Taken from a variety of places

Build locally

poetry build

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpd_inspector-0.7.0.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

mpd_inspector-0.7.0-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file mpd_inspector-0.7.0.tar.gz.

File metadata

  • Download URL: mpd_inspector-0.7.0.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.3.0

File hashes

Hashes for mpd_inspector-0.7.0.tar.gz
Algorithm Hash digest
SHA256 0a33f7db97088d9908425252a89fcecd44b1d0745c4b4597129164c001f5303d
MD5 88cf0a033dbd727853fe212653604520
BLAKE2b-256 c8111977cba8e600ce0f037b4016353828907b2bd3e51d4201708a3d39ed42c3

See more details on using hashes here.

Provenance

File details

Details for the file mpd_inspector-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: mpd_inspector-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.3.0

File hashes

Hashes for mpd_inspector-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bb0001f7301a8e28d9600ac43d809c297efd6762641a21f474d73dd5527877cc
MD5 da2d41e3bb209f42c37effd67ac9f2c0
BLAKE2b-256 304c9aecaf822f287fa483434579fbc4c1b833072a78bce639331f492d80ff62

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page