Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
/** | |
* Module dependencies. | |
*/ | |
var net = require('net'); | |
var inherits = require('util').inherits; | |
var EventEmitter = require('events').EventEmitter; | |
/** |
@echo off | |
setlocal enableextensions enabledelayedexpansion | |
set pwd=%~dp0 | |
:: Check if folder exists | |
if exist "C:\Program Files\7-Zip\7z.exe" ( | |
echo."7z.exe was found in C:\Program Files\7-Zip\" | |
set zip="C:\Program Files\7-Zip" | |
) else if exist "C:\Program Files (x86)\7-Zip\7z.exe" ( | |
echo."7z.exe was found in C:\Program Files (x86)\7-Zip\" | |
set zip="C:\Program Files (x86)\7-Zip" |
function pootis(f, ...) | |
local t = {} | |
for i,v in ipairs({...}) do | |
t[i] = f(v) | |
end | |
return unpack(t) | |
end | |
-- example usage | |
-- > pootis(math.floor, 1.1, 2.2, 3.3, 4.4) |
openssl genrsa -out privkey.pem 768 | |
openssl pkcs8 -topk8 -nocrypt -in privkey.pem -out privkey2.pem |
*.swp |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditorInternal; | |
using System.Collections.Generic; | |
using UnityEditor.AnimatedValues; | |
[CustomEditor(typeof(UnityEngine.Object), true, isFallback = true)] | |
[CanEditMultipleObjects] | |
public class CustomEditorBase : Editor | |
{ |
/** | |
* USB HID Keyboard scan codes as per USB spec 1.11 | |
* plus some additional codes | |
* | |
* Created by MightyPork, 2016 | |
* Public domain | |
* | |
* Adapted from: | |
* https://source.android.com/devices/input/keyboard-devices.html | |
*/ |
// webcrack, a script that allows you to break webpack.js's sandbox and randomization easily | |
// made by @yourcompanionAI | |
// licensed under the trust that you will credit me for my work visibly and other than that you can go have fun with this | |
// window.wc is the webcrack object | |
// wc.get gives you the module attached to the id you give it. | |
// literally just what webpack functions use. not much to it | |
// this is the basic part of all this, everything else is just to allow you to updateproof your code | |
// both find functions return modules in this format: |