Giter Club home page Giter Club logo

docker-ffmpeg-split-video's Introduction

Easily split video files with the help of a docker container and ffmpeg

It's a chore to properly install ffmpeg and all the codecs, and it's also not very easy to split video files. So that's why this image was created.

**Usage**

    docker run -it --rm  \
    -u "your-user-id" \
    -v /directory-with-video:/tmp/video-in \
    -v your-output-directory:/tmp/video-out \
    ivandotv/ffmpeg-split-video "split" "big-video-file.avi" 4
  • run command can work without mounting the output directory, in that case newly created video files will be put in the same directory as the original video file.
  • Default split is 2 (example uses 4).
  • You can also call ffmpeg or ffprobe directly (instead of "split")
  • When video file is split, it's not re-encoded.

Actual command line parameters that are going to be passed to ffmpeg binary are:

ffmpeg -i "big-video-file" -ss (start time) -to (end time ) -acodec copy -vcodec copy "output-file-directory"

Helper script

There is also a helper script (./tools/split-video) that is used as a wrapper for the split functionality of the container. You can put it somewhere in your $PATH so you can call it from everywhere.

Use it like this:

split-video video_file [number_of_parts] [output_folder]

The script will launch the container, and pass all the required parameters for the split functionality (mounting volumes, passing correct arguments etc...)

Licence MIT

docker-ffmpeg-split-video's People

Contributors

ivandotv avatar renovate-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

wildone

docker-ffmpeg-split-video's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

dockerfile
Dockerfile
  • jrottenberg/ffmpeg 4.4-ubuntu

  • Check this box to trigger a request for Renovate to run again on this repository

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.