Add -hwaccel auto
for auto hardware acceleration.
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
# To the extent possible under law, the author(s) have dedicated all | |
# copyright and related and neighboring rights to this software to the | |
# public domain worldwide. This software is distributed without any warranty. | |
# You should have received a copy of the CC0 Public Domain Dedication along | |
# with this software. | |
# If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. | |
# ~/.bash_profile: executed by bash(1) for login shells. | |
# The copy in your home directory (~/.bash_profile) is yours, please |
# To the extent possible under law, the author(s) have dedicated all | |
# copyright and related and neighboring rights to this software to the | |
# public domain worldwide. This software is distributed without any warranty. | |
# You should have received a copy of the CC0 Public Domain Dedication along | |
# with this software. | |
# If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. | |
# ~/.bashrc: executed by bash(1) for interactive shells. | |
# The copy in your home directory (~/.bashrc) is yours, please |
@echo off | |
set godot_dir=C:\godot | |
set doc_dir=C:\godot-docs | |
set demo_dir=C:\godot-demos | |
set copy_editor_dir=C:\Users\Teefan\Desktop\Godot\Editors | |
set export_templates_dir=C:\Users\Teefan\AppData\Roaming\Godot\export_templates | |
git fetch |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |
export RUBY_BIN="/cygdrive/c/Ruby32-x64/bin" | |
for file in $RUBY_BIN/*.bat; do | |
base=$(basename -- "$file") | |
cmd="${base%.*}" | |
alias $cmd="$file" | |
done |
## Unity ## | |
*.cs diff=csharp text | |
*.cginc text | |
*.shader text | |
*.mat merge=unityyamlmerge eol=lf | |
*.anim merge=unityyamlmerge eol=lf | |
*.unity merge=unityyamlmerge eol=lf | |
*.prefab merge=unityyamlmerge eol=lf |
OPENSSL_CFLAGS=-Wno-error=implicit-function-declaration |
echo 0 | sudo tee /sys/module/hid_apple/parameters/fnmode |
git config --global alias.co checkout | |
git config --global alias.cob 'checkout -b' | |
git config --global alias.f fetch | |
git config --global alias.fp 'fetch -p' | |
git config --global alias.a add | |
git config --global alias.c commit | |
git config --global alias.cm 'commit -m' | |
git config --global alias.ca 'commit --amend' | |
git config --global alias.pu pull | |
git config --global alias.p push |