Check your code on a php validator like PHP Code Checker This code should be added at the top of a php file to show errors: error_reporting(E_ALL); error_reporting(-1); ini_set(‘error_reporting’, E_ALL); If your on wordpress, make sure to enable debug mode in wp-config.php in the root of your site’s web directory: define( ‘WP_DEBUG’, true […]
Read MoreLouder: ffmpeg -i Mandolin.mp3 -filter:a “volume=+10dB” MandolinLoud.mp3 Quieter: ffmpeg -i Mandolin.mp3 -filter:a “volume=-10dB” MandolinLight.mp3 Ex: Make Video Louder ffmpeg -i Mandolin.mp4 -filter:a “volume=+10dB” MandolinLoud.mp4 If you get a warning error that says: The encoder ‘aac’ is experimental but experimental codecs are not enabled, add ‘-strict -2’ if you want to use it.… […]
Read More