├── .gitattributes ├── .gitignore ├── ColorPreservation.md ├── Encoding.md ├── EncodingOverview.md ├── FfmpegInputs.md ├── ICC ├── P3D60.icc ├── P3D65.icc ├── P3DCI.icc ├── README ├── Rec2020-Rec1886.icc ├── Rec709-Rec1886.icc ├── Simplified-sRGB.icc ├── gamma28.icc ├── linear.icc └── rec2020.icc ├── LICENSE ├── MarkdownNotes.md ├── OtherFfmpegArgs.md ├── Quickstart.md ├── README.md ├── Testresults.md ├── WebColorPreservation.md ├── _config.yml ├── browsercompare ├── chrome-bt1886-windows.png ├── chrome-gamma2.2-osx.png ├── chrome-gamma2.2-windows.png ├── chrome-gamma2.8-osx.png ├── chrome-gamma2.8-windows.png ├── chrome-linear-osx.png ├── chrome-linear-windows.png ├── chrome-srgb-osx.png ├── chrome-srgb-windows.png ├── firefox-bt1886-osx.png ├── firefox-gamma2.2-osx.png ├── firefox-linear-osx.png ├── firefox-srgb-osx.png ├── safari-bt1886-osx.png ├── safari-gamma2.2-osx.png ├── safari-gamma2.8-osx.png ├── safari-linear-osx.png ├── safari-srgb-g22-osx.png └── safari-srgb-osx.png ├── compare.html ├── docker ├── README.md ├── ffmpeg-4.4 │ ├── Dockerfile │ └── runme.sh ├── ffmpeg-5.0 │ ├── Dockerfile │ └── runme.sh ├── ffmpeg-5.1 │ ├── Dockerfile │ └── runme.sh └── rocky-ffmpeg-5.1 │ ├── Dockerfile │ └── runme.sh ├── enctests ├── HDR_Encoding.md ├── README.md ├── reference-results │ ├── README.md │ ├── h264-crf-results.otio │ ├── h264-crf-test-encode_time.png │ ├── h264-crf-test-filesize.png │ ├── h264-crf-test-vmaf_harmonic_mean.png │ ├── prores-results.otio │ ├── prores-test-encode_time.png │ ├── prores-test-filesize.png │ └── prores-test-vmaf_harmonic_mean.png ├── runtest.sh ├── sources │ ├── .gitignore │ ├── download_media.sh │ ├── enc_sources │ │ ├── README.md │ │ ├── chimera_cars_srgb │ │ │ └── chimera_cars_srgb.%05d.png.yml │ │ ├── chimera_coaster_srgb │ │ │ └── chimera_coaster_srgb.%06d.png.yml │ │ ├── chimera_fountains_srgb │ │ │ └── chimera_fountains_srgb.%05d.png.yml │ │ ├── download_media.sh │ │ └── thumbnails │ │ │ ├── chimera_cars_srgb.02516.jpg │ │ │ ├── chimera_fountains_srgb.05439.jpg │ │ │ ├── chimera_wind_srgb.01126.jpg │ │ │ └── sintel_trailer_2k_0591.jpg │ └── hdr_sources │ │ ├── README.md │ │ ├── download_media.sh │ │ └── thumbnails │ │ ├── sparks2_srgb.06726.jpg │ │ └── sparks_srgb.6015.jpg ├── test_configs │ ├── base_tests.yml │ ├── h264_crf25_tests.yml │ ├── h264_crf_tests.yml │ ├── h264_tests.yml │ ├── prores_profile_tests.yml │ └── prores_tests.yml └── testframework │ ├── __init__.py │ ├── encoders │ ├── __init__.py │ ├── base.py │ └── ffmpeg_encoder.py │ ├── generatetests.py │ ├── main.py │ ├── otio2html.py │ ├── templates │ ├── basic.html.jinja │ └── doctests.html.jinja │ └── utils │ ├── __init__.py │ ├── outputTemplate.py │ └── utils.py ├── gamuttests ├── DisplayP3-asRec2020.png ├── apply-icc2020.py ├── gamuttest_v001.nk ├── iccgamut │ └── gamuttest.md ├── ps-combined-displayp3-g2.2.png ├── ps-combined-rec2020-g2.2.png ├── ps-combined-rec2020.png └── rec709-asRec2020.png ├── index.md ├── sourceimages ├── 1920px-SMPTE_Color_Bars_16x9-edges.png ├── Digital_LAD_raw.png ├── Digital_LAD_sRGB.png ├── README.md ├── chip-chart-1080-noicc.png ├── chip-chart-1080-noicc.png.yml ├── default-ffmpeg.png ├── greyscale-raw.png ├── greyscale-source-bt1886-ps.png ├── greyscale-source-bt1886.png ├── greyscale-source-gamma195-ps.png ├── greyscale-source-gamma22-ps.png ├── greyscale-source-gamma22.png ├── greyscale-source-gamma28-ps.png ├── greyscale-source-gamma28.png ├── greyscale-source-lin-ps.png ├── greyscale-source-lin.png ├── greyscale-source-rec709-ps.png ├── greyscale-source-rec709.png ├── greyscale-source-srgb-ps.png ├── greyscale-source-srgb.png ├── libswscale-example.png ├── original-png.png ├── radialgrad.png ├── radialgrad.png.yml └── ward.png ├── static └── reorder.png └── tests ├── chip-chart-yuvconvert └── yuvconvert.md ├── chip-color-test.py ├── greyramp-fulltv └── fullrange.md ├── greyramp-osx └── colortrccompare.md ├── greyramp-rev2.nk ├── icctest-fulltv.py ├── icctest-osx.py ├── icctest-rev-ps-nuke.py ├── icctest-rev-ps.py ├── icctest-rev2.py ├── icctest.py ├── python ├── CompareHtml.py └── CompareOverHtml.py └── runall.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorPreservation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ColorPreservation.md -------------------------------------------------------------------------------- /Encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/Encoding.md -------------------------------------------------------------------------------- /EncodingOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/EncodingOverview.md -------------------------------------------------------------------------------- /FfmpegInputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/FfmpegInputs.md -------------------------------------------------------------------------------- /ICC/P3D60.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/P3D60.icc -------------------------------------------------------------------------------- /ICC/P3D65.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/P3D65.icc -------------------------------------------------------------------------------- /ICC/P3DCI.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/P3DCI.icc -------------------------------------------------------------------------------- /ICC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/README -------------------------------------------------------------------------------- /ICC/Rec2020-Rec1886.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/Rec2020-Rec1886.icc -------------------------------------------------------------------------------- /ICC/Rec709-Rec1886.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/Rec709-Rec1886.icc -------------------------------------------------------------------------------- /ICC/Simplified-sRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/Simplified-sRGB.icc -------------------------------------------------------------------------------- /ICC/gamma28.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/gamma28.icc -------------------------------------------------------------------------------- /ICC/linear.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/linear.icc -------------------------------------------------------------------------------- /ICC/rec2020.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/ICC/rec2020.icc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /MarkdownNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/MarkdownNotes.md -------------------------------------------------------------------------------- /OtherFfmpegArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/OtherFfmpegArgs.md -------------------------------------------------------------------------------- /Quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/Quickstart.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/README.md -------------------------------------------------------------------------------- /Testresults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/Testresults.md -------------------------------------------------------------------------------- /WebColorPreservation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/WebColorPreservation.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/_config.yml -------------------------------------------------------------------------------- /browsercompare/chrome-bt1886-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-bt1886-windows.png -------------------------------------------------------------------------------- /browsercompare/chrome-gamma2.2-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-gamma2.2-osx.png -------------------------------------------------------------------------------- /browsercompare/chrome-gamma2.2-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-gamma2.2-windows.png -------------------------------------------------------------------------------- /browsercompare/chrome-gamma2.8-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-gamma2.8-osx.png -------------------------------------------------------------------------------- /browsercompare/chrome-gamma2.8-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-gamma2.8-windows.png -------------------------------------------------------------------------------- /browsercompare/chrome-linear-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-linear-osx.png -------------------------------------------------------------------------------- /browsercompare/chrome-linear-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-linear-windows.png -------------------------------------------------------------------------------- /browsercompare/chrome-srgb-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-srgb-osx.png -------------------------------------------------------------------------------- /browsercompare/chrome-srgb-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/chrome-srgb-windows.png -------------------------------------------------------------------------------- /browsercompare/firefox-bt1886-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/firefox-bt1886-osx.png -------------------------------------------------------------------------------- /browsercompare/firefox-gamma2.2-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/firefox-gamma2.2-osx.png -------------------------------------------------------------------------------- /browsercompare/firefox-linear-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/firefox-linear-osx.png -------------------------------------------------------------------------------- /browsercompare/firefox-srgb-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/firefox-srgb-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-bt1886-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-bt1886-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-gamma2.2-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-gamma2.2-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-gamma2.8-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-gamma2.8-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-linear-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-linear-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-srgb-g22-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-srgb-g22-osx.png -------------------------------------------------------------------------------- /browsercompare/safari-srgb-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/browsercompare/safari-srgb-osx.png -------------------------------------------------------------------------------- /compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/compare.html -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/ffmpeg-4.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-4.4/Dockerfile -------------------------------------------------------------------------------- /docker/ffmpeg-4.4/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-4.4/runme.sh -------------------------------------------------------------------------------- /docker/ffmpeg-5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-5.0/Dockerfile -------------------------------------------------------------------------------- /docker/ffmpeg-5.0/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-5.0/runme.sh -------------------------------------------------------------------------------- /docker/ffmpeg-5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-5.1/Dockerfile -------------------------------------------------------------------------------- /docker/ffmpeg-5.1/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/ffmpeg-5.1/runme.sh -------------------------------------------------------------------------------- /docker/rocky-ffmpeg-5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/rocky-ffmpeg-5.1/Dockerfile -------------------------------------------------------------------------------- /docker/rocky-ffmpeg-5.1/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/docker/rocky-ffmpeg-5.1/runme.sh -------------------------------------------------------------------------------- /enctests/HDR_Encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/HDR_Encoding.md -------------------------------------------------------------------------------- /enctests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/README.md -------------------------------------------------------------------------------- /enctests/reference-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/README.md -------------------------------------------------------------------------------- /enctests/reference-results/h264-crf-results.otio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/h264-crf-results.otio -------------------------------------------------------------------------------- /enctests/reference-results/h264-crf-test-encode_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/h264-crf-test-encode_time.png -------------------------------------------------------------------------------- /enctests/reference-results/h264-crf-test-filesize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/h264-crf-test-filesize.png -------------------------------------------------------------------------------- /enctests/reference-results/h264-crf-test-vmaf_harmonic_mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/h264-crf-test-vmaf_harmonic_mean.png -------------------------------------------------------------------------------- /enctests/reference-results/prores-results.otio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/prores-results.otio -------------------------------------------------------------------------------- /enctests/reference-results/prores-test-encode_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/prores-test-encode_time.png -------------------------------------------------------------------------------- /enctests/reference-results/prores-test-filesize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/prores-test-filesize.png -------------------------------------------------------------------------------- /enctests/reference-results/prores-test-vmaf_harmonic_mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/reference-results/prores-test-vmaf_harmonic_mean.png -------------------------------------------------------------------------------- /enctests/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/runtest.sh -------------------------------------------------------------------------------- /enctests/sources/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.source 3 | *.exr 4 | -------------------------------------------------------------------------------- /enctests/sources/download_media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/download_media.sh -------------------------------------------------------------------------------- /enctests/sources/enc_sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/README.md -------------------------------------------------------------------------------- /enctests/sources/enc_sources/chimera_cars_srgb/chimera_cars_srgb.%05d.png.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/chimera_cars_srgb/chimera_cars_srgb.%05d.png.yml -------------------------------------------------------------------------------- /enctests/sources/enc_sources/chimera_coaster_srgb/chimera_coaster_srgb.%06d.png.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/chimera_coaster_srgb/chimera_coaster_srgb.%06d.png.yml -------------------------------------------------------------------------------- /enctests/sources/enc_sources/chimera_fountains_srgb/chimera_fountains_srgb.%05d.png.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/chimera_fountains_srgb/chimera_fountains_srgb.%05d.png.yml -------------------------------------------------------------------------------- /enctests/sources/enc_sources/download_media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/download_media.sh -------------------------------------------------------------------------------- /enctests/sources/enc_sources/thumbnails/chimera_cars_srgb.02516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/thumbnails/chimera_cars_srgb.02516.jpg -------------------------------------------------------------------------------- /enctests/sources/enc_sources/thumbnails/chimera_fountains_srgb.05439.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/thumbnails/chimera_fountains_srgb.05439.jpg -------------------------------------------------------------------------------- /enctests/sources/enc_sources/thumbnails/chimera_wind_srgb.01126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/thumbnails/chimera_wind_srgb.01126.jpg -------------------------------------------------------------------------------- /enctests/sources/enc_sources/thumbnails/sintel_trailer_2k_0591.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/enc_sources/thumbnails/sintel_trailer_2k_0591.jpg -------------------------------------------------------------------------------- /enctests/sources/hdr_sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/hdr_sources/README.md -------------------------------------------------------------------------------- /enctests/sources/hdr_sources/download_media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/hdr_sources/download_media.sh -------------------------------------------------------------------------------- /enctests/sources/hdr_sources/thumbnails/sparks2_srgb.06726.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/hdr_sources/thumbnails/sparks2_srgb.06726.jpg -------------------------------------------------------------------------------- /enctests/sources/hdr_sources/thumbnails/sparks_srgb.6015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/sources/hdr_sources/thumbnails/sparks_srgb.6015.jpg -------------------------------------------------------------------------------- /enctests/test_configs/base_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/base_tests.yml -------------------------------------------------------------------------------- /enctests/test_configs/h264_crf25_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/h264_crf25_tests.yml -------------------------------------------------------------------------------- /enctests/test_configs/h264_crf_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/h264_crf_tests.yml -------------------------------------------------------------------------------- /enctests/test_configs/h264_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/h264_tests.yml -------------------------------------------------------------------------------- /enctests/test_configs/prores_profile_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/prores_profile_tests.yml -------------------------------------------------------------------------------- /enctests/test_configs/prores_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/test_configs/prores_tests.yml -------------------------------------------------------------------------------- /enctests/testframework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enctests/testframework/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/encoders/__init__.py -------------------------------------------------------------------------------- /enctests/testframework/encoders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/encoders/base.py -------------------------------------------------------------------------------- /enctests/testframework/encoders/ffmpeg_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/encoders/ffmpeg_encoder.py -------------------------------------------------------------------------------- /enctests/testframework/generatetests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/generatetests.py -------------------------------------------------------------------------------- /enctests/testframework/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/main.py -------------------------------------------------------------------------------- /enctests/testframework/otio2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/otio2html.py -------------------------------------------------------------------------------- /enctests/testframework/templates/basic.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/templates/basic.html.jinja -------------------------------------------------------------------------------- /enctests/testframework/templates/doctests.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/templates/doctests.html.jinja -------------------------------------------------------------------------------- /enctests/testframework/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/utils/__init__.py -------------------------------------------------------------------------------- /enctests/testframework/utils/outputTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/utils/outputTemplate.py -------------------------------------------------------------------------------- /enctests/testframework/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/enctests/testframework/utils/utils.py -------------------------------------------------------------------------------- /gamuttests/DisplayP3-asRec2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/DisplayP3-asRec2020.png -------------------------------------------------------------------------------- /gamuttests/apply-icc2020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/apply-icc2020.py -------------------------------------------------------------------------------- /gamuttests/gamuttest_v001.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/gamuttest_v001.nk -------------------------------------------------------------------------------- /gamuttests/iccgamut/gamuttest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/iccgamut/gamuttest.md -------------------------------------------------------------------------------- /gamuttests/ps-combined-displayp3-g2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/ps-combined-displayp3-g2.2.png -------------------------------------------------------------------------------- /gamuttests/ps-combined-rec2020-g2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/ps-combined-rec2020-g2.2.png -------------------------------------------------------------------------------- /gamuttests/ps-combined-rec2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/ps-combined-rec2020.png -------------------------------------------------------------------------------- /gamuttests/rec709-asRec2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/gamuttests/rec709-asRec2020.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/index.md -------------------------------------------------------------------------------- /sourceimages/1920px-SMPTE_Color_Bars_16x9-edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/1920px-SMPTE_Color_Bars_16x9-edges.png -------------------------------------------------------------------------------- /sourceimages/Digital_LAD_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/Digital_LAD_raw.png -------------------------------------------------------------------------------- /sourceimages/Digital_LAD_sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/Digital_LAD_sRGB.png -------------------------------------------------------------------------------- /sourceimages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/README.md -------------------------------------------------------------------------------- /sourceimages/chip-chart-1080-noicc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/chip-chart-1080-noicc.png -------------------------------------------------------------------------------- /sourceimages/chip-chart-1080-noicc.png.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/chip-chart-1080-noicc.png.yml -------------------------------------------------------------------------------- /sourceimages/default-ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/default-ffmpeg.png -------------------------------------------------------------------------------- /sourceimages/greyscale-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-raw.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-bt1886-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-bt1886-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-bt1886.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-bt1886.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-gamma195-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-gamma195-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-gamma22-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-gamma22-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-gamma22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-gamma22.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-gamma28-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-gamma28-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-gamma28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-gamma28.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-lin-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-lin-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-lin.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-rec709-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-rec709-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-rec709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-rec709.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-srgb-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-srgb-ps.png -------------------------------------------------------------------------------- /sourceimages/greyscale-source-srgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/greyscale-source-srgb.png -------------------------------------------------------------------------------- /sourceimages/libswscale-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/libswscale-example.png -------------------------------------------------------------------------------- /sourceimages/original-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/original-png.png -------------------------------------------------------------------------------- /sourceimages/radialgrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/radialgrad.png -------------------------------------------------------------------------------- /sourceimages/radialgrad.png.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/radialgrad.png.yml -------------------------------------------------------------------------------- /sourceimages/ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/sourceimages/ward.png -------------------------------------------------------------------------------- /static/reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/static/reorder.png -------------------------------------------------------------------------------- /tests/chip-chart-yuvconvert/yuvconvert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/chip-chart-yuvconvert/yuvconvert.md -------------------------------------------------------------------------------- /tests/chip-color-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/chip-color-test.py -------------------------------------------------------------------------------- /tests/greyramp-fulltv/fullrange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/greyramp-fulltv/fullrange.md -------------------------------------------------------------------------------- /tests/greyramp-osx/colortrccompare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/greyramp-osx/colortrccompare.md -------------------------------------------------------------------------------- /tests/greyramp-rev2.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/greyramp-rev2.nk -------------------------------------------------------------------------------- /tests/icctest-fulltv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest-fulltv.py -------------------------------------------------------------------------------- /tests/icctest-osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest-osx.py -------------------------------------------------------------------------------- /tests/icctest-rev-ps-nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest-rev-ps-nuke.py -------------------------------------------------------------------------------- /tests/icctest-rev-ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest-rev-ps.py -------------------------------------------------------------------------------- /tests/icctest-rev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest-rev2.py -------------------------------------------------------------------------------- /tests/icctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/icctest.py -------------------------------------------------------------------------------- /tests/python/CompareHtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/python/CompareHtml.py -------------------------------------------------------------------------------- /tests/python/CompareOverHtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/python/CompareOverHtml.py -------------------------------------------------------------------------------- /tests/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardssam/ffmpeg-tests/HEAD/tests/runall.sh --------------------------------------------------------------------------------