Created
December 9, 2012 15:03
-
-
Save megawertz/4245483 to your computer and use it in GitHub Desktop.
Tag iTunes Videos as Combined HD-SD
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
# Download and install mp4tags command line utility and add to path | |
# OPTIONAL: Find the video on iTunes and select Copy Link. From the end of the link extract the 9 number video ID. | |
# Tag each movie | |
mp4tags -I 123456789 -H 1 -i movie MOVIE_HD.m4v | |
mp4tags -I 123456789 -H 0 -i movie MOVIE_SD.m4v | |
# Drag into iTunes together and they should be listed as HD-SD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment