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

is it me or nothing happens ? #55

Closed Foul closed 4 years ago

Foul commented 4 years ago

i cloned the git repo, installed all the dependancies,

./autogen.sh ./configure make make install

everything ok... i mount the filesystem : ffmpegfs --audiobitrate=256K --videobitrate=1.5M /mnt/BACKUP/Video/ /mnt/ffmpegfs -o allow_other,ro

ffmpegfs

but at the end... everything is the same in the 2 test directories...

nschlia commented 4 years ago

All correct, but you forgot the destination type, e.g. try

ffmpegfs --audiobitrate=256K --videobitrate=1.5M /mnt/BACKUP/Video/ /mnt/ffmpegfs -o allow_other,ro,desttype=mp4

Set desttype to whatever you want, mp4, webm or so.

Foul commented 4 years ago

Working perfect ! i just followed the exemple in the usage section ;) You could add this "desttype=mp4" to it ;)

thx !

nschlia commented 4 years ago

Working perfect ! i just followed the exemple in the usage section ;) You could add this "desttype=mp4" to it ;)

You're perfectly right. I was not aware of that, I'll add this right away.