Skip to content

Instantly share code, notes, and snippets.

View steventsvetkov's full-sized avatar

Steve steventsvetkov

  • Sofia, Bulgaria
  • 16:58 (UTC +03:00)
View GitHub Profile
@steventsvetkov
steventsvetkov / academy-search.ahk
Last active February 1, 2018 10:01
Keyboard shortcuts
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
+^!s::
{
Send, ^c
Sleep 50
Run, http://telerikacademy.com/search/results?search=%clipboard%
@steventsvetkov
steventsvetkov / concatinate-videos-new.bat
Last active July 23, 2018 13:29
Video processing with FFmpeg
# Clean up
del output.mp4
del output-compressed.mp4
# Convert
for %%a in ("*.flv") do ffmpeg -i "%%a" -codec copy "%%~na.mp4"
#Concat
set path2exe=ffmpeg.exe
(for %%i in (*.mp4) do @echo file '%%i') > list.txt