Skip to content

Instantly share code, notes, and snippets.

View edward93's full-sized avatar

Edward Chopuryan edward93

View GitHub Profile
@edward93
edward93 / Readme.md
Created January 26, 2020 20:30
FFmpeg cheat sheet

FFmpeg Scripts (Windows 10)

Some scripts and codes related to ffmpeg

ffmpeg version 4.0

How to show input devices

ffmpeg -list_devices true -f dshow -i dummy

How to display webcam

Keep in mind that this is a very generic code on your local machine the pix_fmt and video name might be different

@edward93
edward93 / PowerShellAliases.ps1
Created March 5, 2019 19:36
Useful aliases for windows
Set-Alias -Name grep -Value findstr
sal -Name kill -Value taskkill -Option AllScope
@edward93
edward93 / runMigration.bat
Created July 29, 2018 17:41
Runs migrations on published machine. (.net core 2.1)
@ECHO OFF
REM *************************************************
REM This is a batch tool can be used to run migration on deployed server.
REM For .NET Core version 2.1
REM here are the args for this script
REM
REM deploy-ef2dot1-migrations.bat migrationsDllName [startupDllName] [dbContextClassName]
REM
REM Any of the args in [brackets] are optional