nschlia / ffmpegfs

FUSE-based transcoding filesystem with video support from many formats to FLAC, MP4, TS, WebM, OGG, MP3, HLS, and others.
https://nschlia.github.io/ffmpegfs/
GNU General Public License v3.0
206 stars 14 forks source link

OPUS support #10

Closed HetareKing closed 5 years ago

HetareKing commented 5 years ago

Destination type support could probably be generalized to support anything FFMPEG supports, but I only needed OPUS support, so ended up taking the easy way out.

nschlia commented 5 years ago

Generally allowing every output format supported by FFMpeg sounds great, alas, to support on-the-fly conversion (and access during conversion phase even before the encoding is completed) requires some extra handling for most formats or other tricks. Therefore there's no general way. Formats need to be added one by one...

Thanks for the Opus addition, I'll merge the changes into the base branch.