소스 검색

Create README.md

Daniel Hintz 5 년 전
부모
커밋
e39b0ce2f1
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      README.md

+ 14 - 0
README.md

@@ -0,0 +1,14 @@
+# frames2img
+The average colour of each frame passed into the program
+
+
+
+Use ffmpeg to extract the frames you want from whatever you want to create the image from 
+    
+    ffmpeg -i movie.mp4 -r 1 frames/$filename%05d.png
+
+and then run it like 
+
+    ./frames2img frames/*
+    
+and it will write to "output.png" one vertical line per frame that is the average colour of that frame.