사용자 도구

사이트 도구


linux:video

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판 양쪽 다음 판
linux:video [2015/10/05 01:58]
kwon37xi [smi2srt]
linux:video [2015/10/18 18:30]
kwon37xi
줄 29: 줄 29:
 int crop = width - (16.0 / 9.0 * height) int crop = width - (16.0 / 9.0 * height)
 println "crop left and right ${crop / 2}px" println "crop left and right ${crop / 2}px"
 +</code>
 +  * 혹은 ''video_169.py''<code python>
 +#!/usr/bin/env python
 +import sys
 +
 +width = int(sys.argv[1])
 +height = int(sys.argv[2])
 +
 +if width/height <= 16.0/9.0:
 +    print 'no need to crop'
 +
 +crop = width - (16.0 / 9.0 * height)
 +print('crop left and right %f px' % (crop/2.0))
 </code> </code>
  
linux/video.txt · 마지막으로 수정됨: 2023/06/05 16:30 저자 kwon37xi