-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to fix docs, add latest, add failing test
- Loading branch information
1 parent
2e67911
commit 5687b08
Showing
7 changed files
with
234 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[Audio Definition Model](https://adm.ebu.io/background/what_is_the_adm.html) including 3D Audio. | ||
|
||
RIFF / WAV / Broadcast Wave Format (BWF) chunks: | ||
- `<chna>` Chunk, Track UIDs of Audio Definition Model | ||
- `<axml>` Chunk, BWF XML Metadata, e.g. for Audio Definition Model ambisonics and elements | ||
|
||
### Examples | ||
Decode ADM configuration from `<chna>` and `<axml>` chunks: | ||
```bash | ||
$ fq -d wav '.chunks[] | select(.id | IN("chna", "axml")) | tovalue' amd-bwf.wav | ||
|
||
# Extract ADM <axml> chunk objects definitions xml content | ||
$ fq -r -d wav '.chunks[] | select(.id | IN("axml")) | .xml | tovalue' amd-bwf.wav | tee axml-content.xml | ||
``` | ||
|
||
### Authors | ||
- [@johnnymarnell](https://johnnymarnell.github.io), original author | ||
|
||
### References | ||
- https://adm.ebu.io/background/what_is_the_adm.html | ||
- https://tech.ebu.ch/publications/tech3285s7 | ||
- https://tech.ebu.ch/publications/tech3285s5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.