Python script for splitting videos into tiles with ffmpeg
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 3 Jahren
1234567891011121314151617181920212223242526272829303132
  1. # Python script for splitting videos into tiles with ffmpeg
  2. It supports simple grid definitions and advanced layout definitions from a json layout definition file.
  3. ## Installation
  4. ### Install git, ffmpeg and python3 with pip on your system
  5. For Debian:
  6. ```
  7. sudo apt install git ffmpeg python3 python3-pip
  8. ```
  9. ### Clone this git repository
  10. ```
  11. git clone https://git.notice.at/redplanet/video-shredder.git
  12. ```
  13. ### Enter directory and install python requirements
  14. ```
  15. pip3 install -r requirements.txt
  16. ```
  17. ## Usage
  18. grid mode:
  19. ```
  20. python3 videoshredder.py grid <columns> <rows> <input_file> <output_path>
  21. ```
  22. file mode:
  23. ```
  24. python3 videoshredder.py file <layout_path> <input_file> <output_path>
  25. ```