사용자 도구

사이트 도구


linux:video

차이

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

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
linux:video [2015/10/05 01:58]
kwon37xi [smi2srt]
linux:video [2020/07/17 15:35]
kwon37xi
줄 30: 줄 30:
 println "crop left and right ${crop / 2}px" println "crop left and right ${crop / 2}px"
 </code> </code>
 +  * 혹은 ''video_169.py''<code python>
 +#!/usr/bin/env python
 +import sys
  
-====== smi2srt ======+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> 
 + 
 +===== smi2srt =====
   * [[http://deviantcj.tistory.com/407|SMI파일을 SRT로 변환하기]]<code sh>   * [[http://deviantcj.tistory.com/407|SMI파일을 SRT로 변환하기]]<code sh>
 sudo apt-get install libsubtitles-perl sudo apt-get install libsubtitles-perl
줄 69: 줄 82:
 Extensions=srt Extensions=srt
 </code> </code>
 +
 +===== Video Background =====
 +  * [[https://www.linuxuprising.com/2019/05/livestream-wallpaper-for-your-gnome.html|Video Livestream Wallpaper For Your GNOME, Xfce Or bspwm Desktop - Linux Uprising Blog]]
 +
linux/video.txt · 마지막으로 수정됨: 2023/06/05 16:30 저자 kwon37xi