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
198 stars 14 forks source link

Media type overlap requirement #11

Closed HetareKing closed 5 years ago

HetareKing commented 5 years ago

Audio files are often accompanied by image files in the same directory containing cover art and such. Unfortunately, FFmpeg considers these to be video files and as a result ffmpegfs would try to convert these to the destination type, even if that destination type is an audio format. These changes make it so that there must at least be some overlap in types of media between the two formats to be considered convertible, preventing this situation without being overly restrictive.

nschlia commented 5 years ago

Thanks for the additions, I merged them to the main branch.