Instantly share code, notes, and snippets.
Last active
July 6, 2018 19:31
-
Star
(0)
0
You must be signed in to star a gist -
Fork
(0)
0
You must be signed in to fork a gist
-
Save phishy/3e266f7724c95450971186ce799975fa to your computer and use it in GitHub Desktop.
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
/* 1 */ | |
{ | |
"_id" : "PRORES_1080i25", | |
"set" : [ | |
"prores", | |
"hd", | |
"pal", | |
"25", | |
"1920x1080", | |
"interlaced", | |
"broadcast" | |
] | |
} | |
/* 2 */ | |
{ | |
"_id" : "PRORES_1080i2997", | |
"set" : [ | |
"prores", | |
"hd", | |
"ntsc", | |
"29.97", | |
"1920x1080", | |
"interlaced", | |
"broadcast" | |
] | |
} | |
/* 3 */ | |
{ | |
"_id" : "PRORES_1080i50", | |
"set" : [ | |
"prores", | |
"hd", | |
"pal", | |
"50", | |
"1920x1080", | |
"interlaced", | |
"broadcast" | |
] | |
} | |
/* 4 */ | |
{ | |
"_id" : "PRORES_1080i5994", | |
"set" : [ | |
"prores", | |
"hd", | |
"ntsc", | |
"59.94", | |
"1920x1080", | |
"interlaced", | |
"broadcast" | |
] | |
} | |
/* 5 */ | |
{ | |
"_id" : "h264_1080p", | |
"aliases" : [ | |
"1080P" | |
], | |
"set" : [ | |
"h264", | |
"1920x1080", | |
"online" | |
] | |
} | |
/* 6 */ | |
{ | |
"_id" : "PRORES_1080p2398", | |
"aliases" : [ | |
"2398p1080" | |
], | |
"set" : [ | |
"prores", | |
"hd", | |
"ntsc", | |
"23.98", | |
"1920x1080", | |
"broadcast" | |
] | |
} | |
/* 7 */ | |
{ | |
"_id" : "PRORES_1080p24", | |
"set" : [ | |
"prores", | |
"hd", | |
"24", | |
"1920x1080", | |
"broadcast" | |
] | |
} | |
/* 8 */ | |
{ | |
"_id" : "PRORES_1080p25", | |
"set" : [ | |
"prores", | |
"hd", | |
"pal", | |
"25", | |
"1920x1080", | |
"progressive", | |
"broadcast" | |
] | |
} | |
/* 9 */ | |
{ | |
"_id" : "PRORES_1080p2997", | |
"set" : [ | |
"prores", | |
"hd", | |
"ntsc", | |
"29.97", | |
"1920x1080", | |
"progressive", | |
"broadcast" | |
] | |
} | |
/* 10 */ | |
{ | |
"_id" : "h264_180p", | |
"aliases" : [ | |
"180P" | |
], | |
"set" : [ | |
"h264", | |
"320x180", | |
"online" | |
] | |
} | |
/* 11 */ | |
{ | |
"_id" : "h264_360p", | |
"aliases" : [ | |
"360P" | |
], | |
"set" : [ | |
"h264", | |
"640x360", | |
"online" | |
] | |
} | |
/* 12 */ | |
{ | |
"_id" : "h264_480p", | |
"aliases" : [ | |
"480P" | |
], | |
"set" : [ | |
"h264", | |
"848x480", | |
"online" | |
] | |
} | |
/* 13 */ | |
{ | |
"_id" : "h264_720p", | |
"aliases" : [ | |
"720P" | |
], | |
"set" : [ | |
"h264", | |
"1280x720", | |
"online" | |
] | |
} | |
/* 14 */ | |
{ | |
"_id" : "PRORES_NTSC-16X9", | |
"set" : [ | |
"prores", | |
"29.97", | |
"720x486", | |
"16:9", | |
"broadcast", | |
"ntsc" | |
] | |
} | |
/* 15 */ | |
{ | |
"_id" : "PRORES_NTSC-4X3", | |
"set" : [ | |
"prores", | |
"29.97", | |
"720x486", | |
"4:3", | |
"broadcast", | |
"ntsc" | |
] | |
} | |
/* 16 */ | |
{ | |
"_id" : "PRORES_PAL-16X9", | |
"set" : [ | |
"prores", | |
"25", | |
"720x576", | |
"16:9", | |
"broadcast", | |
"pal" | |
] | |
} | |
/* 17 */ | |
{ | |
"_id" : "PRORES_PAL-4X3", | |
"set" : [ | |
"prores", | |
"25", | |
"720x576", | |
"4:3", | |
"broadcast", | |
"pal" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment