사용자 도구

사이트 도구


linux:video

차이

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

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
linux:video [2015/10/05 01:43]
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>
  
줄 53: 줄 66:
 read -p "Press Enter." nov read -p "Press Enter." nov
 </code> </code>
-  * [[linux:mint:nemo|Nemo]] Action으로 변환 ''/home/kwon37xi/.local/share/nemo/actions/smi2srt.nemo_action''<code>+  * [[linux:mint:nemo|Nemo]] Action으로 변환 ''$HOME/.local/share/nemo/actions/smi2srt.nemo_action''<code>
 [Nemo Action] [Nemo Action]
 Name=SMI to SRT Name=SMI to SRT
줄 60: 줄 73:
 Selection=Any Selection=Any
 Extensions=smi Extensions=smi
 +</code>
 +  * SRT가 ''EUC-KR'' 인코딩일 경우 UTF-8로 변환하는 [[linux:mint:nemo|Nemo]] Action ''$HOME/.local/share/nemo/actions/euckr_srt_to_utf8.nemo_action''<code>
 +[Nemo Action]
 +Name=EUC-KR SRT to UTF-8 SRT
 +Comment=EUC-KR SRT to UTF-8 SRT
 +Exec=gnome-terminal -x sh -c "iconv -f euc-kr -t utf8 '%F' > /tmp/iconvtemp;mv /tmp/iconvtemp '%F'"
 +Selection=Any
 +Extensions=srt
 </code> </code>
linux/video.txt · 마지막으로 수정됨: 2023/06/05 16:30 저자 kwon37xi