Created
January 18, 2021 01:16
-
-
Save btarg/66bc2ead072614ebe9a47c35ae907f99 to your computer and use it in GitHub Desktop.
Discord Crash Video Creator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
title Discord Crash Video Creator | |
color c | |
echo ========================= NOTE ========================= | |
echo This script creates videos that crash Discord/Chrome. | |
echo Hardware acceleration must be enabled for it to work. | |
echo Crash videos will get you banned in some Discord groups! | |
echo. | |
echo FFmpeg needs to be installed for this to work: | |
echo https://youtu.be/qjtmgCb8NcE | |
echo ======================================================== | |
echo. | |
pause | |
WHERE ffmpeg | |
IF %ERRORLEVEL% NEQ 0 echo ffmpeg wasn't found. Please make sure it is installed correctly. && pause && exit | |
color 7 | |
cls | |
set /p filepath=Enter path to video file (or drag and drop the video here): | |
set timestamp=1 | |
set /p timestamp=How many seconds in should the video crash?: | |
echo. | |
echo Getting video duration... | |
ffprobe -i %filepath% -show_entries format=duration -v quiet -of csv="p=0" > tmpfile | |
set /p duration= < tmpfile | |
del tmpfile | |
echo Splitting video... | |
ffmpeg -i %filepath% -ss 0 -t %timestamp% part1.mp4 | |
ffmpeg -i %filepath% -ss %timestamp% -t %duration% part2.mp4 | |
echo Changing video properties... | |
ffmpeg -i part2.mp4 -pix_fmt yuv444p part2_new.mp4 | |
echo Creating file list... | |
echo file part1.mp4> file_list.txt | |
echo file part2_new.mp4>> file_list.txt | |
echo Creating output file... | |
ffmpeg -f concat -safe 0 -i file_list.txt -codec copy output.mp4 | |
echo Cleaning up old files... | |
del part1.mp4 | |
del part2.mp4 | |
del part2_new.mp4 | |
del file_list.txt | |
color a | |
echo Output video created! It is located at "%CD%\output.mp4" | |
echo. | |
pause |
if anyone wants i made a version that actually crashes discord
https://gist.github.com/Incognito-100/83e188f3160a5afcd49743e35c7c9d2b
@hedgeridge If you use Bash do you really need the script?
the videos produced from this dindn't crash discord
hardware accel needs to be on
Man you can't just dump files into your system32. Run it in a normal directory like your desktop.
How do you use it?
ㅤ
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've been trying to convert this to BASH for use in Linux, because Wine CMD can't use ffmpeg (to my knowledge). Problem is I know almost nothing about writing bash or reading batch, so it's a slow and messy process. But here is what ive got so far:
`#!/bin/bash
echo ========================= NOTE =========================
echo This script creates videos that crash Discord/Chrome.
echo Hardware acceleration must be enabled for it to work.
echo Crash videos will get you banned in some Discord groups!
echo -
echo FFmpeg needs to be installed for this to work
echo ========================================================
echo -
echo -
#set location [THIS NEEDS REWORK, idk how to store dir path into var]
echo What video do you want to use? [Full Path]
echo :
read PATHVID
echo Where is the output folder? [Full Path]
echo :
read PATHDIR
#set crash point
echo How many seconds in should the video crash?
echo -
read TIME
#set duration
echo Getting video duration...
ffprobe -i $PATHVID -show_entries format=duration -v quiet -of csv="p=0" > tmpfile
DUR= < tmpfile
rm tmpfile
#split video
echo Splitting video...
ffmpeg -i $PATHVID -ss 0 -t $TIME part1.mp4
sleep
ffmpeg -i $PATHVID -ss $TIME -t $DUR part2.mp4
TO BE CONTINUED
`