- junstyle.php-cs-fixer (fixed error)
- ikappas.phpcs (find error)
composer global require squizlabs/php_codesniffer
composer global require friendsofphp/php-cs-fixer
Permission denied (publickey)
Seems a very common error in Gitlab.com or any Gitlab implementation. Last night I spend 4/5 hours without sleeping to solve the error.
Cloning into 'server'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:
@echo off | |
set count=1 | |
for /f "tokens=*" %%a in (load.txt) do call :processline %%a | |
goto :eof | |
:processline | |
ffmpeg.exe -i %* -c copy -bsf:a aac_adtstoasc %count%.mp4 |