├── LICENSE ├── README.md ├── docker ├── Dockerfile.package ├── Dockerfile.source ├── build_docker_image.sh ├── patch │ ├── cvdef.h │ └── opencv.pc └── run_docker_container.sh ├── patches ├── 0001-ffmpeg-video-analytics-v0.4-release.patch ├── 0002-Use-a-common-way-for-param-tags.patch ├── 0003-C-API-related-changes-for-OpenVINO-2020.1.patch └── 0004-FFVA-v0.5-release-patches.patch ├── samples ├── cpp │ └── deep-player │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ └── FindFFmpeg.cmake │ │ ├── install_dependencies.sh │ │ ├── sample │ │ ├── CMakeLists.txt │ │ ├── flags.h │ │ └── main.cc │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── bounded_buffer.h │ │ ├── common.h │ │ ├── decoder.cc │ │ ├── decoder.h │ │ ├── demuxer.cc │ │ ├── demuxer.h │ │ ├── filter.cc │ │ ├── filter.h │ │ ├── input_source.cc │ │ ├── input_source.h │ │ ├── opencv_utils.cc │ │ ├── opencv_utils.h │ │ ├── render.cc │ │ └── render.h ├── model_downloader_configs │ ├── intel_models.LST │ ├── intel_models_for_samples.LST │ └── raw_models.LST ├── model_optimizer_configs │ └── yolo_v3.json ├── model_proc │ ├── age-gender-recognition-retail-0013.json │ ├── emotions-recognition-retail-0003.json │ ├── face-detection-adas-0001.json │ ├── face-detection-retail-0004.json │ ├── face-person-detection-retail-0002.json │ ├── face-reidentification-retail-0095.json │ ├── frozen_darknet_yolov3.json │ ├── landmarks-regression-retail-0009.json │ ├── license-plate-recognition-barrier-0001.json │ ├── mobilenet-ssd.json │ ├── pascal.json │ ├── pedestrian-and-vehicle-detector-adas-0001.json │ ├── pedestrian-detection-adas-0002.json │ ├── person-attributes-recognition-crossroad-0230.json │ ├── person-detection-retail-0002.json │ ├── person-detection-retail-0013.json │ ├── person-reidentification-retail-0079.json │ ├── person-vehicle-bike-detection-crossroad-0078.json │ ├── vehicle-attributes-recognition-barrier-0039.json │ ├── vehicle-detection-adas-0002.json │ └── vehicle-license-plate-detection-barrier-0106.json └── shell │ ├── README.md │ ├── face_detection_and_classification.sh │ ├── metapublish │ ├── face_metapublish_file.sh │ └── face_metapublish_kafka.sh │ ├── object_detection_and_transcode.sh │ ├── object_detection_ssd.sh │ ├── object_detection_yolov3.sh │ └── reidentification │ ├── README.md │ ├── face_recognition.sh │ ├── gallery │ ├── features │ │ ├── person1_0_frame_0_idx_0.tensor │ │ ├── person1_1_frame_0_idx_0.tensor │ │ ├── person2_0_frame_0_idx_0.tensor │ │ ├── person2_1_frame_0_idx_0.tensor │ │ └── person3_0_frame_0_idx_0.tensor │ └── gallery.json │ └── gallery_generator.py ├── scripts ├── .clang-format ├── build_ffmpeg-dynamic.sh ├── build_ffmpeg-static.sh ├── build_install_libva_media_driver.sh ├── install_cmake.sh ├── install_metapublish_dependencies.sh ├── install_opencv.sh ├── path_extractor.sh ├── setlocale.sh └── setup_env.sh ├── third-party-programs └── thirdparty ├── README.md └── dldt-c-api ├── README.md └── source ├── v2.0.0.tar.gz └── v2.0.1.tar.gz /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/Dockerfile.package -------------------------------------------------------------------------------- /docker/Dockerfile.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/Dockerfile.source -------------------------------------------------------------------------------- /docker/build_docker_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/build_docker_image.sh -------------------------------------------------------------------------------- /docker/patch/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/patch/cvdef.h -------------------------------------------------------------------------------- /docker/patch/opencv.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/patch/opencv.pc -------------------------------------------------------------------------------- /docker/run_docker_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/docker/run_docker_container.sh -------------------------------------------------------------------------------- /patches/0001-ffmpeg-video-analytics-v0.4-release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/patches/0001-ffmpeg-video-analytics-v0.4-release.patch -------------------------------------------------------------------------------- /patches/0002-Use-a-common-way-for-param-tags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/patches/0002-Use-a-common-way-for-param-tags.patch -------------------------------------------------------------------------------- /patches/0003-C-API-related-changes-for-OpenVINO-2020.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/patches/0003-C-API-related-changes-for-OpenVINO-2020.1.patch -------------------------------------------------------------------------------- /patches/0004-FFVA-v0.5-release-patches.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/patches/0004-FFVA-v0.5-release-patches.patch -------------------------------------------------------------------------------- /samples/cpp/deep-player/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/.gitignore -------------------------------------------------------------------------------- /samples/cpp/deep-player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cpp/deep-player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/README.md -------------------------------------------------------------------------------- /samples/cpp/deep-player/cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /samples/cpp/deep-player/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/install_dependencies.sh -------------------------------------------------------------------------------- /samples/cpp/deep-player/sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/sample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cpp/deep-player/sample/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/sample/flags.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/sample/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/sample/main.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/bounded_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/bounded_buffer.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/common.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/decoder.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/decoder.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/demuxer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/demuxer.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/demuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/demuxer.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/filter.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/filter.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/input_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/input_source.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/input_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/input_source.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/opencv_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/opencv_utils.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/opencv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/opencv_utils.h -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/render.cc -------------------------------------------------------------------------------- /samples/cpp/deep-player/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/cpp/deep-player/src/render.h -------------------------------------------------------------------------------- /samples/model_downloader_configs/intel_models.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_downloader_configs/intel_models.LST -------------------------------------------------------------------------------- /samples/model_downloader_configs/intel_models_for_samples.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_downloader_configs/intel_models_for_samples.LST -------------------------------------------------------------------------------- /samples/model_downloader_configs/raw_models.LST: -------------------------------------------------------------------------------- 1 | ssd300 2 | mobilenet-ssd 3 | -------------------------------------------------------------------------------- /samples/model_optimizer_configs/yolo_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_optimizer_configs/yolo_v3.json -------------------------------------------------------------------------------- /samples/model_proc/age-gender-recognition-retail-0013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/age-gender-recognition-retail-0013.json -------------------------------------------------------------------------------- /samples/model_proc/emotions-recognition-retail-0003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/emotions-recognition-retail-0003.json -------------------------------------------------------------------------------- /samples/model_proc/face-detection-adas-0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/face-detection-adas-0001.json -------------------------------------------------------------------------------- /samples/model_proc/face-detection-retail-0004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/face-detection-retail-0004.json -------------------------------------------------------------------------------- /samples/model_proc/face-person-detection-retail-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/face-person-detection-retail-0002.json -------------------------------------------------------------------------------- /samples/model_proc/face-reidentification-retail-0095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/face-reidentification-retail-0095.json -------------------------------------------------------------------------------- /samples/model_proc/frozen_darknet_yolov3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/frozen_darknet_yolov3.json -------------------------------------------------------------------------------- /samples/model_proc/landmarks-regression-retail-0009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/landmarks-regression-retail-0009.json -------------------------------------------------------------------------------- /samples/model_proc/license-plate-recognition-barrier-0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/license-plate-recognition-barrier-0001.json -------------------------------------------------------------------------------- /samples/model_proc/mobilenet-ssd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/mobilenet-ssd.json -------------------------------------------------------------------------------- /samples/model_proc/pascal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/pascal.json -------------------------------------------------------------------------------- /samples/model_proc/pedestrian-and-vehicle-detector-adas-0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/pedestrian-and-vehicle-detector-adas-0001.json -------------------------------------------------------------------------------- /samples/model_proc/pedestrian-detection-adas-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/pedestrian-detection-adas-0002.json -------------------------------------------------------------------------------- /samples/model_proc/person-attributes-recognition-crossroad-0230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/person-attributes-recognition-crossroad-0230.json -------------------------------------------------------------------------------- /samples/model_proc/person-detection-retail-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/person-detection-retail-0002.json -------------------------------------------------------------------------------- /samples/model_proc/person-detection-retail-0013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/person-detection-retail-0013.json -------------------------------------------------------------------------------- /samples/model_proc/person-reidentification-retail-0079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/person-reidentification-retail-0079.json -------------------------------------------------------------------------------- /samples/model_proc/person-vehicle-bike-detection-crossroad-0078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/person-vehicle-bike-detection-crossroad-0078.json -------------------------------------------------------------------------------- /samples/model_proc/vehicle-attributes-recognition-barrier-0039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/vehicle-attributes-recognition-barrier-0039.json -------------------------------------------------------------------------------- /samples/model_proc/vehicle-detection-adas-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/vehicle-detection-adas-0002.json -------------------------------------------------------------------------------- /samples/model_proc/vehicle-license-plate-detection-barrier-0106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/model_proc/vehicle-license-plate-detection-barrier-0106.json -------------------------------------------------------------------------------- /samples/shell/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/shell/face_detection_and_classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/face_detection_and_classification.sh -------------------------------------------------------------------------------- /samples/shell/metapublish/face_metapublish_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/metapublish/face_metapublish_file.sh -------------------------------------------------------------------------------- /samples/shell/metapublish/face_metapublish_kafka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/metapublish/face_metapublish_kafka.sh -------------------------------------------------------------------------------- /samples/shell/object_detection_and_transcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/object_detection_and_transcode.sh -------------------------------------------------------------------------------- /samples/shell/object_detection_ssd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/object_detection_ssd.sh -------------------------------------------------------------------------------- /samples/shell/object_detection_yolov3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/object_detection_yolov3.sh -------------------------------------------------------------------------------- /samples/shell/reidentification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/README.md -------------------------------------------------------------------------------- /samples/shell/reidentification/face_recognition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/face_recognition.sh -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/features/person1_0_frame_0_idx_0.tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/features/person1_0_frame_0_idx_0.tensor -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/features/person1_1_frame_0_idx_0.tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/features/person1_1_frame_0_idx_0.tensor -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/features/person2_0_frame_0_idx_0.tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/features/person2_0_frame_0_idx_0.tensor -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/features/person2_1_frame_0_idx_0.tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/features/person2_1_frame_0_idx_0.tensor -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/features/person3_0_frame_0_idx_0.tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/features/person3_0_frame_0_idx_0.tensor -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery/gallery.json -------------------------------------------------------------------------------- /samples/shell/reidentification/gallery_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/samples/shell/reidentification/gallery_generator.py -------------------------------------------------------------------------------- /scripts/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/.clang-format -------------------------------------------------------------------------------- /scripts/build_ffmpeg-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/build_ffmpeg-dynamic.sh -------------------------------------------------------------------------------- /scripts/build_ffmpeg-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/build_ffmpeg-static.sh -------------------------------------------------------------------------------- /scripts/build_install_libva_media_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/build_install_libva_media_driver.sh -------------------------------------------------------------------------------- /scripts/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/install_cmake.sh -------------------------------------------------------------------------------- /scripts/install_metapublish_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/install_metapublish_dependencies.sh -------------------------------------------------------------------------------- /scripts/install_opencv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/install_opencv.sh -------------------------------------------------------------------------------- /scripts/path_extractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/path_extractor.sh -------------------------------------------------------------------------------- /scripts/setlocale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/setlocale.sh -------------------------------------------------------------------------------- /scripts/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/scripts/setup_env.sh -------------------------------------------------------------------------------- /third-party-programs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/third-party-programs -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /thirdparty/dldt-c-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/thirdparty/dldt-c-api/README.md -------------------------------------------------------------------------------- /thirdparty/dldt-c-api/source/v2.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/thirdparty/dldt-c-api/source/v2.0.0.tar.gz -------------------------------------------------------------------------------- /thirdparty/dldt-c-api/source/v2.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCDP/FFmpeg-patch/HEAD/thirdparty/dldt-c-api/source/v2.0.1.tar.gz --------------------------------------------------------------------------------