MOVIE 3

Udemy Download

r0oth3x49/udemy-dl A cross-platform python based utility to download courses from udemy for personal offline use. - r0oth3x49/udemy-dl github.com git clone https://github.com/r0oth3x49/udemy-dl.git pip install -r requirements.txt # help python udemy-dl.py -h # 다운로드, 계정을 입력할 수 있다. python udemy-dl.py https://www.udemy.com/{content_title} # 계정입력을 했지만 에러가 난다면 # cookie.txt 에 쿠키정보를 저장하고 실행한다. # 브라우저 개..

lang/py 2019.04.08

Linux Movie to gif

How to convert video to animated gif image on Linux sudo apt-get install ffmpeg imageMagick # sudo yum install youtube-dl .... # 프레임 추출, out.gif 으로 병합되어 추출된다. # ffmpeg -t -ss -i out%04d.gif ffmpeg -t 5 -ss 00:00:10 -i funny.mp4 out.gif # 만약 프레임을 추출만 했다면 병합한다. # convert -delay x -loop 0 out*gif convert -delay 1x20 -loop 0 out*.gif animation.gif # GIF 크기 줄이기 convert -layers Optimize animation.gif ..

os/Linux 2018.06.27

iPhone WebPage에서 webkitExitFullscreen() 이벤트

iOS-Specific Considerations HTMLMediaElement Fullscreen HTML5 video iOS-Specific Considerations / Optimization for Small Screens 에서 “Video is not presented within the webpage. (웹 페이지내에서 비디오는 지원하지 않는다)” / iPhone, iPod iPhone WebPage에서 webkitExitFullscreen() 이벤트 (function(){ if (navigator.userAgent.match(/iPhone|iPod/i)) { var vid = document.getElementById('video'); # iPhone 에서 webkitExitFullscree..

lang/html 2015.12.11
반응형