-
Download video on https://savetube.io/en22
-
Run
./v2m.py video.mp4https://github.com/svsdval/video2midi -
Adjust piano keys, start and end, channels (save settings)
-
Generate midi
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
| (* Content-type: application/vnd.wolfram.mathematica *) | |
| (*** Wolfram Notebook File ***) | |
| (* http://www.wolfram.com/nb *) | |
| (* CreatedBy='Mathematica 9.0' *) | |
| (*CacheID: 234*) | |
| (* Internal cache information: | |
| NotebookFileLineBreakTest |
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
| (* Content-type: application/vnd.wolfram.mathematica *) | |
| (*** Wolfram Notebook File ***) | |
| (* http://www.wolfram.com/nb *) | |
| (* CreatedBy='Mathematica 9.0' *) | |
| (*CacheID: 234*) | |
| (* Internal cache information: | |
| NotebookFileLineBreakTest |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>TotalSpaces3.restart</string> |
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
| require 'json' | |
| def flatten_hash(param, prefix=nil) | |
| param.each_pair.reduce({}) do |a, (k, v)| | |
| if v.is_a?(Array) | |
| v = v.map.with_index { |x, i| [i, x] }.to_h | |
| end | |
| if v.is_a?(Hash) | |
| a.merge(flatten_hash(v, "#{prefix}#{k}.")) |
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
| def flatten_hash(param, prefix=nil) | |
| param.each_pair.reduce({}) do |a, (k, v)| | |
| if v.is_a?(Array) | |
| v = v.map.with_index { |x, i| [i, x] }.to_h | |
| end | |
| if v.is_a?(Hash) | |
| a.merge(flatten_hash(v, "#{prefix}#{k}.")) | |
| else | |
| a.merge("#{prefix}#{k}".to_sym => v) |
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
| /* Following CSS to wrap the tab-bar into multiple rows: */ | |
| .tabs-and-actions-container > .monaco-scrollable-element { | |
| height: auto !important; | |
| } | |
| .tabs-and-actions-container > .monaco-scrollable-element > .tabs-container { | |
| height: auto !important; | |
| flex-wrap: wrap; |
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/sh | |
| # libinput-gestures workspace helper | |
| # Then add the commands in Gesture interface | |
| # Left | |
| # /home/username/workspace.sh -1 | |
| # Right | |
| # /home/username/workspace.sh 1 | |
| # Up |
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
| Must | |
| ------ | |
| iterm2 | |
| zsh | |
| hyperswitch (or https://alt-tab-macos.netlify.app/) | |
| TextSniper | |
| MonitorControl | |
| vanilla | |
| Jiggler |
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
| pragma solidity ^0.5.10; | |
| // File: openzeppelin-solidity/contracts/utils/Address.sol | |
| /** | |
| * @dev Collection of functions related to the address type, | |
| */ | |
| library Address { | |
| /** | |
| * @dev Returns true if `account` is a contract. |
NewerOlder