Chapter Update Examples

Chapter titles and chapter artwork can be added or changed, however you must send all chapters on redelivery, not just the ones being updated. Two examples appear below: one where the previously-delivered artwork was incorrect, and the other that had a missing title locale.

Note: You can also send chapters with an asset-only update. See Film Asset-Only Update with Chapters.

In the following example, the second chapter was originally sent with an incorrect timecode for the artwork. Even though the error affects only one chapter, all chapters must be redelivered. Portions of the XML have been omitted for the sake of brevity.

<?xml version="1.0" encoding="UTF-8"?><package xmlns="http://apple.com/itunes/importer" version="film5.3"> <provider>Paramount</provider> <language>en-US</language> <video> . . . <!-- The second chapter has an updated artwork timecode; however, all chapters must be redelivered, not just the chapter with the updated artwork timecode. --> <chapters> <timecode_format>24/999 1000/nonDrop</timecode_format> <chapter> <start_time>00:00:00:00</start_time> <title locale="en-US">Forrest's Story Begins</title><!-- Chapter image can be provided in an artwork file or specified by a timecode. This chapter image is provided in an artwork file. --> <artwork_file> <file_name>chapter01.jpg</file_name> <checksum type="md5">ed93d0f3224a353a4cc8d4175d645130</checksum> <size>6591649</size> </artwork_file> </chapter> <chapter> <start_time>00:07:45:23</start_time> <title locale="en-US">Football at Alabama</title><!-- Chapter image can be provided in an artwork file or specified by a timecode. This chapter image is specified by a timecode. --> <artwork_time>00:07:46:14</artwork_time> </chapter> <!-- Remaining chapters here. --> </chapters> . . . </video></package>

In the following multiple language example, the second chapter was missing a locale for the title. Even though the error affects only one chapter, all chapters must be redelivered. Portions of the XML have been omitted for the sake of brevity.

<?xml version="1.0" encoding="UTF-8"?><package xmlns="http://apple.com/itunes/importer" version="film5.3"> <provider>Paramount</provider> <language>en-US</language> <video> . . . <!-- The second chapter was missing a French title; however, all chapters must be redelivered, not just the chapter with the missing locale. --> <chapters> <timecode_format>24/999 1000/nonDrop</timecode_format> <chapter> <start_time>00:00:00:00</start_time> <titles> <title locale="en-US">Forrest's Story Begins</title> <title locale="de-DE">Die Geschichte von Forrest beginnt</title> <title locale="fr-FR">L'Histoire de Forest Commence</title> </titles><!-- Chapter image can be provided in an artwork file or specified by a timecode. This chapter image is provided in an artwork file. --> <artwork_file> <file_name>chapter01.jpg</file_name> <checksum type="md5">ed93d0f3224a353a4cc8d4175d645130</checksum> <size>6748922</size> </artwork_file> </chapter> <chapter> <start_time>00:07:45:23</start_time> <titles> <title locale="en-US">Football at Alabama</title> <title locale="de-DE">Fußball an Alabama</title> <title locale="fr-FR">Football en Alabama</title> </titles><!-- Chapter image can be provided in an artwork file or specified by a timecode. This chapter image is specified by a timecode. --> <artwork_time>00:07:45:23</artwork_time> </chapter> <!-- Additional chapters here. --> </chapters> . . . </video></package>