├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── question---help.md └── workflows │ ├── lint.yml │ └── mock │ └── VERSION ├── .gitignore ├── README.md ├── banner.png ├── issue-report.sh ├── libs ├── dri │ └── dummy_drv_video.so ├── libavcodec-ffmpeg.so.56 ├── libavformat-ffmpeg.so.56 ├── libavutil-ffmpeg.so.54 ├── libbluray.so.1 ├── libdca.so.0 ├── libgme.so.0 ├── libgnutls-deb0.so.28 ├── libgsm.so.1 ├── libhogweed.so.4 ├── libmodplug.so.1 ├── libnettle.so.6 ├── libnuma.so.1 ├── libopenjpeg.so.5 ├── libopenjpeg_JPWL.so.5 ├── libopus.so.0 ├── liborc-0.4.so.0 ├── libp11-kit.so.0 ├── libpng12.so.0 ├── librtmp.so.1 ├── libschroedinger-1.0.so.0 ├── libshine.so.3 ├── libsoxr.so.0 ├── libspeex.so.1 ├── libssh-gcrypt.so.4 ├── libssh-gcrypt_threads.so.4 ├── libswresample-ffmpeg.so.1 ├── libtasn1.so.6 ├── libtheora.so.0 ├── libtheoradec.so.1 ├── libtheoraenc.so.1 ├── libtwolame.so.0 ├── libva.so.1 ├── libvpx.so.2 ├── libvpx.so.2.0 ├── libwavpack.so.1 ├── libwebp.so.5 ├── libx264.so.146 ├── libx265.so.59 ├── libxvidcore.so.4 ├── libzvbi-chains.so.0 ├── libzvbi.so.0 ├── x264-10bit │ └── libx264.so.146 └── x265-10bit │ └── libx265.so.59 ├── motd.txt ├── patcher.sh ├── plugins ├── libgstdtsdec.so └── libgstlibav.so └── wrappers ├── ffmpeg.sh ├── gst-inspect-1.0.sh └── gst-launch-1.0.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question---help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/.github/ISSUE_TEMPLATE/question---help.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/mock/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/.github/workflows/mock/VERSION -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/banner.png -------------------------------------------------------------------------------- /issue-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/issue-report.sh -------------------------------------------------------------------------------- /libs/dri/dummy_drv_video.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/dri/dummy_drv_video.so -------------------------------------------------------------------------------- /libs/libavcodec-ffmpeg.so.56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libavcodec-ffmpeg.so.56 -------------------------------------------------------------------------------- /libs/libavformat-ffmpeg.so.56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libavformat-ffmpeg.so.56 -------------------------------------------------------------------------------- /libs/libavutil-ffmpeg.so.54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libavutil-ffmpeg.so.54 -------------------------------------------------------------------------------- /libs/libbluray.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libbluray.so.1 -------------------------------------------------------------------------------- /libs/libdca.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libdca.so.0 -------------------------------------------------------------------------------- /libs/libgme.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libgme.so.0 -------------------------------------------------------------------------------- /libs/libgnutls-deb0.so.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libgnutls-deb0.so.28 -------------------------------------------------------------------------------- /libs/libgsm.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libgsm.so.1 -------------------------------------------------------------------------------- /libs/libhogweed.so.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libhogweed.so.4 -------------------------------------------------------------------------------- /libs/libmodplug.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libmodplug.so.1 -------------------------------------------------------------------------------- /libs/libnettle.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libnettle.so.6 -------------------------------------------------------------------------------- /libs/libnuma.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libnuma.so.1 -------------------------------------------------------------------------------- /libs/libopenjpeg.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libopenjpeg.so.5 -------------------------------------------------------------------------------- /libs/libopenjpeg_JPWL.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libopenjpeg_JPWL.so.5 -------------------------------------------------------------------------------- /libs/libopus.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libopus.so.0 -------------------------------------------------------------------------------- /libs/liborc-0.4.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/liborc-0.4.so.0 -------------------------------------------------------------------------------- /libs/libp11-kit.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libp11-kit.so.0 -------------------------------------------------------------------------------- /libs/libpng12.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libpng12.so.0 -------------------------------------------------------------------------------- /libs/librtmp.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/librtmp.so.1 -------------------------------------------------------------------------------- /libs/libschroedinger-1.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libschroedinger-1.0.so.0 -------------------------------------------------------------------------------- /libs/libshine.so.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libshine.so.3 -------------------------------------------------------------------------------- /libs/libsoxr.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libsoxr.so.0 -------------------------------------------------------------------------------- /libs/libspeex.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libspeex.so.1 -------------------------------------------------------------------------------- /libs/libssh-gcrypt.so.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libssh-gcrypt.so.4 -------------------------------------------------------------------------------- /libs/libssh-gcrypt_threads.so.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libssh-gcrypt_threads.so.4 -------------------------------------------------------------------------------- /libs/libswresample-ffmpeg.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libswresample-ffmpeg.so.1 -------------------------------------------------------------------------------- /libs/libtasn1.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libtasn1.so.6 -------------------------------------------------------------------------------- /libs/libtheora.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libtheora.so.0 -------------------------------------------------------------------------------- /libs/libtheoradec.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libtheoradec.so.1 -------------------------------------------------------------------------------- /libs/libtheoraenc.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libtheoraenc.so.1 -------------------------------------------------------------------------------- /libs/libtwolame.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libtwolame.so.0 -------------------------------------------------------------------------------- /libs/libva.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libva.so.1 -------------------------------------------------------------------------------- /libs/libvpx.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libvpx.so.2 -------------------------------------------------------------------------------- /libs/libvpx.so.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libvpx.so.2.0 -------------------------------------------------------------------------------- /libs/libwavpack.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libwavpack.so.1 -------------------------------------------------------------------------------- /libs/libwebp.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libwebp.so.5 -------------------------------------------------------------------------------- /libs/libx264.so.146: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libx264.so.146 -------------------------------------------------------------------------------- /libs/libx265.so.59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libx265.so.59 -------------------------------------------------------------------------------- /libs/libxvidcore.so.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libxvidcore.so.4 -------------------------------------------------------------------------------- /libs/libzvbi-chains.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libzvbi-chains.so.0 -------------------------------------------------------------------------------- /libs/libzvbi.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/libzvbi.so.0 -------------------------------------------------------------------------------- /libs/x264-10bit/libx264.so.146: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/x264-10bit/libx264.so.146 -------------------------------------------------------------------------------- /libs/x265-10bit/libx265.so.59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/libs/x265-10bit/libx265.so.59 -------------------------------------------------------------------------------- /motd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/motd.txt -------------------------------------------------------------------------------- /patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/patcher.sh -------------------------------------------------------------------------------- /plugins/libgstdtsdec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/plugins/libgstdtsdec.so -------------------------------------------------------------------------------- /plugins/libgstlibav.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/plugins/libgstlibav.so -------------------------------------------------------------------------------- /wrappers/ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/wrappers/ffmpeg.sh -------------------------------------------------------------------------------- /wrappers/gst-inspect-1.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/wrappers/gst-inspect-1.0.sh -------------------------------------------------------------------------------- /wrappers/gst-launch-1.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPresso/VideoStation-FFMPEG-Patcher/HEAD/wrappers/gst-launch-1.0.sh --------------------------------------------------------------------------------