Today, I will introduce how to use auto screen-flip script in Reaper.

안녕하세요. 웹캠입니다. 저번 글에서 에프터 이펙트로 좌우반전을 쉽게 하는 방법에 대해서 설명했었습니다. 이번 시간에는 제가 만든 리퍼 프로젝트에서 바로 좌우반전을 할 수 있게 도와주는 스크립트를 사용하는 방법을 소개하겠습니다.

item2midi 스크립트를 통해 작업을 더 쉽게 할 수 있으니 해당 포스트와 함께 이 글을 보면 좋을 것 같습니다.

Prepare things 미리 준비해야 할 것들

To play video on Reaper, you have to install VLC Media player. Go to http://www.videolan.org/ VLC homepage and download proper version of VLC.

리퍼에서 영상을 보려면 VLC Media Player가 필요합니다. VLC홈페이지에 가서 다운로드 버튼을 클릭한 후 컴퓨터에 맞는 버전을 다운로드 해주세요.

Then download Auto screen flipping.lua file in the link below.

그리고 스크립트를 다운받을 수 있게 도와주는 ReaPack에서 Auto screen flipping videos를 우클릭, Install(버전명)을 선택한 후 Apply를 클릭해서 다운로드 해줍니다. ReaPack 자체를 설치 하는 방법은 이전 포스트에 설명해 놓았으니 참고하면 될 것 같습니다.

http://www.mediafire.com/file/r9y4spr5m8y8jll/Auto+screen+flipping.lua/file

Script had updated at 2020.10.24 11:30 AM. Please use more recent version.

Then open the Reaper, go to Option > Show REAPER resource path in explorer/finder. It will open the folder. Then go to Scripts folder, put Auto screen flipping.lua file in that folder.

For apply screen flip script, we will add screen flip effect to Video processor FX. Open Reaper and add track. And add Video processor to FX. Then copy and paste the code below to right section of FX.

스크립트를 설치했다면 이제 비디오 효과에 프리셋을 추가해줘야 합니다. 아무 트랙이나 생성한 후 fx창에서 Video processor라는 효과를 추가합니다. 그런 다음 효과 창의 오른쪽부분에 아래의 스크립트를 복붙해줍니다.

input_info(0,w,h);
//@param1:flip 'Flip mode' 1 1 4 2.5 1
flip == 2 ? (
gfx_deltablit(0, 0,0, project_w,project_h,
             w,0, // starting source coordinates
            -w/project_w,0, // source delta-X/delta-Y with respect to output X
            0,h/project_h   // source delta-X/delta-Y with respect to output Y
            );
);

flip == 3 ? (
gfx_deltablit(0, 0,0, project_w,project_h,
             w,h, 
            -w/project_w,0, 
            0,-h/project_h 
            );
);

flip == 4 ? (
gfx_deltablit(0, 0,0, project_w,project_h,
             0,h,
            w/project_w,0,
            0,-h/project_h 
            );
);

Then click the +button in top right corner, and save the preset name as "Screen flip"(with first letter uppercase)

그런 다음 Ctrl + S를 해 저장을 한 후 효과 오른쪽 상단의 + 버튼을 클릭한 후 Save preset을 클릭, 그리고 나오는 창에 Screen flip을 입력한 후 OK를 클릭해서 프리셋을 저장해줍니다.(이때 이름의 대소문자를 구분하셔야 됩니다.)