Giter Club home page Giter Club logo

gffmpeg's Introduction

Media Converter

Media Converter is a simple web service built with FastAPI. It allows you to convert media files to different formats using FFmpeg. The application accepts a file to be converted, the desired output format, and optional FFmpeg parameters.

The application is designed to be deployed on Google Cloud Run, but can run anywhere that supports Python 3.7+.

Usage

To use the service, make a POST request to the root endpoint ('/') with the following data:

  • file: The file to be converted (multipart/form-data)
  • output_format (form): The desired output format (default: 'mp3')
  • params (form): Optional FFmpeg parameters (default: '-i')

Example using curl:

curl -X POST \
     -F "file=@/path/to/your/file" \
     -F "output_format=mp4" \
     -F "params=-i -vcodec h264" \
     http://localhost:8000/ --output output.mp4

Replace /path/to/your/file with the actual path to your file. The output file will be saved as output.mp4 in the current directory.

Note: This example assumes the application is running locally on port 8000. Update the URL if it's hosted elsewhere.

Deployment on Google Cloud Run Follow Google's official documentation for building and deploying an application on Cloud Run.

Disclaimer This application is provided as-is, without warranty of any kind. Use at your own risk. Always ensure you have the rights to convert and distribute any media files used.

gffmpeg's People

Contributors

ssvadim avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.