This file contains hidden or 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
| [ | |
| { | |
| "chapter": 1, | |
| "start-time": 0, | |
| "duration": 600, | |
| "titles": [ | |
| { | |
| "language": "en", | |
| "title": "Introduction" | |
| } |
This file contains hidden or 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
| #EXTM3U | |
| #EXT-X-VERSION:6 | |
| #EXT-X-SESSION-DATA:DATA-ID="com.apple.hls.chapters",VALUE="dummy" | |
| #EXT-X-STREAM-INF:BANDWIDTH=700000,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2" | |
| https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/gear2/prog_index.m3u8 |
This file contains hidden or 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
| #EXTM3U | |
| #EXT-X-VERSION:6 | |
| #EXT-X-SESSION-DATA:DATA-ID="com.apple.hls.chapters",URI="https://gist.githubusercontent.com/Wkkkkk/532359f8eab500c0cfa7b0222567ad77/raw/chapters.json" | |
| #EXT-X-STREAM-INF:BANDWIDTH=2000000,RESOLUTION=1920x1080,CODECS="avc1.640028,mp4a.40.2" | |
| https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/gear5/prog_index.m3u8 | |
| #EXT-X-STREAM-INF:BANDWIDTH=700000,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2" | |
| https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/gear2/prog_index.m3u8 |
This file contains hidden or 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
| #EXTM3U | |
| #EXT-X-VERSION:6 | |
| #EXT-X-STREAM-INF:BANDWIDTH=2000000,RESOLUTION=1920x1080,CODECS="avc1.640028,mp4a.40.2" | |
| https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/gear5/prog_index.m3u8 | |
| #EXT-X-STREAM-INF:BANDWIDTH=700000,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2" | |
| https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_16x9/gear2/prog_index.m3u8 | |
| #EXT-X-STREAM-INF:BANDWIDTH=200000,RESOLUTION=400x300,CODECS="avc1.4d4015,mp4a.40.2" |
This file contains hidden or 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
| [ | |
| { | |
| "chapter": 1, | |
| "start-time": 0, | |
| "duration": 600, | |
| "titles": [ | |
| { | |
| "language": "en", | |
| "title": "Introduction" | |
| } |
This file contains hidden or 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
| { | |
| "chapters": [ | |
| { | |
| "start-time": 0.0, | |
| "titles": [{ "language": "en", "title": "Introduction" }] | |
| }, | |
| { | |
| "start-time": 15.0, | |
| "titles": [{ "language": "en", "title": "Main Segment" }] | |
| }, |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Codec Support Test</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| max-width: 1200px; |
This file contains hidden or 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
| # Bash script to calculate metrics | |
| pretty_print_results() { | |
| echo "Content |Resolution | Codec | Bitrate | Filename | VMAF Score" | |
| echo "--------|-----------|--------|---------|----------------------------|------------" | |
| while read -r line; do | |
| content=$(echo "$line" | cut -d',' -f1) | |
| resolution=$(echo "$line" | cut -d',' -f2) | |
| codec=$(echo "$line" | cut -d',' -f3) | |
| bitrate=$(echo "$line" | cut -d',' -f4) |
This file contains hidden or 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
| { | |
| "integration": { | |
| "convoy": { | |
| "events": { | |
| "enable": false, | |
| "eventThrottler": { | |
| "burstQuantum": 1, | |
| "burstThreshold": 5, | |
| "throttlerQuantum": 20 | |
| }, |
This file contains hidden or 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
| #include <map> | |
| #include <functional> | |
| #include <typeindex> | |
| #include <iostream> | |
| class Figure { public: virtual ~Figure() = default; }; | |
| class Sphere : public Figure {}; | |
| class Polygon : public Figure {}; | |
| class Cosmetic { public: virtual ~Cosmetic() = default; }; |
NewerOlder