Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
Caffeine.tv VOD downloader!
  • Loading branch information
Glitch3dPenguin committed Mar 14, 2022
1 parent 098ef43 commit ceaad63
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
14 changes: 14 additions & 0 deletions Download VOD Program.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@echo off
REM Ask the user to paste their VOD link
set /p VODLINK="Paste VOD Link: "
REM Ask the user to name the VOD file
set /p VODNAME="Name of VOD: "
REM Start the VOD Download using ffmpeg
echo Starting Vod Downlaod!
ffmpeg -i %VODLINK% -c copy -bsf:a aac_adtstoasc %VODNAME%.mp4
REM Let the user know their VOD has finished downloading
echo VOD downloaded finished!
REM Shameless self plug
echo Don't forget to follow Glitch3dPenguin on Caffeine.tv!
pause
EXIT /B 0
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# CaffVodDownloader
This is a small utility for downloading your VODs from Caffeine.tv
# What is Caffeine VOD Downloader?

- A very short script directly in batch that allows Caffeine.TV streamers to download their VODs to save and edit.
- Uses ffmpeg to read HLS stream data from Caffeine.TV.
- Coverts stream data and saves VOD file as .mp4 for easy editing and compatibility with most editors/devices.

### How to Use:

ADDING STEPS SOON
Binary file added ffmpeg.exe
Binary file not shown.

0 comments on commit ceaad63

Please sign in to comment.