Install HTTP Live Streaming Tools on Linux ARM

Is there a way to install HLS tools on ARM Linux? The only one I can find is for x86 Linux.

I'm working on a project on a Raspberry Pi. I'd like to install the tool to generate my hls files, but the alternatives are more complicated to use.

Is there a way to run them like Mac OS does with Rosseta?

is there a way to run them like Mac OS does with Rosseta?

Yes, you can use qemu.

If you apt-get install qemu-user qemu-user-binfmt then invoking an x86 executable will use qemu to run it. But there’s a snag - if the executable is dynamically linked, you also need the x86 versions of the libraries that it is linked with. On Debian, this is achieved using ”multiarch”.

Of course the performance may not be great!

If I were you, I’d work out how to do it using ffmpeg. It’s not fundamentally difficult, though it is somewhat tedious to find all the right incantations.

Install HTTP Live Streaming Tools on Linux ARM
 
 
Q