ffmpeg -loop 1 -framerate 2 -i cover.jpg -i song.mp3 -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2:color=black" -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p out.mp4
Ebmaj9 | G13sus G13 | Gm7 | Gb13 | Fm7 Fm7/Ab Fm7/A | Fm7/Bb | Ebmaj9 | Ebmaj9
A13sus Ebmaj9 | G#13sus G13sus | Cmaj9 Gm7#5 | Cmaj7
Ebmaj9 Abmaj7/Eb Gm7 Gbm9 Fm7 Bb7(#5b9) Ebmaj9 Abmaj7/Eb
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
RYM Album | First Name | Last Name | First Name localized | Last Name localized | Title | Release_Date | Rating | Ownership | Purchase Date | Media Type | Review | |
---|---|---|---|---|---|---|---|---|---|---|---|---|
377580 | 김정미 | Kim Jung Mi | Now | 1973 | 4 | n | ||||||
382486 | 산울림 | Sanullim | 새노래 모음 | 1977 | 5 | n | ||||||
9573206 | 공중도둑 | Mid-Air Thief | 화원 | 2012 | 7 | n | ||||||
10983553 | 공중도둑 | Mid-Air Thief | 동요 / 할시온의 관 | 2019 | 7 | n | ||||||
9573214 | 공중도둑 | Mid-Air Thief | 해몽양 | 2012 | 7 | n | ||||||
1730044 | 4 Hero | Hold It Down | 2002 | 7 | n | |||||||
11004440 | Agnarkea | Memory Waves | 2019 | 8 | n | MP3 | ||||||
125959 | Aksak Maboul | Un peu de l'âme des bandits | 1980 | 7 | n | |||||||
698368 | Alban Berg Quartett | String Quartets | 1986 | 8 | n |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+down", | |
"command": "-scrollLineDown", | |
"when": "textInputFocus" | |
}, | |
{ | |
"key": "ctrl+up", | |
"command": "-scrollLineUp", |
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
optimize_grammar = r""" | |
inc_chain = ['INC':op anything:n]+:xs -> (op, sum([x[1] for x in xs])) | |
dec_chain = ['DEC':op anything:n]+:xs -> (op, sum([x[1] for x in xs])) | |
add_chain = ['ADD':op anything:n]+:xs -> (op, sum([x[1] for x in xs])) | |
sub_chain = ['SUB':op anything:n]+:xs -> (op, sum([x[1] for x in xs])) | |
slice = inc_chain | dec_chain | add_chain | sub_chain | [anything:op anything:arg] | |
bytecode = slice* | |
""" |
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
{ | |
"workbench.activityBar.visible": false, | |
"editor.wordWrap": "on", | |
"workbench.iconTheme": "vs-seti", | |
"window.menuBarVisibility": "default", | |
"window.zoomLevel": 0, | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"workbench.colorCustomizations": { |
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
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(ansi-color-faces-vector | |
[default default default italic underline success warning error]) | |
'(custom-enabled-themes (quote (wombat))) | |
'(inhibit-startup-screen t)) | |
(custom-set-faces |