Skip to content

Instantly share code, notes, and snippets.

@lqez
Created December 10, 2014 09:07
Show Gist options
  • Save lqez/d0ad7122ecdd034632f9 to your computer and use it in GitHub Desktop.
Save lqez/d0ad7122ecdd034632f9 to your computer and use it in GitHub Desktop.
Get duration of videos in directory, recursively and save it to csv format.
find -E <path> ".*\.(avi|mp4|mov)" -exec sh -c "echo '\"{}\",\c' && ffprobe -i '{}' -show_format -v quiet | sed -n 's/duration=//p'" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment