Page 2 of 2

Re: Fuse 1.5.1 released

Posted: Mon Mar 05, 2018 2:42 pm
by Nomad
Ah that's a shame I hoped I would be able to use it kind of like the expects library.

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 3:14 pm
by RMartins
I tried to download fuse-utils for MAC, but apparently there is no specific download of binaries for MAC.
I went to https://sourceforge.net/projects/fuse-e ... ils/1.4.0/ and press the DOWNLOAD green button, but got fuse-1.5.1.tar.gz

Not a very good UI from sourceforge (yeah, it has the filename in small letters on the button) but it doesn't make up for linking to the wrong context file.

If we click on the actual file, we the expected fuse-utils-1.4.0.tar.gz
But then we need to compile it, and also requires LibSpectrum.

So no joy for a simple MacOS download.
I'm going to bite the bullet and try and compile this thing next.

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 3:36 pm
by dfzx
RMartins wrote: Sat Mar 10, 2018 3:14 pm I tried to download fuse-utils for MAC, but apparently there is no specific download of binaries for MAC.
I went to https://sourceforge.net/projects/fuse-e ... ils/1.4.0/ and press the DOWNLOAD green button, but got fuse-1.5.1.tar.gz

Not a very good UI from sourceforge (yeah, it has the filename in small letters on the button) but it doesn't make up for linking to the wrong context file.

If we click on the actual file, we the expected fuse-utils-1.4.0.tar.gz
But then we need to compile it, and also requires LibSpectrum.

So no joy for a simple MacOS download.
I'm going to bite the bullet and try and compile this thing next.
Fuse for MacOS has it's own site:

https://sourceforge.net/projects/fuse-for-macosx/files/

I don't do the Mac thing, and I'm not sure exactly what you're after, but you'd probably do better starting there. :)

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 3:54 pm
by RMartins
dfzx wrote: Sat Mar 10, 2018 3:36 pm Fuse for MacOS has it's own site:

https://sourceforge.net/projects/fuse-for-macosx/files/

I don't do the Mac thing, and I'm not sure exactly what you're after, but you'd probably do better starting there. :)
I know, but fuse-utils is not part of the distribution.

EDIT: Oh wait, that link, as another set of files for fuse-utils.
I was referring to the actual Fuse for Mac App.
So forget the rest of this post :)

...

Speaking of which, libspectrum 1.4.1 does not compile on Mac OS X 10.11.6 (El Capitan)

When running ./configure I get:
...
checking for GLIB... no
configure: error: GLib not found
This GLIB is not mentioned in the README, so does anyone have a clue of which library this is, before I dive in ?

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 4:00 pm
by dfzx
RMartins wrote: Sat Mar 10, 2018 3:54 pm I know, but fuse-utils is not part of the distribution.

This GLIB is not mentioned in the README, so does anyone have a clue of which library this is, before I dive in ?
Fair enough. As I say, I don't do Mac... :)

Glib is the GNOME graphics library. Top link of a Google search points me here:

http://macappstore.org/glib/

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 4:44 pm
by RMartins
dfzx wrote: Sat Mar 10, 2018 4:00 pm Fair enough. As I say, I don't do Mac... :)

Glib is the GNOME graphics library. Top link of a Google search points me here:

http://macappstore.org/glib/
Thanks [mention]dfzx[/mention], your previous link, provided a download which contained a binary version of fmfconv, which solved my immediate problem for now, without requiring me to go back to a Windows PC.
Thanks.

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 4:48 pm
by serbalgi
RMartins wrote: Sat Mar 10, 2018 3:54 pm Speaking of which, libspectrum 1.4.1 does not compile on Mac OS X 10.11.6 (El Capitan)

When running ./configure I get:
...
checking for GLIB... no
configure: error: GLib not found
This GLIB is not mentioned in the README, so does anyone have a clue of which library this is, before I dive in ?
Use the following option to enable an internal replacement and avoid that external dependency:

Code: Select all

./configure --with-fake-glib

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 6:09 pm
by RMartins
I using the fuse-utils 1.2.2 for Mac OS X.

Does any one know of an fmfconv option to save directly as MPG, to avoid the AVI 1.07GB file limit ?

I checked the help screen, but besides the --yuv, which does not generate an MPG file, I'm clueless for any option that would create an MPG file, without splitting it up into 1.07GB chunks

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 6:21 pm
by serbalgi
RMartins wrote: Sat Mar 10, 2018 6:09 pm I using the fuse-utils 1.2.2 for Mac OS X.

Does any one know of an fmfconv option to save directly as MPG, to avoid the AVI 1.07GB file limit ?

I checked the help screen, but besides the --yuv, which does not generate an MPG file, I'm clueless for any option that would create an MPG file, without splitting it up into 1.07GB chunks
I think you need ffmpeg to do the clever handling of MPG files. The unix man page have some examples like these:

Code: Select all

fmfconv input.fmf | ffmpeg -i - -aspect 4:3 -target pal-dvd output.vob

fmfconv input.fmf | ffmpeg -i - -vf scale=480:360 -r 25 \
                      -codec:v h264 -codec:a aac -f mov -b:a 128000 \
                      -b:v 600000 -pix_fmt yuv420p -strict -2 output.mov

Re: Fuse 1.5.1 released

Posted: Sat Mar 10, 2018 6:49 pm
by Ast A. Moore
I used the following settings for h.264 and h.265, respectively:

Code: Select all

fmfconv  | ffmpeg -i - -vf scale=640:480 -r 50 -codec:v h264 -codec:a aac -f mp4 -ar 44100 -ac 1 -b:a 56k -b:v 256k -pix_fmt yuv420p -strict -2 -y 

Code: Select all

fmfconv  | ffmpeg -i - -vf scale=640:480 -r 50 -codec:v hevc -codec:a aac -tag:v hvc1 -f mp4 -ar 44100 -ac 1 -b:a 56k -b:v 128k -pix_fmt yuv420p -strict -2 -y 
The h.265 version works better, as it doesn’t produce a few garbed frames at the beginning of the video.