Remux without transcoding
ffmpeg -i input.ts -c copy output.mp4
x264, AAC
ffmpeg -i input.avi -c:v libx264 -preset slow -crf 18 -pix_fmt yuvj420p -c:a aac -b:a 160k output.mp4
ffmpeg -safe 0 -f concat -i <(find . -type f -name '*.mp4' -printf "file '$PWD/%p'\n" | sort) -c copy output.mp4 |
find / -maxdepth 3 -type d -name "#recycle" | xargs du -sh |
# copy and paste oneliner below to run | |
# curl -s https://gist.githubusercontent.com/ilude/32aec45964bc1207810f7e6e49544064/raw/%21proxmox_setup.sh?$(date +%s) | /bin/bash -s | |
# Disable Commercial Repo | |
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
# Add PVE Community Repo | |
echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
# setup no nag script to run on upgrade |
ffmpeg -i input.ts -c copy output.mp4
ffmpeg -i input.avi -c:v libx264 -preset slow -crf 18 -pix_fmt yuvj420p -c:a aac -b:a 160k output.mp4
NOTE: Content below is written by Adrian Mace. Click here for an updated version.
Below are the key settings that I apply on any unifi installation for optimal performance.
Enable Advanced Features
is enabled#!/usr/bin/env bash | |
# original: bash -c "$(wget -qLO - https://github.com/whiskerz007/proxmox_hassos_install/raw/master/install.sh)" | |
# mine: bash -c "$(wget -qLO - https://gist.github.com/ivan-leschinsky/36e6c6508a042f6ae269cf6a1ee78e07/raw/d1dccdf358b25f77d004af258e9746e73f780f31/hainstall.sh)" | |
# Setup script environment | |
set -o errexit #Exit immediately if a pipeline returns a non-zero status | |
set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell | |
set -o nounset #Treat unset variables as an error | |
set -o pipefail #Pipe will exit with last non-zero status if applicable | |
shopt -s expand_aliases |
~=r#b6F5B*dh/?/ |
Remove osxfuse if installed via homebrew: | |
> brew uninstall osxfuse | |
Install osxfuse binary and choose to install the MacFUSE compatibility layer: | |
http://sourceforge.net/projects/osxfuse/files/latest/download?source=files | |
Reboot (optional but recommended by osxfuse) | |
Install ntfs-3g via homebrew: | |
> brew update && brew install ntfs-3g |
sudo -i
vi /etc/ssh/sshd_config
node --inspect --debug-brk node_modules/webpack/bin/webpack.js --config config/webpack/development.js
then in chrome go to this url and open dedicated debugger for node:
chrome://inspect