Video editing resources

28 Mar 2020

color grading davinci resolve video editing

Bunch of video editing related resources

https://vimeo.com/108677299 - Color Grading GoPro Footage in Davinci Resolve
https://groundcontrolcolor.com/collections/free-color-grading-luts/products/free-gopro-protune-to-rec-709-lut
https://havecamerawilltravel.com/gopro/gopro-video-lrv-thm-files/
https://fixthephoto.com/luts-video
https://stackoverflow.com/questions/12026381/ffmpeg-converting-mov-files-to-mp4

ffmpeg -i movie.mov -vcodec copy -acodec copy out.mp4
// Alternative which re-encodes with best quaility
ffmpeg -i input.mov -q:v 0 output.mp4

Converting mp4 to mp3
FFmpeg MP3 Encoding Guide

ffmpeg -i input.wav -codec:a libmp3lame -b:a 320k output.mp3
// for variable bit rate 190kbit/s
ffmpeg -i input.wav -codec:a libmp3lame -q:a 2 output.mp3

https://stackoverflow.com/questions/5784661/how-do-you-convert-an-entire-directory-with-ffmpeg

ls *.avi|%{ ffmpeg -i $_ <ffmpeg options here> $_.name.replace($_.extension, ".mp4")}

m3u8 stream to mp4 using ffmpeg (for videos streamed with JW Player)

ffmpeg -i "http://host/folder/file.m3u8" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 file.mp4

Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.