전체 글 577

ffmpeg resize , movie file rescale, 동영상 해상도 변경, screen record

동영상 사이즈가 큰경우 아래와 같이 원하는 사이즈로 (보통 다운사이징) 변경하면 적은용량의 파일로 변환 가능하다.아래 파라미터중 scale=1024:-1 은 넓이를 1024 pixel 로 정하고 세로는 가로와 비례로 변화된다.원하는 가로세로가 있다면 가로:세로 이렇게 넣어주면 된다. ffmpeg -i INPUT-FILE.MOV -vf scale=1024:-1 OUTPUTFILE-1024xx.MOV screen recordref : http://wiki.oz9aec.net/index.php/High_quality_screen_capture_with_Ffmpeg ffmpeg -f x11grab -r 25 -s 1280x720 -i :0.0+0,24 -vcodec libx264 video.mkv ffmpeg ..

편하게 살자 2017.09.14

RoR을 시작하는 코더의 기록 01

오랜만에 IT 블로그입니다... ROR 말은 많이 들어 봤지만... 이제야 접근해 봅니다. 많은 RoR자료가 인터넷에 많습니다... Java,.NET,NODE 등 Web Application의 구조를 대충 안다면 ... 바로 GO 1) 설치 2) Rails command line Utility 리뷰 (REF : http://guides.rubyonrails.org/command_line.html) RoR에 접근한다면 가장 먼저 알아야 할 부분입니다. rails new 새로운 Rails 어플리케이션을 생성하한다. rails new commandsapp rails server rails server 명령어는 Puma 라는 웹서를 실행시킨다. (Puma는 Rails에 번들되어있다.) bin/rails serv..

프로그램 2017.05.21

grunt study 001

Javascript에서 독특한 빌드 영역을 담당하는 grunt를 알아보자(혹시 java개발자라면 ant를 생각하시면 됩니다.) GRUNTThe JavaScript Task RunnerTEST : mulder@~/Project/mulder/tools$ mkdir grunt1mulder@~/Project/mulder/tools$ cd grunt1mulder@~/Project/mulder/tools/grunt1$ lsmulder@~/Project/mulder/tools/grunt1$ npm init mulder@~/Project/mulder/tools/grunt1$ sudo npm -g install grunt-cli mulder@~/Project/mulder/tools/grunt1$ npm -S instal..

프로그램 2017.03.19