Yucom/media-converter
Arkadiusz Hiler d957ff7c35 Use GitHub mirrors for gstreamer rust repos.
Those are the original repos that were later moved to freedesktop.org.
The author recently started updating them as mirrors.

Freedesktop.org goes down much more often than GitHub and we fetch
everything else from GitHub anyway.

It's better to depend on fewer hosting services to have fewer
interruptions.
2022-08-03 13:40:46 +03:00
..
src media-converter: Fix read-only DB detection 2022-04-05 18:13:11 +03:00
blank.mkv media-converter: Use AV1/Opus instead of Theora/Vorbis 2022-01-19 11:29:54 +02:00
blank.ptna media-converter: Add media-converter gstreamer plugin 2020-09-29 14:29:05 -05:00
build.rs media-converter: Update dependencies 2022-01-19 11:29:54 +02:00
Cargo.lock Use GitHub mirrors for gstreamer rust repos. 2022-08-03 13:40:46 +03:00
Cargo.toml Use GitHub mirrors for gstreamer rust repos. 2022-08-03 13:40:46 +03:00
make_blank_ptna.c media-converter: Add media-converter gstreamer plugin 2020-09-29 14:29:05 -05:00
Makefile media-converter: Use AV1/Opus instead of Theora/Vorbis 2022-01-19 11:29:54 +02:00
README media-converter: Add media-converter gstreamer plugin 2020-09-29 14:29:05 -05:00

This module is a gstreamer plugin which provides the ability to replace media
data encoded in certain formats with media encoded in another format. There
are two main components, `videoconv` for converting video data provided to
Quartz and Media Foundation, and `audioconv` for converting audio data
provided to XAudio2.

The broad idea is to hash the incoming data and replace it with data looked up
from a cache. If there is a cache miss, then the data is recorded to disk and
instead replaced by "blank" media. The conversion should be transparent to the
application (Wine, FAudio) so no changes are required to the application.

See the accompanying source files for more information.