Hi! I’m looking for an open-source, preferably FOSS video transcoding web interface.

I would like the transcoding to be done on the server side, be secured by a password if possible (so people don’t 100% the server), and I want no data sharing. Most important feature: must allow web uploads. I don’t want to automate transcoding, or transcode files that are in the server: I want clients to be able to upload their media and get it transcoded.

The transcoding aspect is important: not just a change in container / file extension, but a real transcoding (changing video codec). Being able to change the bitrate is a plus.

I’ve been looking at many projects and most are sadly either too simple for my needs (only container change, no real ability to choose the codec, or unchangeable bitrate), or focused on files that are already on the server.

(something like a ffmpeg web UI that runs on the server would be great)

Thanks :)

  • Scrubbles@poptalk.scrubbles.tech
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 day ago

    The problem exists of how do you get files to the server. Again for a big video file you need a place to have the original accessible for the entire duration of the transcode, and you need a drop point to place the file when it’s done. And if you’re doing that, more than likely you have something like Plex or jellyfin, so why not just hook it up to your existing file locations?

    I run jobs all the time from my cluster, but the issue always comes back to persistent storage. Where are the files you need to act on, and where should the finished results be placed? You’re trying to skip those important steps here.

    • MajesticElevator@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      2
      ·
      1 day ago

      It was meant to run on a server with pretty much nothing on it but yea, if uploading big files isn’t possible through a browser, I’ll find other solutions. I was hoping files smaller than like 4GB would be fine.

      About the storage, I hoped that it would just either load the file in memory, or store during the transcode, then when done, delete the source file and put the transcoded server for a limited amount of time (1h for example), then wipe it (or just wipe it after download)

      • Onomatopoeia@lemmy.cafe
        link
        fedilink
        English
        arrow-up
        4
        ·
        24 hours ago

        Yea, I’d take the approach of having the server monitor a folder, and then just drop files in that folder to be converted.

        There are a number of ways to transfer files to that folder, tools like FolderSync (Android), Syncthing or Resilio (every OS) can handle this.