Skip to content
This repository was archived by the owner on Nov 15, 2025. It is now read-only.

Commit 54dec8f

Browse files
committed
Initial commit
0 parents  commit 54dec8f

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Amarec 64 Batch Installer
2+
3+
-- This is for getting AmarecTV working with OBS x64 (supports versions newer than x32 support) --
4+
Inspired/helped by https://www.speedrun.com/forums/speedrunning/3jj07 and https://iotku.pw/gvusb2-guide/ but automates the process for getting the x64 working.
5+
6+
By SmolAlli
7+
8+
(Ignore steps 1 and 2 if you have amarec 3.10 installed already)
9+
10+
1. Install amarec 3.10 from http://www.amarectv.com/download/amarectv310.zip and move amarectv310 to wherever you want the files to be.
11+
2. Install amarec live using live_setup3000.exe
12+
3. Download http://www.amarectv.com/download/live411beta.zip and extract it.
13+
4. Move the amarec64install.bat file and live411beta folder into the amarec live folder. (Note: Please make sure that in the live411beta folder doesn't have another folder named live411beta in it)
14+
5. Run the amarec64install.bat file
15+
Note: the bat file edits/overrides several files and will delete the live411beta folder once done. I'm not sure if configurations will be kept afterwards.
16+
17+
To do this manually instead of using the bat, follow the guide at https://www.speedrun.com/forums/speedrunning/3jj07. The bat file essentially just automates the process.

amarec64install.bat

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
@echo off
2+
setlocal enabledelayedexpansion
3+
4+
REM Check if the live411beta folder exists
5+
if not exist live411beta\ (
6+
REM Give some sort of error here and give exit option (press any key to close)
7+
echo Error: Unable to find live411beta folder. Please make sure it is in the same directory as this file.
8+
echo Closing on button press...
9+
pause
10+
exit /b
11+
)
12+
13+
REM Copy all files from live411beta file into base folder
14+
xcopy /s/y "%~dp0\live411beta\" "%~dp0\"
15+
echo Copied files from live411beta folder into current folder.
16+
17+
REM Run the live411_install.bat file
18+
call "live411_install.bat"
19+
echo Installed 4.11 beta Amarec Live.
20+
21+
REM Edit the lines in register.bat from 'regsvr32 "%~dp0\AmAudioCapture.ax"' and 'regsvr32 "%~dp0\AmVideoCapture.ax"' to 'regsvr32 "%~dp0\AmAudioCapture64.ax"' and 'regsvr32 "%~dp0\AmVideoCapture64.ax"'
22+
23+
set "textFile=register.bat"
24+
25+
for /f "delims=" %%i in ('type "%textFile%" ^& break ^> "%textFile%" ') do (
26+
set "line=%%i"
27+
setlocal enabledelayedexpansion
28+
>>"%textFile%" echo(!line:AmAudioCapture.ax=AmAudioCapture64.ax!
29+
endlocal
30+
)
31+
32+
for /f "delims=" %%i in ('type "%textFile%" ^& break ^> "%textFile%" ') do (
33+
set "line=%%i"
34+
setlocal enabledelayedexpansion
35+
>>"%textFile%" echo(!line:AmVideoCapture.ax=AmVideoCapture64.ax!
36+
endlocal
37+
)
38+
39+
echo Edited register.bat
40+
41+
REM Run the register.bat file
42+
call "register.bat"
43+
echo Installed 64-bit compatibility files.
44+
45+
REM Delete live411beta folder
46+
rmdir /s /q "%~dp0\live411beta"
47+
48+
echo Removed the live411beta folder.
49+
echo 64-bit amarec compatibility successfully installed.
50+
51+
pause

readme.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- This is for getting AmarecTV working with OBS x64 (supports versions newer than x32 support) --
2+
Inspired/helped by https://www.speedrun.com/forums/speedrunning/3jj07 and https://iotku.pw/gvusb2-guide/ but automates the process for getting the x64 working.
3+
4+
By SmolAlli
5+
6+
(Ignore steps 1 and 2 if you have amarec 3.10 installed already)
7+
1. Install amarec 3.10 from http://www.amarectv.com/download/amarectv310.zip and move amarectv310 to wherever you want the files to be.
8+
2. Install amarec live using live_setup3000.exe
9+
3. Download http://www.amarectv.com/download/live411beta.zip and extract it.
10+
4. Move the amarec64install.bat file and live411beta folder into the amarec live folder. (Note: Please make sure that in the live411beta folder doesn't have another folder named live411beta in it)
11+
5. Run the amarec64install.bat file
12+
Note: the bat file edits/overrides several files and will delete the live411beta folder once done. I'm not sure if configurations will be kept afterwards.
13+
14+
To do this manually instead of using the bat, follow the guide at https://www.speedrun.com/forums/speedrunning/3jj07. The bat file essentially just automates the process.

0 commit comments

Comments
 (0)