Skip to content

Commit

Permalink
Prepare for v0.16.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed May 9, 2024
1 parent 154030b commit f2ff7c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.16.2] - Unreleased
## [0.16.2] - 2024-05-09

- Fix bug in filename handling when using the ffmpeg concatenation filter. Filenames were not
properly escaped when passed as arguments to the `filter_complex` commandline argument.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dash-mpd"
version = "0.16.1"
version = "0.16.2"
authors = ["Eric Marsden <eric.marsden@risk-engineering.org>"]
description = "Parse, serialize, download an MPD manifest for MPEG-DASH or WebM-DASH media streaming"
readme = "README.md"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ default configuration (using an external application as a subprocess).
standard SRT format using the MP4Box commandline utility (from the [GPAC](https://gpac.wp.imt.fr/)
project), if it is installed. STPP subtitles (which according to the DASH specifications should be
formatted as EBU-TT) will be muxed into the output media container as a `subt:stpp` stream using
MP4Box. Note that common media players such as mplayer and VLC don't currently support this
subtitle type; you can try using the GPAC media player (available with `gpac -gui`).
MP4Box (VLC should be able to read these subtitles), and also converted to a separate `.ttml` file
using ffmpeg. If your media players doesn't support STPP/TTML subtitles, you can try using the
GPAC media player (available with `gpac -gui`).

- Support for **decrypting** media streams that use MPEG Common Encryption (cenc) ContentProtection.
This requires either the `mp4decrypt` commandline application from the [Bento4
Expand Down Expand Up @@ -215,14 +216,14 @@ Add to your `Cargo.toml` file:

```toml
[dependencies]
dash-mpd = "0.16.1"
dash-mpd = "0.16.2"
```

If you don’t need the download functionality and wish to reduce code size, use:

```toml
[dependencies]
dash-mpd = { version = "0.16.1", default-features = false }
dash-mpd = { version = "0.16.2", default-features = false }
```

We endeavour to use **semantic versioning** for this crate despite its 0.x version number: a major
Expand Down

0 comments on commit f2ff7c3

Please sign in to comment.