Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@xsukax
Created October 18, 2015 21:08
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save xsukax/77c627d7274736408314 to your computer and use it in GitHub Desktop.
Save xsukax/77c627d7274736408314 to your computer and use it in GitHub Desktop.
Installing ffmpeg on Kali Linux 2.0
#!/bin/bash
echo "---------------------"
echo "Installing ffmpeg ..."
echo "---------------------"
cd /root/Desktop/
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure
make
make install
cd ..
rm -rf ffmpeg
echo "-----------------------------"
echo "FFMPEG Installation Finished."
echo "-----------------------------"
sleep 1000000
@0xBabaYaga1337
Copy link

Thank you.

Copy link

ghost commented Aug 4, 2023

Thank you.

@gilmarok
Copy link

gilmarok commented Dec 6, 2023

Thank you.

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