A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| // License: Apache-2.0 / MIT | |
| use bevy::{ | |
| core_pipeline::clear_color::ClearColorConfig, | |
| prelude::*, | |
| render::{camera::RenderTarget, render_resource::*, view::RenderLayers}, | |
| }; | |
| fn main() { | |
| App::new() |
| // License: Apache-2.0 / MIT | |
| use bevy::{ | |
| core_pipeline::clear_color::ClearColorConfig, | |
| prelude::*, | |
| render::{camera::RenderTarget, render_resource::*, view::RenderLayers}, | |
| }; | |
| fn main() { | |
| App::new() |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #!/bin/sh | |
| # Script: gif-optimize.sh | |
| # Author: Rob Baier | |
| # Description: Script used to optimize animated GIF files. | |
| # Dependencies: Gifsicle (https://github.com/kohler/gifsicle) | |
| # Environment: Tested on MacOS 10.12. Other *nix environments may require some tweaking. | |
| # Usage: ./gif-optimize.sh input-filename.gif | |
| # Helper function to convert bytes into a human-readable format |
| -- Two dashes start a one-line comment. | |
| --[[ | |
| Adding two ['s and ]'s makes it a | |
| multi-line comment. | |
| --]] | |
| ---------------------------------------------------- | |
| -- 1. Variables and flow control. | |
| ---------------------------------------------------- |