With the recent findings [0] that some of the “free file converter” websites in the wild were actually injecting malware into the results as the first stage of various attacks, I’ve wanted to stand something like this up on a server for my family. This looks like exactly what I’ve been looking for. - [0] https://www.fbi.gov/contact-us/field-offices/denver/news/fbi...
Open source and self hostable/private file converter
41–50 of 120 posts
Re: Open source and self hostable/private file converter
#42Re: Open source and self hostable/private file converter
#43Maybe we could compile ffmpeg to WebAssembly and handle video conversion offline too?
import { FFmpeg } from "@ffmpeg/ffmpeg";
`@ffmpeg/ffmpeg` is https://ffmpegwasm.netlify.app.If you finessed that `supportedFormats` array to add video formats, this would probably just work.
Re: Open source and self hostable/private file converter
#44Is Vert like a simplified version of https://ffmpeg-web.netlify.app/ ?
I think yes.
> Video uploads to a server for processing by default, learn how to set it up locally here.
The server is open source too: https://github.com/VERT-sh/vertd
Re: Open source and self hostable/private file converter
#45Maybe we could compile ffmpeg to WebAssembly and handle video conversion offline too?
That's exactly what this does: https://github.com/VERT-sh/VERT/blob/2c8cb1922cf611489022645... import { FFmpeg } from "@ffmpeg/ffmpeg"; `@ffmpeg/ffmpeg` is https://ffmpegwasm.netlify.app . If you finessed that `supportedFormats` array to add video formats, this would probably just work.
> Video uploads to a server for processing by default, learn how to set it up locally here.
The server code is open source too: https://github.com/VERT-sh/vertd
Re: Open source and self hostable/private file converter
#46Re: Open source and self hostable/private file converter
#47Earlier quoted context omitted.
A relevant audience are the corporate computing inmates, who cannot install anything locally... They are happy to find utilities wrapped behind some web front.
Ahh good point. An often missed driver for the cloud-ification of everything is that it offers a way to escape corporate IT. Sending a 20mb file 2000 miles away to do something trivial to it and send it back is easier than getting permission to install an app.
Re: Open source and self hostable/private file converter
#48It's ffmpeg all the way down. I can't imagine what the internet would be if there weren't such a marvelous piece of software.
Re: Open source and self hostable/private file converter
#49Why do such things need to be hosted at all? I've got a few file converter apps on my laptop. They're faster and better and you don't need to stream the data off somewhere just to process and stream back, which is silly.
Re: Open source and self hostable/private file converter
#50With the recent findings [0] that some of the “free file converter” websites in the wild were actually injecting malware into the results as the first stage of various attacks, I’ve wanted to stand something like this up on a server for my family. This looks like exactly what I’ve been looking for. - [0] https://www.fbi.gov/contact-us/field-offices/denver/news/fbi...