This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;---------------------------------------------------------------------------- | |
; Font settings used for text of internal windows | |
;---------------------------------------------------------------------------- | |
default_font_face Lato | |
default_font_size 12 | |
;---------------------------------------------------------------------------- | |
; Base colors for REAPER windows and plugins | |
;---------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: sudo install_unflatpaked_bitwig.sh ["Bitwig Studio <version>.flatpak"] | |
# Check if running the script as root. | |
if [ "$EUID" -ne 0 ]; then | |
echo "Please run as root" | |
exit 0 | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get a list of all installed Bitwig Studio versions | |
$allbitwigs = Get-WmiObject Win32_Product | Where-Object {$_.Name -match "Bitwig Studio"} | |
# Get a list of all versions except the latest one | |
$oldbitwigs = $allbitwigs | Sort-Object -Property Version -Descending | Select-Object Name, IdentifyingNumber -Skip 1 | |
# Run uninstaller in passive mode for each version | |
foreach ($bitwig in $oldbitwigs) { | |
Start-Process msiexec.exe -ArgumentList @('/passive', '/x', $bitwig.IdentifyingNumber) -Wait | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
public class FlyCamera : MonoBehaviour { | |
/* | |
Writen by Windexglow 11-13-10. Use it, edit it, steal it I don't care. | |
Converted to C# 27-02-13 - no credit wanted. | |
Simple flycam I made, since I couldn't find any others made public. | |
Made simple to use (drag and drop, done) for regular keyboard layout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** USER COLORS START *** | |
COLOUR name='label_text' rgba='ffffff40' | |
COLOUR name='label_mod' rgba='ff0012ff' | |
COLOUR name='label_menu' rgba='ffffff70' | |
COLOUR name='label_matrix_menu' rgba='ffffff70' | |
COLOUR name='label_module_number' rgba='ffffffff' | |
COLOUR name='knob_unipolar_left' rgba='00f5ffff' | |
COLOUR name='knob_unipolar_center' rgba='00ff81ff' | |
COLOUR name='knob_unipolar_right' rgba='00ff58ff' | |
COLOUR name='knob_unipolar_mark' rgba='ff380000' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for %%A in (%*) do ffmpeg -i %%A -c:v mjpeg -q:v 1 -c:a copy "%%~nA"_mjpeg.mov |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i input.avi -c:v mjpeg -q:v 1 -c:a copy output.mov |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set /p fadein="Fade-in length (in seconds): " | |
set /p fadeout="Fade-out length (in seconds): " | |
for %%A in (%*) do sox %%A "%%~nA"_faded%%~xA fade t %fadein% 0 %fadeout% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for %%A in (%*) do sox %%A "%%~nA"_fades_300ms%%~xA fade t 0.3 0 0.3 |