1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277
|
/*****************************************************************
|
| AP4 - MP4 to HLS File Converter
|
| Copyright 2002-2018 Axiomatic Systems, LLC
|
|
| This file is part of Bento4/AP4 (MP4 Atom Processing Library).
|
| Unless you have obtained Bento4 under a difference license,
| this version of Bento4 is Bento4|GPL.
| Bento4|GPL is free software; you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation; either version 2, or (at your option)
| any later version.
|
| Bento4|GPL is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
|
| You should have received a copy of the GNU General Public License
| along with Bento4|GPL; see the file COPYING. If not, write to the
| Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
| 02111-1307, USA.
|
****************************************************************/
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include "Ap4.h"
#include "Ap4StreamCipher.h"
#include "Ap4Mp4AudioInfo.h"
/*----------------------------------------------------------------------
| constants
+---------------------------------------------------------------------*/
#define BANNER "MP4 To HLS File Converter - Version 1.2\n"\
"(Bento4 Version " AP4_VERSION_STRING ")\n"\
"(c) 2002-2018 Axiomatic Systems, LLC"
/*----------------------------------------------------------------------
| options
+---------------------------------------------------------------------*/
typedef enum {
ENCRYPTION_MODE_NONE,
ENCRYPTION_MODE_AES_128,
ENCRYPTION_MODE_SAMPLE_AES
} EncryptionMode;
typedef enum {
ENCRYPTION_IV_MODE_NONE,
ENCRYPTION_IV_MODE_SEQUENCE,
ENCRYPTION_IV_MODE_RANDOM,
ENCRYPTION_IV_MODE_FPS
} EncryptionIvMode;
typedef enum {
AUDIO_FORMAT_TS,
AUDIO_FORMAT_PACKED
} AudioFormat;
static struct _Options {
const char* input;
bool verbose;
unsigned int hls_version;
unsigned int pmt_pid;
unsigned int audio_pid;
unsigned int video_pid;
int audio_track_id;
int video_track_id;
AudioFormat audio_format;
const char* index_filename;
const char* iframe_index_filename;
bool output_single_file;
bool show_info;
const char* segment_filename_template;
const char* segment_url_template;
unsigned int segment_duration;
unsigned int segment_duration_threshold;
const char* encryption_key_hex;
AP4_UI08 encryption_key[16];
AP4_UI08 encryption_iv[16];
EncryptionMode encryption_mode;
EncryptionIvMode encryption_iv_mode;
const char* encryption_key_uri;
const char* encryption_key_format;
const char* encryption_key_format_versions;
AP4_Array<AP4_String> encryption_key_lines;
AP4_UI64 pcr_offset;
} Options;
static struct _Stats {
AP4_UI64 segments_total_size;
double segments_total_duration;
AP4_UI32 segment_count;
double max_segment_bitrate;
AP4_UI64 iframes_total_size;
AP4_UI32 iframe_count;
double max_iframe_bitrate;
} Stats;
/*----------------------------------------------------------------------
| constants
+---------------------------------------------------------------------*/
static const unsigned int DefaultSegmentDurationThreshold = 15; // milliseconds
const AP4_UI08 AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_AVC = 0xDB;
const AP4_UI08 AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ISO_IEC_13818_7 = 0xCF;
const AP4_UI08 AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ATSC_AC3 = 0xC1;
const AP4_UI08 AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ATSC_EAC3 = 0xC2;
const AP4_UI08 AP4_MPEG2_PRIVATE_DATA_INDICATOR_DESCRIPTOR_TAG = 15;
const AP4_UI08 AP4_MPEG2_REGISTRATION_DESCRIPTOR_TAG = 5;
/*----------------------------------------------------------------------
| PrintUsageAndExit
+---------------------------------------------------------------------*/
static void
PrintUsageAndExit()
{
fprintf(stderr,
BANNER
"\n\nusage: mp42hls [options] <input>\n"
"Options:\n"
" --verbose\n"
" --show-info\n"
" --hls-version <n> (default: 3)\n"
" --pmt-pid <pid>\n"
" PID to use for the PMT (default: 0x100)\n"
" --audio-pid <pid>\n"
" PID to use for audio packets (default: 0x101)\n"
" --video-pid <pid>\n"
" PID to use for video packets (default: 0x102)\n"
" --audio-track-id <n>\n"
" Read audio from track ID <n> (0 means no audio)\n"
" --video-track-id <n>\n"
" Read video from track ID <n> (0 means no video)\n"
" --audio-format <format>\n"
" Format to use for audio-only segments: 'ts' or 'packed' (default: 'ts')\n"
" --segment-duration <n>\n"
" Target segment duration in seconds (default: 6)\n"
" --segment-duration-threshold <t>\n"
" Segment duration threshold in milliseconds (default: 15)\n"
" --pcr-offset <offset> in units of 90kHz (default 10000)\n"
" --index-filename <filename>\n"
" Filename to use for the playlist/index (default: stream.m3u8)\n"
" --segment-filename-template <pattern>\n"
" Filename pattern to use for the segments. Use a printf-style pattern with\n"
" one number field for the segment number, unless using single file mode\n"
" (default: segment-%%d.<ext> for separate segment files, or stream.<ext> for single file)\n"
" --segment-url-template <pattern>\n"
" URL pattern to use for the segments. Use a printf-style pattern with\n"
" one number field for the segment number unless unsing single file mode.\n"
" (may be a relative or absolute URI).\n"
" (default: segment-%%d.<ext> for separate segment files, or stream.<ext> for single file)\n"
" --iframe-index-filename <filename>\n"
" Filename to use for the I-Frame playlist (default: iframes.m3u8 when HLS version >= 4)\n"
" --output-single-file\n"
" Output all the media in a single file instead of separate segment files.\n"
" The segment filename template and segment URL template must be simple strings\n"
" without '%%d' or other printf-style patterns\n"
" --encryption-mode <mode>\n"
" Encryption mode (only used when --encryption-key is specified). AES-128 or SAMPLE-AES (default: AES-128)\n"
" --encryption-key <key>\n"
" Encryption key in hexadecimal (default: no encryption)\n"
" --encryption-iv-mode <mode>\n"
" Encryption IV mode: 'sequence', 'random' or 'fps' (FairPlay Streaming) (default: sequence)\n"
" (when the mode is 'fps', the encryption key must be 32 bytes: 16 bytes for the key\n"
" followed by 16 bytes for the IV).\n"
" --encryption-key-uri <uri>\n"
" Encryption key URI (may be a realtive or absolute URI). (default: key.bin)\n"
" --encryption-key-format <format>\n"
" Encryption key format. (default: 'identity')\n"
" --encryption-key-format-versions <versions>\n"
" Encryption key format versions.\n"
" --encryption-key-line <ext-x-key-line>\n"
" Preformatted encryption key line (only the portion after the #EXT-X-KEY: tag).\n"
" This option can be used multiple times, once for each preformatted key line to be included in the playlist.\n"
" (this option is mutually exclusive with the --encryption-key-uri, --encryption-key-format and --encryption-key-format-versions options)\n"
" (the IV and METHOD parameters will automatically be added, so they must not appear in the <ext-x-key-line> argument)\n"
);
exit(1);
}
/*----------------------------------------------------------------------
| SampleReader
+---------------------------------------------------------------------*/
class SampleReader
{
public:
virtual ~SampleReader() {}
virtual AP4_Result ReadSample(AP4_Sample& sample, AP4_DataBuffer& sample_data) = 0;
};
/*----------------------------------------------------------------------
| TrackSampleReader
+---------------------------------------------------------------------*/
class TrackSampleReader : public SampleReader
{
public:
TrackSampleReader(AP4_Track& track) : m_Track(track), m_SampleIndex(0) {}
AP4_Result ReadSample(AP4_Sample& sample, AP4_DataBuffer& sample_data);
private:
AP4_Track& m_Track;
AP4_Ordinal m_SampleIndex;
};
/*----------------------------------------------------------------------
| TrackSampleReader
+---------------------------------------------------------------------*/
AP4_Result
TrackSampleReader::ReadSample(AP4_Sample& sample, AP4_DataBuffer& sample_data)
{
if (m_SampleIndex >= m_Track.GetSampleCount()) return AP4_ERROR_EOS;
return m_Track.ReadSample(m_SampleIndex++, sample, sample_data);
}
/*----------------------------------------------------------------------
| FragmentedSampleReader
+---------------------------------------------------------------------*/
class FragmentedSampleReader : public SampleReader
{
public:
FragmentedSampleReader(AP4_LinearReader& fragment_reader, AP4_UI32 track_id) :
m_FragmentReader(fragment_reader), m_TrackId(track_id) {
fragment_reader.EnableTrack(track_id);
}
AP4_Result ReadSample(AP4_Sample& sample, AP4_DataBuffer& sample_data);
private:
AP4_LinearReader& m_FragmentReader;
AP4_UI32 m_TrackId;
};
/*----------------------------------------------------------------------
| FragmentedSampleReader
+---------------------------------------------------------------------*/
AP4_Result
FragmentedSampleReader::ReadSample(AP4_Sample& sample, AP4_DataBuffer& sample_data)
{
return m_FragmentReader.ReadNextSample(m_TrackId, sample, sample_data);
}
/*----------------------------------------------------------------------
| OpenOutput
+---------------------------------------------------------------------*/
static AP4_ByteStream*
OpenOutput(const char* filename_pattern, unsigned int segment_number)
{
AP4_ByteStream* output = NULL;
char filename[4096];
sprintf(filename, filename_pattern, segment_number);
AP4_Result result = AP4_FileByteStream::Create(filename, AP4_FileByteStream::STREAM_MODE_WRITE, output);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: cannot open output (%d)\n", result);
return NULL;
}
return output;
}
/*----------------------------------------------------------------------
| PreventStartCodeEmulation
+---------------------------------------------------------------------*/
static void
PreventStartCodeEmulation(const AP4_UI08* payload, AP4_Size payload_size, AP4_DataBuffer& output)
{
output.Reserve(payload_size*2); // more than enough
AP4_Size output_size = 0;
AP4_UI08* buffer = output.UseData();
unsigned int zero_counter = 0;
for (unsigned int i = 0; i < payload_size; i++) {
if (zero_counter == 2) {
if (payload[i] == 0 || payload[i] == 1 || payload[i] == 2 || payload[i] == 3) {
buffer[output_size++] = 3;
zero_counter = 0;
}
}
buffer[output_size++] = payload[i];
if (payload[i] == 0) {
++zero_counter;
} else {
zero_counter = 0;
}
}
output.SetDataSize(output_size);
}
/*----------------------------------------------------------------------
| EncryptingStream
+---------------------------------------------------------------------*/
class EncryptingStream: public AP4_ByteStream {
public:
static AP4_Result Create(const AP4_UI08* key, const AP4_UI08* iv, AP4_ByteStream* output, EncryptingStream*& stream);
virtual AP4_Result ReadPartial(void* , AP4_Size, AP4_Size&) {
return AP4_ERROR_NOT_SUPPORTED;
}
virtual AP4_Result WritePartial(const void* buffer,
AP4_Size bytes_to_write,
AP4_Size& bytes_written) {
AP4_UI08* out = new AP4_UI08[bytes_to_write+16];
AP4_Size out_size = bytes_to_write+16;
AP4_Result result = m_StreamCipher->ProcessBuffer((const AP4_UI08*)buffer,
bytes_to_write,
out,
&out_size);
if (AP4_SUCCEEDED(result)) {
result = m_Output->Write(out, out_size);
bytes_written = bytes_to_write;
m_Size += bytes_to_write;
} else {
bytes_written = 0;
}
delete[] out;
return result;
}
virtual AP4_Result Flush() {
AP4_UI08 trailer[16];
AP4_Size trailer_size = sizeof(trailer);
AP4_Result result = m_StreamCipher->ProcessBuffer(NULL, 0, trailer, &trailer_size, true);
if (AP4_SUCCEEDED(result) && trailer_size) {
m_Output->Write(trailer, trailer_size);
m_Size += 16-(m_Size%16);
}
return AP4_SUCCESS;
}
virtual AP4_Result Seek(AP4_Position) { return AP4_ERROR_NOT_SUPPORTED; }
virtual AP4_Result Tell(AP4_Position& position) { position = m_Size; return AP4_SUCCESS; }
virtual AP4_Result GetSize(AP4_LargeSize& size) { size = m_Size; return AP4_SUCCESS; }
void AddReference() {
++m_ReferenceCount;
}
void Release() {
if (--m_ReferenceCount == 0) {
delete this;
}
}
private:
EncryptingStream(AP4_CbcStreamCipher* stream_cipher, AP4_ByteStream* output):
m_ReferenceCount(1),
m_StreamCipher(stream_cipher),
m_Output(output),
m_Size(0) {
output->AddReference();
}
~EncryptingStream() {
m_Output->Release();
delete m_StreamCipher;
}
unsigned int m_ReferenceCount;
AP4_CbcStreamCipher* m_StreamCipher;
AP4_ByteStream* m_Output;
AP4_LargeSize m_Size;
};
/*----------------------------------------------------------------------
| EncryptingStream::Create
+---------------------------------------------------------------------*/
AP4_Result
EncryptingStream::Create(const AP4_UI08* key, const AP4_UI08* iv, AP4_ByteStream* output, EncryptingStream*& stream) {
stream = NULL;
AP4_BlockCipher* block_cipher = NULL;
AP4_Result result = AP4_DefaultBlockCipherFactory::Instance.CreateCipher(AP4_BlockCipher::AES_128,
AP4_BlockCipher::ENCRYPT,
AP4_BlockCipher::CBC,
NULL,
key,
16,
block_cipher);
if (AP4_FAILED(result)) return result;
AP4_CbcStreamCipher* stream_cipher = new AP4_CbcStreamCipher(block_cipher);
stream_cipher->SetIV(iv);
stream = new EncryptingStream(stream_cipher, output);
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| SampleEncrypter
+---------------------------------------------------------------------*/
class SampleEncrypter {
public:
static AP4_Result Create(const AP4_UI08* key, const AP4_UI08* iv, SampleEncrypter*& encrypter);
~SampleEncrypter() {
delete m_StreamCipher;
}
AP4_Result EncryptAudioSample(AP4_DataBuffer& sample, AP4_SampleDescription* sample_description);
AP4_Result EncryptVideoSample(AP4_DataBuffer& sample, AP4_UI08 nalu_length_size);
private:
SampleEncrypter(AP4_CbcStreamCipher* stream_cipher, const AP4_UI08* iv):
m_StreamCipher(stream_cipher) {
AP4_CopyMemory(m_IV, iv, 16);
}
AP4_CbcStreamCipher* m_StreamCipher;
AP4_UI08 m_IV[16];
};
/*----------------------------------------------------------------------
| SampleEncrypter::Create
+---------------------------------------------------------------------*/
AP4_Result
SampleEncrypter::Create(const AP4_UI08* key, const AP4_UI08* iv, SampleEncrypter*& encrypter) {
encrypter = NULL;
AP4_BlockCipher* block_cipher = NULL;
AP4_Result result = AP4_DefaultBlockCipherFactory::Instance.CreateCipher(AP4_BlockCipher::AES_128,
AP4_BlockCipher::ENCRYPT,
AP4_BlockCipher::CBC,
NULL,
key,
16,
block_cipher);
if (AP4_FAILED(result)) return result;
AP4_CbcStreamCipher* stream_cipher = new AP4_CbcStreamCipher(block_cipher);
encrypter = new SampleEncrypter(stream_cipher, iv);
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| SampleEncrypter::EncryptAudioSample
|
| AAC: entire frame
| ADTS_header // 7 or 9
| unencrypted_leader // 16 bytes
| while (bytes_remaining() >= 16) {
| protected_block // 16 bytes
| }
| unencrypted_trailer // 0-15 bytes
|
| AC3: entire frame
| unencrypted_leader // 16 bytes
| while (bytes_remaining() >= 16) {
| encrypted_block // 16 bytes
| }
| unencrypted_trailer // 0-15 bytes
|
| E-AC3: each syncframe
| unencrypted_leader // 16 bytes
| while (bytes_remaining() >= 16) {
| encrypted_block // 16 bytes
| }
| unencrypted_trailer // 0-15 bytes
|
+---------------------------------------------------------------------*/
AP4_Result
SampleEncrypter::EncryptAudioSample(AP4_DataBuffer& sample, AP4_SampleDescription* sample_description)
{
if (sample.GetDataSize() <= 16) {
return AP4_SUCCESS;
}
// deal with E-AC3 syncframes
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_EC_3) {
// syncword : 16
// strmtyp : 2
// substreamid : 3
// frmsiz : 11
AP4_UI08* data = sample.UseData();
unsigned int data_size = sample.GetDataSize();
while (data_size > 4) {
unsigned int syncword = (data[0]<<8) | data[1];
if (syncword != 0x0b77) {
return AP4_ERROR_INVALID_FORMAT; // unexpected!
}
unsigned int frmsiz = 1+(((data[2]<<8)|(data[3]))&0x7FF);
unsigned int frame_size = 2*frmsiz;
if (data_size < frame_size) {
return AP4_ERROR_INVALID_FORMAT; // unexpected!
}
// encrypt the syncframe
if (frame_size > 16) {
unsigned int encrypted_block_count = (frame_size-16)/16;
AP4_Size encrypted_size = encrypted_block_count*16;
m_StreamCipher->SetIV(m_IV);
m_StreamCipher->ProcessBuffer(data+16, encrypted_size, data+16, &encrypted_size);
}
data += frame_size;
data_size -= frame_size;
}
} else {
unsigned int encrypted_block_count = (sample.GetDataSize()-16)/16;
AP4_Size encrypted_size = encrypted_block_count*16;
m_StreamCipher->SetIV(m_IV);
m_StreamCipher->ProcessBuffer(sample.UseData()+16, encrypted_size, sample.UseData()+16, &encrypted_size);
}
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| SampleEncrypter::EncryptVideoSample
|
| Sequence of NAL Units:
| NAL_unit_type_byte // 1 byte
| unencrypted_leader // 31 bytes
| while (bytes_remaining() > 16) {
| protected_block_one_in_ten // 16 bytes
| }
| unencrypted_trailer // 1-16 bytes
+---------------------------------------------------------------------*/
AP4_Result
SampleEncrypter::EncryptVideoSample(AP4_DataBuffer& sample, AP4_UI08 nalu_length_size)
{
AP4_DataBuffer encrypted;
AP4_UI08* nalu = sample.UseData();
AP4_Size bytes_remaining = sample.GetDataSize();
while (bytes_remaining > nalu_length_size) {
AP4_Size nalu_length = 0;
switch (nalu_length_size) {
case 1:
nalu_length = nalu[0];
break;
case 2:
nalu_length = AP4_BytesToUInt16BE(nalu);
break;
case 4:
nalu_length = AP4_BytesToUInt32BE(nalu);
break;
default:
break;
}
if (bytes_remaining < nalu_length_size+nalu_length) {
break;
}
AP4_UI08 nalu_type = nalu[nalu_length_size] & 0x1F;
if (nalu_length > 48 && (nalu_type == 1 || nalu_type == 5)) {
AP4_Size encrypted_size = 16*((nalu_length-32)/16);
if ((nalu_length%16) == 0) {
encrypted_size -= 16;
}
m_StreamCipher->SetIV(m_IV);
for (unsigned int i=0; i<encrypted_size; i += 10*16) {
AP4_Size one_block_size = 16;
m_StreamCipher->ProcessBuffer(nalu+nalu_length_size+32+i, one_block_size,
nalu+nalu_length_size+32+i, &one_block_size);
}
// perform startcode emulation prevention
AP4_DataBuffer escaped_nalu;
PreventStartCodeEmulation(nalu+nalu_length_size, nalu_length, escaped_nalu);
// the size may have changed
// TODO: this could overflow if nalu_length_size is too small
switch (nalu_length_size) {
case 1:
nalu[0] = (AP4_UI08)(escaped_nalu.GetDataSize()&0xFF);
break;
case 2:
AP4_BytesFromUInt16BE(nalu, escaped_nalu.GetDataSize());
break;
case 4:
AP4_BytesFromUInt32BE(nalu, escaped_nalu.GetDataSize());
break;
default:
break;
}
encrypted.AppendData(nalu, nalu_length_size);
encrypted.AppendData(escaped_nalu.GetData(), escaped_nalu.GetDataSize());
} else {
encrypted.AppendData(nalu, nalu_length_size);
encrypted.AppendData(nalu+nalu_length_size, nalu_length);
}
nalu += nalu_length_size+nalu_length;
bytes_remaining -= nalu_length_size+nalu_length;
}
sample.SetData(encrypted.GetData(), encrypted.GetDataSize());
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| GetSamplingFrequencyIndex
+---------------------------------------------------------------------*/
static unsigned int
GetSamplingFrequencyIndex(unsigned int sampling_frequency)
{
switch (sampling_frequency) {
case 96000: return 0;
case 88200: return 1;
case 64000: return 2;
case 48000: return 3;
case 44100: return 4;
case 32000: return 5;
case 24000: return 6;
case 22050: return 7;
case 16000: return 8;
case 12000: return 9;
case 11025: return 10;
case 8000: return 11;
case 7350: return 12;
default: return 0;
}
}
/*----------------------------------------------------------------------
| WriteAdtsHeader
+---------------------------------------------------------------------*/
static AP4_Result
WriteAdtsHeader(AP4_ByteStream& output,
unsigned int frame_size,
unsigned int sampling_frequency_index,
unsigned int channel_configuration)
{
unsigned char bits[7];
bits[0] = 0xFF;
bits[1] = 0xF1; // 0xF9 (MPEG2)
bits[2] = 0x40 | (sampling_frequency_index << 2) | (channel_configuration >> 2);
bits[3] = ((channel_configuration&0x3)<<6) | ((frame_size+7) >> 11);
bits[4] = ((frame_size+7) >> 3)&0xFF;
bits[5] = (((frame_size+7) << 5)&0xFF) | 0x1F;
bits[6] = 0xFC;
return output.Write(bits, 7);
/*
0: syncword 12 always: '111111111111'
12: ID 1 0: MPEG-4, 1: MPEG-2
13: layer 2 always: '00'
15: protection_absent 1
16: profile 2
18: sampling_frequency_index 4
22: private_bit 1
23: channel_configuration 3
26: original/copy 1
27: home 1
28: emphasis 2 only if ID == 0
ADTS Variable header: these can change from frame to frame
28: copyright_identification_bit 1
29: copyright_identification_start 1
30: aac_frame_length 13 length of the frame including header (in bytes)
43: adts_buffer_fullness 11 0x7FF indicates VBR
54: no_raw_data_blocks_in_frame 2
ADTS Error check
crc_check 16 only if protection_absent == 0
*/
}
/*----------------------------------------------------------------------
| WriteAc4Header
+---------------------------------------------------------------------*/
static AP4_Result
WriteAc4Header(AP4_ByteStream& output,
unsigned int frame_size)
{
unsigned char bits[7];
bits[0] = 0xac;
bits[1] = 0x40;
bits[2] = 0xff;
bits[3] = 0xff;
bits[4] = (frame_size>>16)&0xFF;
bits[5] = (frame_size>>8 )&0xFF;
bits[6] = (frame_size )&0xFF;
return output.Write(bits, 7);
}
/*----------------------------------------------------------------------
| MakeAudioSetupData
+---------------------------------------------------------------------*/
static AP4_Result
MakeAudioSetupData(AP4_DataBuffer& audio_setup_data,
AP4_SampleDescription* sample_description,
AP4_DataBuffer& sample_data /* needed for encrypted AC3 */)
{
AP4_UI08 audio_type[4];
AP4_DataBuffer setup_data;
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_MP4A) {
AP4_MpegAudioSampleDescription* mpeg_audio_desc = AP4_DYNAMIC_CAST(AP4_MpegAudioSampleDescription, sample_description);
if (mpeg_audio_desc == NULL ||
!(mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG4_AUDIO ||
mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG2_AAC_AUDIO_LC ||
mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG2_AAC_AUDIO_MAIN)) {
return AP4_ERROR_NOT_SUPPORTED;
}
const AP4_DataBuffer& dsi = mpeg_audio_desc->GetDecoderInfo();
setup_data.SetData(dsi.GetData(), dsi.GetDataSize());
AP4_Mp4AudioDecoderConfig dec_config;
AP4_Result result = dec_config.Parse(dsi.GetData(), dsi.GetDataSize());
if (AP4_FAILED(result)) {
return AP4_ERROR_INVALID_FORMAT;
}
if (dec_config.m_Extension.m_SbrPresent || dec_config.m_Extension.m_PsPresent) {
if (dec_config.m_Extension.m_PsPresent) {
audio_type[0] = 'z';
audio_type[1] = 'a';
audio_type[2] = 'c';
audio_type[3] = 'p';
} else {
audio_type[0] = 'z';
audio_type[1] = 'a';
audio_type[2] = 'c';
audio_type[3] = 'h';
}
} else {
audio_type[0] = 'z';
audio_type[1] = 'a';
audio_type[2] = 'a';
audio_type[3] = 'c';
}
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_3) {
audio_type[0] = 'z';
audio_type[1] = 'a';
audio_type[2] = 'c';
audio_type[3] = '3';
// the setup data is the first 10 bytes of a syncframe
if (sample_data.GetDataSize() >= 10) {
setup_data.SetData(sample_data.GetData(), 10);
}
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_EC_3) {
audio_type[0] = 'z';
audio_type[1] = 'e';
audio_type[2] = 'c';
audio_type[3] = '3';
AP4_Dec3Atom* dec3 = AP4_DYNAMIC_CAST(AP4_Dec3Atom, sample_description->GetDetails().GetChild(AP4_ATOM_TYPE_DEC3));
if (dec3 == NULL) {
fprintf(stderr, "ERROR: failed to find 'dec3' atom in sample description\n");
return 1;
}
setup_data.SetData(dec3->GetRawBytes().GetData(), dec3->GetRawBytes().GetDataSize());
} else {
return AP4_SUCCESS;
}
audio_setup_data.SetDataSize(8+setup_data.GetDataSize());
AP4_UI08* payload = audio_setup_data.UseData();
payload[0] = audio_type[0];
payload[1] = audio_type[1];
payload[2] = audio_type[2];
payload[3] = audio_type[3];
payload[4] = 0; // priming
payload[5] = 0; // priming
payload[6] = 1; // version
payload[7] = setup_data.GetDataSize(); // setup_data_length
if (setup_data.GetDataSize()) {
AP4_CopyMemory(&payload[8], setup_data.GetData(), setup_data.GetDataSize());
}
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| MakeSampleAesAudioDescriptor
+---------------------------------------------------------------------*/
static AP4_Result
MakeSampleAesAudioDescriptor(AP4_DataBuffer& descriptor,
AP4_SampleDescription* sample_description,
AP4_DataBuffer& sample_data /* needed for encrypted AC3 */)
{
// descriptor
descriptor.SetDataSize(6);
AP4_UI08* payload = descriptor.UseData();
payload[0] = AP4_MPEG2_PRIVATE_DATA_INDICATOR_DESCRIPTOR_TAG;
payload[1] = 4;
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_MP4A) {
payload[2] = 'a';
payload[3] = 'a';
payload[4] = 'c';
payload[5] = 'd';
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_3) {
payload[2] = 'a';
payload[3] = 'c';
payload[4] = '3';
payload[5] = 'd';
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_EC_3) {
payload[2] = 'e';
payload[3] = 'c';
payload[4] = '3';
payload[5] = 'd';
}
// compute the audio setup data
AP4_DataBuffer audio_setup_data;
AP4_Result result = MakeAudioSetupData(audio_setup_data, sample_description, sample_data);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to make audio setup data (%d)\n", result);
return result;
}
descriptor.SetDataSize(descriptor.GetDataSize()+6+audio_setup_data.GetDataSize());
payload = descriptor.UseData()+6;
payload[0] = AP4_MPEG2_REGISTRATION_DESCRIPTOR_TAG;
payload[1] = 4+audio_setup_data.GetDataSize();
payload[2] = 'a';
payload[3] = 'p';
payload[4] = 'a';
payload[5] = 'd';
AP4_CopyMemory(&payload[6], audio_setup_data.GetData(), audio_setup_data.GetDataSize());
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| MakeSampleAesVideoDescriptor
+---------------------------------------------------------------------*/
static AP4_Result
MakeSampleAesVideoDescriptor(AP4_DataBuffer& descriptor)
{
descriptor.SetDataSize(6);
AP4_UI08* payload = descriptor.UseData();
payload[0] = AP4_MPEG2_PRIVATE_DATA_INDICATOR_DESCRIPTOR_TAG;
payload[1] = 4;
payload[2] = 'z';
payload[3] = 'a';
payload[4] = 'v';
payload[5] = 'c';
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| PackedAudioWriter
+---------------------------------------------------------------------*/
class PackedAudioWriter {
public:
AP4_Result WriteHeader(double timestamp,
const char* private_extension_name,
const AP4_UI08* private_extension_data,
unsigned int private_extension_data_size,
AP4_ByteStream& output);
AP4_Result WriteSample(AP4_Sample& sample,
AP4_DataBuffer& sample_data,
AP4_SampleDescription* sample_description,
AP4_ByteStream& output);
};
/*----------------------------------------------------------------------
| PackedAudioWriter::WriteHeader
+---------------------------------------------------------------------*/
AP4_Result
PackedAudioWriter::WriteHeader(double timestamp,
const char* private_extension_name,
const AP4_UI08* private_extension_data,
unsigned int private_extension_data_size,
AP4_ByteStream& output)
{
unsigned int header_size = 10+10+45+8;
unsigned int private_extension_name_size = private_extension_name?(unsigned int)AP4_StringLength(private_extension_name)+1:0;
if (private_extension_name) {
header_size += 10+private_extension_name_size+private_extension_data_size;;
}
AP4_UI08* header = new AP4_UI08[header_size];
/* ID3 Tag Header
ID3v2/file identifier "ID3"
ID3v2 version $04 00
ID3v2 flags %abcd0000
ID3v2 size 4 * %0xxxxxxx
*/
header[0] = 'I';
header[1] = 'D';
header[2] = '3';
header[3] = 4;
header[4] = 0;
header[5] = 0;
header[6] = 0;
header[7] = 0;
header[8] = ((header_size-10)>>7) & 0x7F;
header[9] = (header_size-10) & 0x7F;
/* PRIV frame
Frame ID $xx xx xx xx (four characters)
Size $xx xx xx xx
Flags $xx xx
Owner identifier <text string> $00
The private data <binary data>
*/
header[10] = 'P';
header[11] = 'R';
header[12] = 'I';
header[13] = 'V';
header[14] = 0;
header[15] = 0;
header[16] = 0;
header[17] = 45+8;
header[18] = 0;
header[19] = 0;
AP4_CopyMemory(&header[20], "com.apple.streaming.transportStreamTimestamp", 45);
AP4_UI64 mpeg_ts = (AP4_UI64)(timestamp*90000.0);
AP4_BytesFromUInt64BE(&header[10+10+45], mpeg_ts);
// add the extra private extension if needed
if (private_extension_name) {
AP4_UI08* ext = &header[10+10+45+8];
ext[0] = 'P';
ext[1] = 'R';
ext[2] = 'I';
ext[3] = 'V';
ext[4] = 0;
ext[5] = 0;
ext[6] = ((private_extension_name_size+private_extension_data_size)>>7) & 0x7F;
ext[7] = (private_extension_name_size+private_extension_data_size) & 0x7F;
ext[8] = 0;
ext[9] = 0;
AP4_CopyMemory(&ext[10], private_extension_name, private_extension_name_size);
AP4_CopyMemory(&ext[10+private_extension_name_size], private_extension_data, private_extension_data_size);
}
// write the header out
AP4_Result result = output.Write(header, header_size);
delete[] header;
return result;
}
/*----------------------------------------------------------------------
| PackedAudioWriter::WriteSample
+---------------------------------------------------------------------*/
AP4_Result
PackedAudioWriter::WriteSample(AP4_Sample& sample,
AP4_DataBuffer& sample_data,
AP4_SampleDescription* sample_description,
AP4_ByteStream& output)
{
AP4_AudioSampleDescription* audio_desc = AP4_DYNAMIC_CAST(AP4_AudioSampleDescription, sample_description);
if (audio_desc == NULL) {
return AP4_ERROR_INVALID_FORMAT;
}
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_MP4A) {
AP4_MpegAudioSampleDescription* mpeg_audio_desc = AP4_DYNAMIC_CAST(AP4_MpegAudioSampleDescription, sample_description);
if (mpeg_audio_desc == NULL) return AP4_ERROR_NOT_SUPPORTED;
if (mpeg_audio_desc->GetMpeg4AudioObjectType() != AP4_MPEG4_AUDIO_OBJECT_TYPE_AAC_LC &&
mpeg_audio_desc->GetMpeg4AudioObjectType() != AP4_MPEG4_AUDIO_OBJECT_TYPE_AAC_MAIN &&
mpeg_audio_desc->GetMpeg4AudioObjectType() != AP4_MPEG4_AUDIO_OBJECT_TYPE_SBR &&
mpeg_audio_desc->GetMpeg4AudioObjectType() != AP4_MPEG4_AUDIO_OBJECT_TYPE_PS) {
return AP4_ERROR_NOT_SUPPORTED;
}
unsigned int sample_rate = mpeg_audio_desc->GetSampleRate();
unsigned int channel_count = mpeg_audio_desc->GetChannelCount();
const AP4_DataBuffer& dsi = mpeg_audio_desc->GetDecoderInfo();
if (dsi.GetDataSize()) {
AP4_Mp4AudioDecoderConfig dec_config;
AP4_Result result = dec_config.Parse(dsi.GetData(), dsi.GetDataSize());
if (AP4_SUCCEEDED(result)) {
sample_rate = dec_config.m_SamplingFrequency;
channel_count = dec_config.m_ChannelCount;
}
}
unsigned int sampling_frequency_index = GetSamplingFrequencyIndex(sample_rate);
unsigned int channel_configuration = channel_count;
WriteAdtsHeader(output, sample.GetSize(), sampling_frequency_index, channel_configuration);
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_4) {
WriteAc4Header(output, sample.GetSize());
}
return output.Write(sample_data.GetData(), sample_data.GetDataSize());
}
/*----------------------------------------------------------------------
| ReadSample
+---------------------------------------------------------------------*/
static AP4_Result
ReadSample(SampleReader& reader,
AP4_Track& track,
AP4_Sample& sample,
AP4_DataBuffer& sample_data,
double& ts,
double& duration,
bool& eos)
{
AP4_Result result = reader.ReadSample(sample, sample_data);
if (AP4_FAILED(result)) {
if (result == AP4_ERROR_EOS) {
// advance the timestamp by the last sample's duration
ts += duration;
eos = true;
return AP4_SUCCESS;
} else {
return result;
}
}
ts = (double)sample.GetDts()/(double)track.GetMediaTimeScale();
duration = sample.GetDuration()/(double)track.GetMediaTimeScale();
return AP4_SUCCESS;
}
/*----------------------------------------------------------------------
| WriteSamples
+---------------------------------------------------------------------*/
static AP4_Result
WriteSamples(AP4_Mpeg2TsWriter* ts_writer,
PackedAudioWriter* packed_writer,
AP4_Track* audio_track,
SampleReader* audio_reader,
AP4_Mpeg2TsWriter::SampleStream* audio_stream,
AP4_Track* video_track,
SampleReader* video_reader,
AP4_Mpeg2TsWriter::SampleStream* video_stream,
unsigned int segment_duration_threshold,
AP4_UI08 nalu_length_size)
{
AP4_Sample audio_sample;
AP4_DataBuffer audio_sample_data;
unsigned int audio_sample_count = 0;
double audio_ts = 0.0;
double audio_frame_duration = 0.0;
bool audio_eos = false;
AP4_Sample video_sample;
AP4_DataBuffer video_sample_data;
unsigned int video_sample_count = 0;
double video_ts = 0.0;
double video_frame_duration = 0.0;
bool video_eos = false;
double last_ts = 0.0;
unsigned int segment_number = 0;
AP4_ByteStream* segment_output = NULL;
double segment_duration = 0.0;
AP4_Array<double> segment_durations;
AP4_Array<AP4_UI32> segment_sizes;
AP4_Position segment_position = 0;
AP4_Array<AP4_Position> segment_positions;
AP4_Array<AP4_Position> iframe_positions;
AP4_Array<AP4_UI32> iframe_sizes;
AP4_Array<double> iframe_times;
AP4_Array<double> iframe_durations;
AP4_Array<AP4_UI32> iframe_segment_indexes;
bool new_segment = true;
AP4_ByteStream* raw_output = NULL;
AP4_ByteStream* playlist = NULL;
char string_buffer[4096];
SampleEncrypter* sample_encrypter = NULL;
AP4_Result result = AP4_SUCCESS;
// prime the samples
if (audio_reader) {
result = ReadSample(*audio_reader, *audio_track, audio_sample, audio_sample_data, audio_ts, audio_frame_duration, audio_eos);
if (AP4_FAILED(result)) return result;
}
if (video_reader) {
result = ReadSample(*video_reader, *video_track, video_sample, video_sample_data, video_ts, video_frame_duration, video_eos);
if (AP4_FAILED(result)) return result;
}
for (;;) {
bool sync_sample = false;
AP4_Track* chosen_track= NULL;
if (audio_track && !audio_eos) {
chosen_track = audio_track;
if (video_track == NULL) {
if (audio_track->GetSampleDescription(0)->GetFormat() == AP4_SAMPLE_FORMAT_AC_4) {
if (audio_sample.IsSync()) {
sync_sample = true;
}
} else {
sync_sample = true;
}
}
}
if (video_track && !video_eos) {
if (audio_track) {
if (video_ts <= audio_ts) {
chosen_track = video_track;
}
} else {
chosen_track = video_track;
}
if (chosen_track == video_track && video_sample.IsSync()) {
sync_sample = true;
}
}
// check if we need to start a new segment
if (Options.segment_duration && (sync_sample || chosen_track == NULL)) {
if (video_track) {
segment_duration = video_ts - last_ts;
} else {
segment_duration = audio_ts - last_ts;
}
if ((segment_duration >= (double)Options.segment_duration - (double)segment_duration_threshold/1000.0) ||
chosen_track == NULL) {
if (video_track) {
last_ts = video_ts;
} else {
last_ts = audio_ts;
}
if (segment_output) {
// flush the output stream
segment_output->Flush();
// compute the segment size (including padding)
AP4_Position segment_end = 0;
segment_output->Tell(segment_end);
AP4_UI32 segment_size = 0;
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
segment_size = (AP4_UI32)segment_end;
} else if (segment_end > segment_position) {
segment_size = (AP4_UI32)(segment_end-segment_position);
}
// update counters
segment_sizes.Append(segment_size);
segment_positions.Append(segment_position);
segment_durations.Append(segment_duration);
if (segment_duration != 0.0) {
double segment_bitrate = 8.0*(double)segment_size/segment_duration;
if (segment_bitrate > Stats.max_segment_bitrate) {
Stats.max_segment_bitrate = segment_bitrate;
}
}
if (Options.verbose) {
printf("Segment %d, duration=%.2f, %d audio samples, %d video samples, %d bytes @%lld\n",
segment_number,
segment_duration,
audio_sample_count,
video_sample_count,
segment_size,
segment_position);
}
if (!Options.output_single_file) {
segment_output->Release();
segment_output = NULL;
}
++segment_number;
audio_sample_count = 0;
video_sample_count = 0;
}
new_segment = true;
}
}
// check if we're done
if (chosen_track == NULL) break;
if (new_segment) {
new_segment = false;
// compute the new segment position
segment_position = 0;
if (Options.output_single_file) {
if (raw_output) {
raw_output->Tell(segment_position);
}
}
// manage the new segment stream
if (segment_output == NULL) {
segment_output = OpenOutput(Options.segment_filename_template, segment_number);
raw_output = segment_output;
if (segment_output == NULL) return AP4_ERROR_CANNOT_OPEN_FILE;
}
if (Options.encryption_mode != ENCRYPTION_MODE_NONE) {
if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_SEQUENCE) {
AP4_SetMemory(Options.encryption_iv, 0, sizeof(Options.encryption_iv));
AP4_BytesFromUInt32BE(&Options.encryption_iv[12], segment_number);
}
}
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
EncryptingStream* encrypting_stream = NULL;
result = EncryptingStream::Create(Options.encryption_key, Options.encryption_iv, raw_output, encrypting_stream);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to create encrypting stream (%d)\n", result);
return result;
}
segment_output->Release();
segment_output = encrypting_stream;
} else if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
delete sample_encrypter;
sample_encrypter = NULL;
result = SampleEncrypter::Create(Options.encryption_key, Options.encryption_iv, sample_encrypter);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to create sample encrypter (%d)\n", result);
return result;
}
}
// write the PAT and PMT
if (ts_writer) {
// update the descriptors if needed
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
AP4_DataBuffer descriptor;
if (audio_track) {
result = MakeSampleAesAudioDescriptor(descriptor, audio_track->GetSampleDescription(0), audio_sample_data);
if (AP4_SUCCEEDED(result) && descriptor.GetDataSize()) {
audio_stream->SetDescriptor(descriptor.GetData(), descriptor.GetDataSize());
} else {
fprintf(stderr, "ERROR: failed to create sample-aes descriptor (%d)\n", result);
return result;
}
}
if (video_track) {
result = MakeSampleAesVideoDescriptor(descriptor);
if (AP4_SUCCEEDED(result) && descriptor.GetDataSize()) {
video_stream->SetDescriptor(descriptor.GetData(), descriptor.GetDataSize());
} else {
fprintf(stderr, "ERROR: failed to create sample-aes descriptor (%d)\n", result);
return result;
}
}
}
ts_writer->WritePAT(*segment_output);
ts_writer->WritePMT(*segment_output);
} else if (packed_writer && chosen_track == audio_track) {
AP4_DataBuffer private_extension_buffer;
const char* private_extension_name = NULL;
const unsigned char* private_extension_data = NULL;
unsigned int private_extension_data_size = 0;
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
private_extension_name = "com.apple.streaming.audioDescription";
result = MakeAudioSetupData(private_extension_buffer, audio_track->GetSampleDescription(0), audio_sample_data);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to make audio setup data (%d)\n", result);
return 1;
}
private_extension_data = private_extension_buffer.GetData();
private_extension_data_size = private_extension_buffer.GetDataSize();
}
packed_writer->WriteHeader(audio_ts,
private_extension_name,
private_extension_data,
private_extension_data_size,
*segment_output);
}
}
// write the samples out and advance to the next sample
if (chosen_track == audio_track) {
// perform sample-level encryption if needed
if (sample_encrypter) {
result = sample_encrypter->EncryptAudioSample(audio_sample_data, audio_track->GetSampleDescription(audio_sample.GetDescriptionIndex()));
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to encrypt audio sample (%d)\n", result);
return result;
}
}
// write the sample data
if (audio_stream) {
result = audio_stream->WriteSample(audio_sample,
audio_sample_data,
audio_track->GetSampleDescription(audio_sample.GetDescriptionIndex()),
video_track==NULL,
*segment_output);
} else if (packed_writer) {
result = packed_writer->WriteSample(audio_sample,
audio_sample_data,
audio_track->GetSampleDescription(audio_sample.GetDescriptionIndex()),
*segment_output);
} else {
return AP4_ERROR_INTERNAL;
}
if (AP4_FAILED(result)) return result;
result = ReadSample(*audio_reader, *audio_track, audio_sample, audio_sample_data, audio_ts, audio_frame_duration, audio_eos);
if (AP4_FAILED(result)) return result;
++audio_sample_count;
} else if (chosen_track == video_track) {
// perform sample-level encryption if needed
if (sample_encrypter) {
result = sample_encrypter->EncryptVideoSample(video_sample_data, nalu_length_size);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to encrypt video sample (%d)\n", result);
return result;
}
}
// write the sample data
AP4_Position frame_start = 0;
segment_output->Tell(frame_start);
result = video_stream->WriteSample(video_sample,
video_sample_data,
video_track->GetSampleDescription(video_sample.GetDescriptionIndex()),
true,
*segment_output);
if (AP4_FAILED(result)) return result;
AP4_Position frame_end = 0;
segment_output->Tell(frame_end);
// measure I frames
if (video_sample.IsSync()) {
AP4_UI64 frame_size = 0;
if (frame_end > frame_start) {
frame_size = frame_end-frame_start;
}
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
frame_start += segment_position;
}
iframe_positions.Append(frame_start);
iframe_sizes.Append((AP4_UI32)frame_size);
iframe_times.Append(video_ts);
iframe_segment_indexes.Append(segment_number);
iframe_durations.Append(0.0); // will be computed later
if (Options.verbose) {
printf("I-Frame: %d@%lld, t=%f\n", (AP4_UI32)frame_size, frame_start, video_ts);
}
}
// read the next sample
result = ReadSample(*video_reader, *video_track, video_sample, video_sample_data, video_ts, video_frame_duration, video_eos);
if (AP4_FAILED(result)) return result;
++video_sample_count;
} else {
break;
}
}
// create the media playlist/index file
playlist = OpenOutput(Options.index_filename, 0);
if (playlist == NULL) return AP4_ERROR_CANNOT_OPEN_FILE;
unsigned int target_duration = 0;
double total_duration = 0.0;
for (unsigned int i=0; i<segment_durations.ItemCount(); i++) {
if ((unsigned int)(segment_durations[i]+0.5) > target_duration) {
target_duration = (unsigned int)segment_durations[i];
}
total_duration += segment_durations[i];
}
playlist->WriteString("#EXTM3U\r\n");
if (Options.hls_version > 1) {
sprintf(string_buffer, "#EXT-X-VERSION:%d\r\n", Options.hls_version);
playlist->WriteString(string_buffer);
}
playlist->WriteString("#EXT-X-PLAYLIST-TYPE:VOD\r\n");
if (video_track) {
playlist->WriteString("#EXT-X-INDEPENDENT-SEGMENTS\r\n");
}
playlist->WriteString("#EXT-X-TARGETDURATION:");
sprintf(string_buffer, "%d\r\n", target_duration);
playlist->WriteString(string_buffer);
playlist->WriteString("#EXT-X-MEDIA-SEQUENCE:0\r\n");
if (Options.encryption_mode != ENCRYPTION_MODE_NONE) {
if (Options.encryption_key_lines.ItemCount()) {
for (unsigned int i=0; i<Options.encryption_key_lines.ItemCount(); i++) {
AP4_String& key_line = Options.encryption_key_lines[i];
const char* key_line_cstr = key_line.GetChars();
bool omit_iv = false;
// omit the IV if the key line starts with a "!" (and skip the "!")
if (key_line[0] == '!') {
++key_line_cstr;
omit_iv = true;
}
playlist->WriteString("#EXT-X-KEY:METHOD=");
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
playlist->WriteString("AES-128");
} else if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
playlist->WriteString("SAMPLE-AES");
}
playlist->WriteString(",");
playlist->WriteString(key_line_cstr);
if ((Options.encryption_iv_mode == ENCRYPTION_IV_MODE_RANDOM ||
Options.encryption_iv_mode == ENCRYPTION_IV_MODE_FPS) && !omit_iv) {
playlist->WriteString(",IV=0x");
char iv_hex[33];
iv_hex[32] = 0;
AP4_FormatHex(Options.encryption_iv, 16, iv_hex);
playlist->WriteString(iv_hex);
}
playlist->WriteString("\r\n");
}
} else {
playlist->WriteString("#EXT-X-KEY:METHOD=");
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
playlist->WriteString("AES-128");
} else if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
playlist->WriteString("SAMPLE-AES");
}
playlist->WriteString(",URI=\"");
playlist->WriteString(Options.encryption_key_uri);
playlist->WriteString("\"");
if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_RANDOM) {
playlist->WriteString(",IV=0x");
char iv_hex[33];
iv_hex[32] = 0;
AP4_FormatHex(Options.encryption_iv, 16, iv_hex);
playlist->WriteString(iv_hex);
}
if (Options.encryption_key_format) {
playlist->WriteString(",KEYFORMAT=\"");
playlist->WriteString(Options.encryption_key_format);
playlist->WriteString("\"");
}
if (Options.encryption_key_format_versions) {
playlist->WriteString(",KEYFORMATVERSIONS=\"");
playlist->WriteString(Options.encryption_key_format_versions);
playlist->WriteString("\"");
}
playlist->WriteString("\r\n");
}
}
for (unsigned int i=0; i<segment_durations.ItemCount(); i++) {
if (Options.hls_version >= 3) {
sprintf(string_buffer, "#EXTINF:%f,\r\n", segment_durations[i]);
} else {
sprintf(string_buffer, "#EXTINF:%u,\r\n", (unsigned int)(segment_durations[i]+0.5));
}
playlist->WriteString(string_buffer);
if (Options.output_single_file) {
sprintf(string_buffer, "#EXT-X-BYTERANGE:%d@%lld\r\n", segment_sizes[i], segment_positions[i]);
playlist->WriteString(string_buffer);
}
sprintf(string_buffer, Options.segment_url_template, i);
playlist->WriteString(string_buffer);
playlist->WriteString("\r\n");
}
playlist->WriteString("#EXT-X-ENDLIST\r\n");
playlist->Release();
// create the iframe playlist/index file
if (video_track && Options.hls_version >= 4) {
// compute the iframe durations and target duration
for (unsigned int i=0; i<iframe_positions.ItemCount(); i++) {
double iframe_duration = 0.0;
if (i+1 < iframe_positions.ItemCount()) {
iframe_duration = iframe_times[i+1]-iframe_times[i];
} else if (total_duration > iframe_times[i]) {
iframe_duration = total_duration-iframe_times[i];
}
iframe_durations[i] = iframe_duration;
}
unsigned int iframes_target_duration = 0;
for (unsigned int i=0; i<iframe_durations.ItemCount(); i++) {
if ((unsigned int)(iframe_durations[i]+0.5) > iframes_target_duration) {
iframes_target_duration = (unsigned int)iframe_durations[i];
}
}
playlist = OpenOutput(Options.iframe_index_filename, 0);
if (playlist == NULL) return AP4_ERROR_CANNOT_OPEN_FILE;
playlist->WriteString("#EXTM3U\r\n");
if (Options.hls_version > 1) {
sprintf(string_buffer, "#EXT-X-VERSION:%d\r\n", Options.hls_version);
playlist->WriteString(string_buffer);
}
playlist->WriteString("#EXT-X-PLAYLIST-TYPE:VOD\r\n");
playlist->WriteString("#EXT-X-I-FRAMES-ONLY\r\n");
playlist->WriteString("#EXT-X-INDEPENDENT-SEGMENTS\r\n");
playlist->WriteString("#EXT-X-TARGETDURATION:");
sprintf(string_buffer, "%d\r\n", iframes_target_duration);
playlist->WriteString(string_buffer);
playlist->WriteString("#EXT-X-MEDIA-SEQUENCE:0\r\n");
if (Options.encryption_mode != ENCRYPTION_MODE_NONE) {
playlist->WriteString("#EXT-X-KEY:METHOD=");
if (Options.encryption_mode == ENCRYPTION_MODE_AES_128) {
playlist->WriteString("AES-128");
} else if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
playlist->WriteString("SAMPLE-AES");
}
playlist->WriteString(",URI=\"");
playlist->WriteString(Options.encryption_key_uri);
playlist->WriteString("\"");
if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_RANDOM) {
playlist->WriteString(",IV=0x");
char iv_hex[33];
iv_hex[32] = 0;
AP4_FormatHex(Options.encryption_iv, 16, iv_hex);
playlist->WriteString(iv_hex);
}
if (Options.encryption_key_format) {
playlist->WriteString(",KEYFORMAT=\"");
playlist->WriteString(Options.encryption_key_format);
playlist->WriteString("\"");
}
if (Options.encryption_key_format_versions) {
playlist->WriteString(",KEYFORMATVERSIONS=\"");
playlist->WriteString(Options.encryption_key_format_versions);
playlist->WriteString("\"");
}
playlist->WriteString("\r\n");
}
for (unsigned int i=0; i<iframe_positions.ItemCount(); i++) {
sprintf(string_buffer, "#EXTINF:%f,\r\n", iframe_durations[i]);
playlist->WriteString(string_buffer);
sprintf(string_buffer, "#EXT-X-BYTERANGE:%d@%lld\r\n", iframe_sizes[i], iframe_positions[i]);
playlist->WriteString(string_buffer);
sprintf(string_buffer, Options.segment_url_template, iframe_segment_indexes[i]);
playlist->WriteString(string_buffer);
playlist->WriteString("\r\n");
}
playlist->WriteString("#EXT-X-ENDLIST\r\n");
playlist->Release();
}
// update stats
Stats.segment_count = segment_sizes.ItemCount();
for (unsigned int i=0; i<segment_sizes.ItemCount(); i++) {
Stats.segments_total_size += segment_sizes[i];
Stats.segments_total_duration += segment_durations[i];
}
Stats.iframe_count = iframe_sizes.ItemCount();
for (unsigned int i=0; i<iframe_sizes.ItemCount(); i++) {
Stats.iframes_total_size += iframe_sizes[i];
}
for (unsigned int i=0; i<iframe_positions.ItemCount(); i++) {
if (iframe_durations[i] != 0.0) {
double iframe_bitrate = 8.0*(double)iframe_sizes[i]/iframe_durations[i];
if (iframe_bitrate > Stats.max_iframe_bitrate) {
Stats.max_iframe_bitrate = iframe_bitrate;
}
}
}
if (Options.verbose) {
printf("Conversion complete, total duration=%.2f secs\n", total_duration);
}
if (segment_output) segment_output->Release();
delete sample_encrypter;
return result;
}
/*----------------------------------------------------------------------
| main
+---------------------------------------------------------------------*/
int
main(int argc, char** argv)
{
if (argc < 2) {
PrintUsageAndExit();
}
// default options
Options.input = NULL;
Options.verbose = false;
Options.hls_version = 0;
Options.pmt_pid = 0x100;
Options.audio_pid = 0x101;
Options.video_pid = 0x102;
Options.audio_track_id = -1;
Options.video_track_id = -1;
Options.audio_format = AUDIO_FORMAT_TS;
Options.output_single_file = false;
Options.show_info = false;
Options.index_filename = "stream.m3u8";
Options.iframe_index_filename = NULL;
Options.segment_filename_template = NULL;
Options.segment_url_template = NULL;
Options.segment_duration = 6;
Options.segment_duration_threshold = DefaultSegmentDurationThreshold;
Options.encryption_key_hex = NULL;
Options.encryption_mode = ENCRYPTION_MODE_NONE;
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_NONE;
Options.encryption_key_uri = "key.bin";
Options.encryption_key_format = NULL;
Options.encryption_key_format_versions = NULL;
Options.pcr_offset = AP4_MPEG2_TS_DEFAULT_PCR_OFFSET;
AP4_SetMemory(Options.encryption_key, 0, sizeof(Options.encryption_key));
AP4_SetMemory(Options.encryption_iv, 0, sizeof(Options.encryption_iv));
AP4_SetMemory(&Stats, 0, sizeof(Stats));
// parse command line
AP4_Result result;
char** args = argv+1;
while (const char* arg = *args++) {
if (!strcmp(arg, "--verbose")) {
Options.verbose = true;
} else if (!strcmp(arg, "--hls-version")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --hls-version requires a number\n");
return 1;
}
Options.hls_version = (unsigned int)strtoul(*args++, NULL, 10);
if (Options.hls_version ==0) {
fprintf(stderr, "ERROR: --hls-version requires number > 0\n");
return 1;
}
} else if (!strcmp(arg, "--segment-duration")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --segment-duration requires a number\n");
return 1;
}
Options.segment_duration = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--segment-duration-threshold")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --segment-duration-threshold requires a number\n");
return 1;
}
Options.segment_duration_threshold = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--segment-filename-template")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --segment-filename-template requires an argument\n");
return 1;
}
Options.segment_filename_template = *args++;
} else if (!strcmp(arg, "--segment-url-template")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --segment-url-template requires an argument\n");
return 1;
}
Options.segment_url_template = *args++;
} else if (!strcmp(arg, "--pmt-pid")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --pmt-pid requires a number\n");
return 1;
}
Options.pmt_pid = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--audio-pid")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --audio-pid requires a number\n");
return 1;
}
Options.audio_pid = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--video-pid")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --video-pid requires a number\n");
return 1;
}
Options.video_pid = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--audio-track-id")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --audio-track-id requires a number\n");
return 1;
}
Options.audio_track_id = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--audio-format")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --audio-format requires an argument\n");
return 1;
}
const char* format = *args++;
if (!strcmp(format, "ts")) {
Options.audio_format = AUDIO_FORMAT_TS;
} else if (!strcmp(format, "packed")) {
Options.audio_format = AUDIO_FORMAT_PACKED;
} else {
fprintf(stderr, "ERROR: unknown audio format\n");
return 1;
}
} else if (!strcmp(arg, "--video-track-id")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --video-track-id requires a number\n");
return 1;
}
Options.video_track_id = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--pcr-offset")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --pcr-offset requires a number\n");
return 1;
}
Options.pcr_offset = (unsigned int)strtoul(*args++, NULL, 10);
} else if (!strcmp(arg, "--output-single-file")) {
Options.output_single_file = true;
} else if (!strcmp(arg, "--index-filename")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --index-filename requires a filename\n");
return 1;
}
Options.index_filename = *args++;
} else if (!strcmp(arg, "--iframe-index-filename")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --iframe-index-filename requires a filename\n");
return 1;
}
Options.iframe_index_filename = *args++;
} else if (!strcmp(arg, "--show-info")) {
Options.show_info = true;
} else if (!strcmp(arg, "--encryption-key")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-key requires an argument\n");
return 1;
}
Options.encryption_key_hex = *args++;
result = AP4_ParseHex(Options.encryption_key_hex, Options.encryption_key, 16);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: invalid hex key\n");
return 1;
}
if (Options.encryption_mode == ENCRYPTION_MODE_NONE) {
Options.encryption_mode = ENCRYPTION_MODE_AES_128;
}
} else if (!strcmp(arg, "--encryption-mode")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-mode requires an argument\n");
return 1;
}
if (strncmp(*args, "AES-128", 7) == 0) {
Options.encryption_mode = ENCRYPTION_MODE_AES_128;
} else if (strncmp(*args, "SAMPLE-AES", 10) == 0) {
Options.encryption_mode = ENCRYPTION_MODE_SAMPLE_AES;
} else {
fprintf(stderr, "ERROR: unknown encryption mode\n");
return 1;
}
++args;
} else if (!strcmp(arg, "--encryption-iv-mode")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-iv-mode requires an argument\n");
return 1;
}
if (strncmp(*args, "sequence", 8) == 0) {
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_SEQUENCE;
} else if (strncmp(*args, "random", 6) == 0) {
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_RANDOM;
} else if (strncmp(*args, "fps", 3) == 0) {
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_FPS;
} else {
fprintf(stderr, "ERROR: unknown encryption IV mode\n");
return 1;
}
++args;
} else if (!strcmp(arg, "--encryption-key-uri")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-key-uri requires an argument\n");
return 1;
}
Options.encryption_key_uri = *args++;
} else if (!strcmp(arg, "--encryption-key-format")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-key-format requires an argument\n");
return 1;
}
Options.encryption_key_format = *args++;
} else if (!strcmp(arg, "--encryption-key-format-versions")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-key-format-versions requires an argument\n");
return 1;
}
Options.encryption_key_format_versions = *args++;
} else if (!strcmp(arg, "--encryption-key-line")) {
if (*args == NULL) {
fprintf(stderr, "ERROR: --encryption-key-line requires an argument\n");
return 1;
}
Options.encryption_key_lines.Append(*args++);
} else if (Options.input == NULL) {
Options.input = arg;
} else {
fprintf(stderr, "ERROR: unexpected argument: %s\n", arg);
return 1;
}
}
// check args
if (Options.input == NULL) {
fprintf(stderr, "ERROR: missing input file name\n");
return 1;
}
if (Options.encryption_mode == ENCRYPTION_MODE_NONE && Options.encryption_key_lines.ItemCount() != 0) {
fprintf(stderr, "ERROR: --encryption-key-line requires --encryption-key and --encryption-key-mode\n");
return 1;
}
if (Options.encryption_mode != ENCRYPTION_MODE_NONE && Options.encryption_key_hex == NULL) {
fprintf(stderr, "ERROR: no encryption key specified\n");
return 1;
}
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES && Options.hls_version > 0 && Options.hls_version < 5) {
Options.hls_version = 5;
fprintf(stderr, "WARNING: forcing version to 5 in order to support SAMPLE-AES encryption\n");
}
if (Options.iframe_index_filename && Options.hls_version > 0 && Options.hls_version < 4) {
fprintf(stderr, "WARNING: forcing version to 4 in order to support I-FRAME-ONLY playlists\n");
Options.hls_version = 4;
}
if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_NONE && Options.encryption_mode != ENCRYPTION_MODE_NONE) {
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
// sequence-mode IVs don't work well with i-frame only playlists, use random instead
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_RANDOM;
} else {
Options.encryption_iv_mode = ENCRYPTION_IV_MODE_SEQUENCE;
}
}
if ((Options.encryption_key_format || Options.encryption_key_format_versions) && Options.hls_version > 0 && Options.hls_version < 5) {
Options.hls_version = 5;
fprintf(stderr, "WARNING: forcing version to 5 in order to support KEYFORMAT and/or KEYFORMATVERSIONS\n");
}
if (Options.output_single_file && Options.hls_version > 0 && Options.hls_version < 4) {
Options.hls_version = 4;
fprintf(stderr, "WARNING: forcing version to 4 in order to support single file output\n");
}
if (Options.hls_version == 0) {
// default version is 3 for cleartext or AES-128 encryption, and 5 for SAMPLE-AES
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
Options.hls_version = 5;
} else if (Options.output_single_file || Options.iframe_index_filename) {
Options.hls_version = 4;
} else {
Options.hls_version = 3;
}
}
if (Options.verbose && Options.show_info) {
fprintf(stderr, "WARNING: --verbose will be ignored because --show-info is selected\n");
Options.verbose = false;
}
// compute some derived values
if (Options.iframe_index_filename == NULL) {
if (Options.hls_version >= 4) {
Options.iframe_index_filename = "iframes.m3u8";
}
}
if (Options.audio_format == AUDIO_FORMAT_TS) {
if (Options.segment_filename_template == NULL) {
if (Options.output_single_file) {
Options.segment_filename_template = "stream.ts";
} else {
Options.segment_filename_template = "segment-%d.ts";
}
}
if (Options.segment_url_template == NULL) {
if (Options.output_single_file) {
Options.segment_url_template = "stream.ts";
} else {
Options.segment_url_template = "segment-%d.ts";
}
}
}
if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_FPS) {
if (Options.encryption_key_hex == NULL || AP4_StringLength(Options.encryption_key_hex) != 64) {
fprintf(stderr, "ERROR: 'fps' IV mode requires a 32 byte key value (64 characters in hex)\n");
return 1;
}
result = AP4_ParseHex(Options.encryption_key_hex+32, Options.encryption_iv, 16);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: invalid hex IV\n");
return 1;
}
} else if (Options.encryption_iv_mode == ENCRYPTION_IV_MODE_RANDOM) {
result = AP4_System_GenerateRandomBytes(Options.encryption_iv, sizeof(Options.encryption_iv));
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to get random IV (%d)\n", result);
return 1;
}
}
// create the input stream
AP4_ByteStream* input = NULL;
result = AP4_FileByteStream::Create(Options.input, AP4_FileByteStream::STREAM_MODE_READ, input);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: cannot open input (%d)\n", result);
return 1;
}
// open the file
AP4_File* input_file = new AP4_File(*input, true);
// get the movie
AP4_SampleDescription* sample_description;
AP4_Movie* movie = input_file->GetMovie();
if (movie == NULL) {
fprintf(stderr, "ERROR: no movie in file\n");
return 1;
}
// get the audio and video tracks
AP4_Track* audio_track = NULL;
if (Options.audio_track_id == -1) {
audio_track = movie->GetTrack(AP4_Track::TYPE_AUDIO);
} else if (Options.audio_track_id > 0) {
audio_track = movie->GetTrack((AP4_UI32)Options.audio_track_id);
if (audio_track == NULL) {
fprintf(stderr, "ERROR: audio track ID %d not found\n", Options.audio_track_id);
return 1;
}
if (audio_track->GetType() != AP4_Track::TYPE_AUDIO) {
fprintf(stderr, "ERROR: track ID %d is not an audio track\n", Options.audio_track_id);
return 1;
}
}
AP4_Track* video_track = NULL;
if (Options.video_track_id == -1) {
video_track = movie->GetTrack(AP4_Track::TYPE_VIDEO);
} else if (Options.video_track_id > 0) {
video_track = movie->GetTrack((AP4_UI32)Options.video_track_id);
if (video_track == NULL) {
fprintf(stderr, "ERROR: video track ID %d not found\n", Options.video_track_id);
return 1;
}
if (video_track->GetType() != AP4_Track::TYPE_VIDEO) {
fprintf(stderr, "ERROR: track ID %d is not a video track\n", Options.video_track_id);
return 1;
}
}
if (audio_track == NULL && video_track == NULL) {
fprintf(stderr, "ERROR: no suitable tracks found\n");
delete input_file;
input->Release();
return 1;
}
if (Options.audio_format == AUDIO_FORMAT_PACKED && video_track != NULL) {
if (audio_track == NULL) {
fprintf(stderr, "ERROR: packed audio format requires an audio track\n");
return 1;
}
fprintf(stderr, "WARNING: ignoring video track because of the packed audio format\n");
video_track = NULL;
}
if (video_track == NULL) {
Options.segment_duration_threshold = 0;
}
// create the appropriate readers
AP4_LinearReader* linear_reader = NULL;
SampleReader* audio_reader = NULL;
SampleReader* video_reader = NULL;
if (movie->HasFragments()) {
// create a linear reader to get the samples
linear_reader = new AP4_LinearReader(*movie, input);
if (audio_track) {
linear_reader->EnableTrack(audio_track->GetId());
audio_reader = new FragmentedSampleReader(*linear_reader, audio_track->GetId());
}
if (video_track) {
linear_reader->EnableTrack(video_track->GetId());
video_reader = new FragmentedSampleReader(*linear_reader, video_track->GetId());
}
} else {
if (audio_track) {
audio_reader = new TrackSampleReader(*audio_track);
}
if (video_track) {
video_reader = new TrackSampleReader(*video_track);
}
}
AP4_Mpeg2TsWriter* ts_writer = NULL;
AP4_Mpeg2TsWriter::SampleStream* audio_stream = NULL;
AP4_Mpeg2TsWriter::SampleStream* video_stream = NULL;
AP4_UI08 nalu_length_size = 0;
PackedAudioWriter* packed_writer = NULL;
if (Options.audio_format == AUDIO_FORMAT_PACKED) {
packed_writer = new PackedAudioWriter();
// figure out the file extensions if needed
sample_description = audio_track->GetSampleDescription(0);
if (sample_description == NULL) {
fprintf(stderr, "ERROR: unable to parse audio sample description\n");
goto end;
}
if (Options.segment_filename_template == NULL || Options.segment_url_template == NULL) {
const char* default_stream_name = "stream.es";
const char* default_stream_pattern = "segment-%d.es";
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_MP4A) {
AP4_MpegAudioSampleDescription* mpeg_audio_desc = AP4_DYNAMIC_CAST(AP4_MpegAudioSampleDescription, sample_description);
if (mpeg_audio_desc == NULL ||
!(mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG4_AUDIO ||
mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG2_AAC_AUDIO_LC ||
mpeg_audio_desc->GetObjectTypeId() == AP4_OTI_MPEG2_AAC_AUDIO_MAIN)) {
fprintf(stderr, "ERROR: only AAC audio is supported\n");
return 1;
}
default_stream_name = "stream.aac";
default_stream_pattern = "segment-%d.aac";
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_3) {
default_stream_name = "stream.ac3";
default_stream_pattern = "segment-%d.ac3";
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_EC_3) {
default_stream_name = "stream.ec3";
default_stream_pattern = "segment-%d.ec3";
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_4) {
default_stream_name = "stream.ac4";
default_stream_pattern = "segment-%d.ac4";
}
// override the segment names
if (Options.segment_filename_template == NULL) {
if (Options.output_single_file) {
Options.segment_filename_template = default_stream_name;
} else {
Options.segment_filename_template = default_stream_pattern;
}
}
if (Options.segment_url_template == NULL) {
if (Options.output_single_file) {
Options.segment_url_template = default_stream_name;
} else {
Options.segment_url_template = default_stream_pattern;
}
}
}
} else {
// create an MPEG2 TS Writer
ts_writer = new AP4_Mpeg2TsWriter(Options.pmt_pid);
// add the audio stream
if (audio_track) {
sample_description = audio_track->GetSampleDescription(0);
if (sample_description == NULL) {
fprintf(stderr, "ERROR: unable to parse audio sample description\n");
goto end;
}
unsigned int stream_type = 0;
unsigned int stream_id = 0;
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_MP4A) {
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
stream_type = AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ISO_IEC_13818_7;
} else {
stream_type = AP4_MPEG2_STREAM_TYPE_ISO_IEC_13818_7;
}
stream_id = AP4_MPEG2_TS_DEFAULT_STREAM_ID_AUDIO;
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AC_3) {
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
stream_type = AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ATSC_AC3;
} else {
stream_type = AP4_MPEG2_STREAM_TYPE_ATSC_AC3;
}
stream_id = AP4_MPEG2_TS_STREAM_ID_PRIVATE_STREAM_1;
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_EC_3) {
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
stream_type = AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_ATSC_EAC3;
} else {
stream_type = AP4_MPEG2_STREAM_TYPE_ATSC_EAC3;
}
stream_id = AP4_MPEG2_TS_STREAM_ID_PRIVATE_STREAM_1;
} else {
fprintf(stderr, "ERROR: audio codec not supported\n");
return 1;
}
if (stream_type == AP4_MPEG2_STREAM_TYPE_ATSC_EAC3) {
// E-AC-3 descriptor
unsigned int number_of_channels = 0;
AP4_String track_language;
AP4_Dec3Atom* dec3 = AP4_DYNAMIC_CAST(AP4_Dec3Atom, sample_description->GetDetails().GetChild(AP4_ATOM_TYPE_DEC3));
AP4_BitWriter bits(8);
bits.Write(0xCC, 8);
bits.Write(0x06, 8); // fixed value
bits.Write(0xC0, 8); // reserved, bsid_flag, mainid_flag, asvc_flag, mixinfoexists, substream1_flag, substream2_flag and substream3_flag
bits.Write(24, 5); // reserved, full_service_flag and service_type
if (dec3->GetSubStreams()[0].acmod == 0) {
number_of_channels = 1;
} else if (dec3->GetSubStreams()[0].acmod == 1) {
number_of_channels = 0;
} else if (dec3->GetSubStreams()[0].acmod == 2) {
number_of_channels = 2;
} else {
number_of_channels = 4;
}
if (dec3->GetSubStreams()[0].num_dep_sub > 0) {
number_of_channels = 5;
}
bits.Write(number_of_channels, 3); // number_of_channels
bits.Write(4, 3); // language_flag, language_flag_2, reserved
bits.Write(dec3->GetSubStreams()[0].bsid, 5); // bsid
track_language = audio_track->GetTrackLanguage();
if (track_language.GetLength() == 3) {
bits.Write(track_language.GetChars()[0], 8);
bits.Write(track_language.GetChars()[1], 8);
bits.Write(track_language.GetChars()[2], 8);
} else {
bits.Write(0x75, 8);
bits.Write(0x6E, 8);
bits.Write(0x64, 8);
}
// setup the audio stream
result = ts_writer->SetAudioStream(audio_track->GetMediaTimeScale(),
stream_type,
stream_id,
audio_stream,
Options.audio_pid,
bits.GetData(), 8,
Options.pcr_offset);
} else {
// setup the audio stream
result = ts_writer->SetAudioStream(audio_track->GetMediaTimeScale(),
stream_type,
stream_id,
audio_stream,
Options.audio_pid,
NULL, 0,
Options.pcr_offset);
}
if (AP4_FAILED(result)) {
fprintf(stderr, "could not create audio stream (%d)\n", result);
goto end;
}
}
// add the video stream
if (video_track) {
sample_description = video_track->GetSampleDescription(0);
if (sample_description == NULL) {
fprintf(stderr, "ERROR: unable to parse video sample description\n");
goto end;
}
// decide on the stream type
unsigned int stream_type = 0;
unsigned int stream_id = AP4_MPEG2_TS_DEFAULT_STREAM_ID_VIDEO;
if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AVC1 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AVC2 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AVC3 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_AVC4 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_DVAV ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_DVA1) {
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
stream_type = AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_AVC;
AP4_AvcSampleDescription* avc_desc = AP4_DYNAMIC_CAST(AP4_AvcSampleDescription, sample_description);
if (avc_desc == NULL) {
fprintf(stderr, "ERROR: not a proper AVC track\n");
return 1;
}
nalu_length_size = avc_desc->GetNaluLengthSize();
} else {
stream_type = AP4_MPEG2_STREAM_TYPE_AVC;
}
} else if (sample_description->GetFormat() == AP4_SAMPLE_FORMAT_HEV1 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_HVC1 ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_DVHE ||
sample_description->GetFormat() == AP4_SAMPLE_FORMAT_DVH1) {
stream_type = AP4_MPEG2_STREAM_TYPE_HEVC;
} else {
fprintf(stderr, "ERROR: video codec not supported\n");
return 1;
}
if (Options.encryption_mode == ENCRYPTION_MODE_SAMPLE_AES) {
if (stream_type != AP4_MPEG2_STREAM_TYPE_SAMPLE_AES_AVC) {
fprintf(stderr, "ERROR: AES-SAMPLE encryption can only be used with H.264 video\n");
return 1;
}
}
// setup the video stream
result = ts_writer->SetVideoStream(video_track->GetMediaTimeScale(),
stream_type,
stream_id,
video_stream,
Options.video_pid,
NULL, 0,
Options.pcr_offset);
if (AP4_FAILED(result)) {
fprintf(stderr, "could not create video stream (%d)\n", result);
goto end;
}
}
}
result = WriteSamples(ts_writer, packed_writer,
audio_track, audio_reader, audio_stream,
video_track, video_reader, video_stream,
Options.segment_duration_threshold,
nalu_length_size);
if (AP4_FAILED(result)) {
fprintf(stderr, "ERROR: failed to write samples (%d)\n", result);
}
if (Options.show_info) {
double average_segment_bitrate = 0.0;
if (Stats.segments_total_duration != 0.0) {
average_segment_bitrate = 8.0*(double)Stats.segments_total_size/Stats.segments_total_duration;
}
double average_iframe_bitrate = 0.0;
if (Stats.segments_total_duration != 0.0) {
average_iframe_bitrate = 8.0*(double)Stats.iframes_total_size/Stats.segments_total_duration;
}
double frame_rate = 0.0;
if (video_track && (Stats.segments_total_duration != 0.0)) {
double sample_count = (double)video_track->GetSampleCount();
double media_duration = (double)video_track->GetMediaDuration();
double timescale = (double)video_track->GetMediaTimeScale();
if (media_duration > 0.0) {
frame_rate = sample_count/(media_duration/timescale);
}
}
printf(
"{\n"
);
printf(
" \"stats\": {\n"
" \"duration\": %f,\n"
" \"avg_segment_bitrate\": %f,\n"
" \"max_segment_bitrate\": %f,\n"
" \"avg_iframe_bitrate\": %f,\n"
" \"max_iframe_bitrate\": %f,\n"
" \"frame_rate\": %f\n"
" }",
(double)movie->GetDurationMs()/1000.0,
average_segment_bitrate,
Stats.max_segment_bitrate,
average_iframe_bitrate,
Stats.max_iframe_bitrate,
frame_rate
);
if (audio_track) {
AP4_String codec;
AP4_SampleDescription* sdesc = audio_track->GetSampleDescription(0);
if (sdesc) {
sdesc->GetCodecString(codec);
}
printf(
",\n"
" \"audio\": {\n"
" \"codec\": \"%s\"\n"
" }",
codec.GetChars()
);
}
if (video_track) {
AP4_String codec;
AP4_UI16 width = (AP4_UI16)(video_track->GetWidth()/65536.0);
AP4_UI16 height = (AP4_UI16)(video_track->GetHeight()/65536.0);
AP4_SampleDescription* sdesc = video_track->GetSampleDescription(0);
if (sdesc) {
sdesc->GetCodecString(codec);
AP4_VideoSampleDescription* video_desc = AP4_DYNAMIC_CAST(AP4_VideoSampleDescription, sdesc);
if (video_desc) {
width = video_desc->GetWidth();
height = video_desc->GetHeight();
}
}
printf(
",\n"
" \"video\": {\n"
" \"codec\": \"%s\",\n"
" \"width\": %d,\n"
" \"height\": %d\n"
" }",
codec.GetChars(),
width,
height
);
}
printf(
"\n"
"}\n"
);
}
end:
delete ts_writer;
delete packed_writer;
delete input_file;
input->Release();
delete linear_reader;
delete audio_reader;
delete video_reader;
return result == AP4_SUCCESS?0:1;
}
|