Advertisement
onutesaul76555

screen recording ffmpeg

Oct 30th, 2019
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @echo off
  2. title Screen Desktop Recorder (No sound)
  3. ffmpeg -f gdigrab -r 60 -i desktop Recorded.mkv
  4. pause
  5. echo Do you want to download Bandicam?
  6. echo 1 - No
  7. echo 2 - Yes
  8. set input=
  9. set /p input= Choice:
  10. if %input%==1 goto A if NOT goto error
  11. if %input%==2 goto B if NOT goto error
  12. :A
  13. echo Exiting...
  14. exit
  15. :B
  16. color 05
  17. start http://bandicam.com/downloads/ing
  18. :C
  19. cls
  20. echo Download Bandicam for 10 minutes,
  21. echo if you want to get full version,
  22. echo try using Keygen.
  23. goto C
  24. :error
  25. echo Choice not found.
  26. echo Exiting in 5 seconds.
  27. timeout 5
  28. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement