Blame view

vid/Makefile 397 Bytes
561ffc53   Geoffrey PREUD'HOMME   Added video to de...
1
2
  all: pres2014.mp4 pres2014.jpg
  
74e56c39   Geoffrey PREUD'HOMME   2014 video compre...
3
4
5
  pres2014.mp4: orig/CREP\ mai\ 2014.mp4
  	ffmpeg -i "$<" -strict -2 $@ -y
  
5c23f45a   Geoffrey PREUD'HOMME   Added webm and og...
6
7
8
9
10
11
  pres2014.webm: orig/CREP\ mai\ 2014.mp4
  	ffmpeg -i "$<" $@ -y
  
  pres2014.ogg: orig/CREP\ mai\ 2014.mp4
  	ffmpeg -i "$<" $@ -y
  
561ffc53   Geoffrey PREUD'HOMME   Added video to de...
12
13
14
15
  pres2014.jpg: pres2014.mp4
  	ffmpeg -ss 00:01:49 -i $< -frames:v 1 $@ -y
  	convert -strip -interlace Plane -gaussian-blur 0.05 -quality 90% $@ $@
  
74e56c39   Geoffrey PREUD'HOMME   2014 video compre...
16
  clear:
561ffc53   Geoffrey PREUD'HOMME   Added video to de...
17
  	rm pres2014.*