Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bmx doc / code references to RDD 6 XML creator app #61

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions meta/rdd6_xml_creator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

The [SMPTE RDD 6](https://ieeexplore.ieee.org/document/7290141) (Dolby E Audio Metadata) XML Creator is a basic HTML web page application that creates an XML file suitable for `bmxtranswrap` to embed a static RDD 6 serial bitstream in an MXF file.

Copy the [index.html](./index.html) and supporting directories ([css](./css) and [js](./js)) to a local file system, or use a clone of this Git repository.
The [RDD 6 XML Creator](https://bbc.github.io/bmx/meta/rdd6_xml_creator/) can be found online in github.io. It can also be run locally by coping the [index.html](./index.html) and supporting directories ([css](./css) and [js](./js)) to a local file system, or by using a clone of this Git repository.

Open `index.html` in a web browser and fill-in the RDD 6 metadata. Select "Save XML" to export to a local file.
Open [RDD 6 XML Creator](https://bbc.github.io/bmx/meta/rdd6_xml_creator/) or `index.html` in a web browser and fill-in the RDD 6 metadata. Select "Save XML" to export to a local file.

>The file name includes a hash of the file contents (`var filename = "dpp_rdd6_" + hash_djb2(rdd6_xml) + ".xml"`) and therefore files will have a different name if the contents are different.

Expand Down
3 changes: 3 additions & 0 deletions meta/rdd6_xml_creator/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
width:auto;
}

.doc-references {
font-size: small;
}
8 changes: 6 additions & 2 deletions meta/rdd6_xml_creator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->

<title>RDD 6 XML Creator</title>
<title>bmx RDD 6 XML Creator</title>

<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
Expand All @@ -17,7 +17,11 @@
<div class="container">

<div class="page-header">
<h1>RDD 6 XML Creator</h1>
<h1><a href="https://github.com/bbc/bmx">bmx</a> RDD 6 XML Creator</h1>
<div class="doc-references">The <a href="https://github.com/bbc/bmx/blob/main/meta/rdd6/rdd6.xsd">RDD 6 XML Schema</a>
and <a href="https://github.com/bbc/bmx/tree/main/meta/rdd6_xml_creator">documentation</a>
can be found in <a href="https://github.com/bbc/bmx">bmx</a>.
</div>
</div>

<div class="row">
Expand Down