-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c78f29e
commit a77acb1
Showing
11 changed files
with
228 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# This Music sheet is written by Mustafa Alotbah | ||
# | ||
|
||
Title: Osad Eini | ||
Author: Amr Diab | ||
bpm: 55 | ||
capo fret: 3 | ||
|
||
e |-----------------------| |-----------------------| |----------------------------| | ||
B |--0!1!0r-----0!2r-2++--| |-1-1!0---0-0!1!3!1-1++-| |-1-1!0-1!-3+-3!2!!1!!0-0++--| | ||
G |---------2-0-0!2r-2++--| |-------2---------------| |----------------------------| | ||
D |-2-----------0+r-------| |-----------------------| |----------------------------| | ||
A |-----------------------| |-----------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
||
e |-----------------------| |-----------------------| |----------------------------| | ||
B |-0-0!1!0r-----0!2++r---| |-----------------------| |----------------------------| | ||
G |----------2-0-0!2++r---| |-2-2!0--2!4+-4!5!4-4++-| |4!-4!2-2!0-0-0!2++-2!4!2-2++| | ||
D |--------------0++r-----| |-----------------------| |----------------------------| | ||
A |-----------------------| |-----------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
||
e |-----------------------| |-----------------0++r--| |----------------------------| | ||
B |-0-0!1!0r-----0!2++r---| |-------------0!!r------| |-0!!1!!3!!5++-5!-5!3-3!1-1++| | ||
G |----------2-0-0!2++r---| |---------2!!r----------| |----------------------------| | ||
D |--------------0++r-----| |-----2!!r--------------| |----------------------------| | ||
A |-----------------------| |-0!!r------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
||
e |-----------------------| |-----------------------| |----------------------------| | ||
B |-3!1!0-1-1!3++---------| |-3!-3!1-1!0-0+---------| |---0-0!1!3!1++--------------| | ||
G |-----------------------| |-----------------------| |-2--------------------------| | ||
D |-----------------------| |-----------------------| |----------------------------| | ||
A |-----------------------| |-----------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
||
e |-----------------------| |-----------------------| |----------------------------| | ||
B |--10--0-1-3-3!5++------| |-0-1-3-3!5++--5++------| |-5!-5!6!5!-3!5!3!r----------| | ||
G |-----2-----------------| |-----------------------| |-------------------5++------| | ||
D |-----------------------| |-----------------------| |----------------------------| | ||
A |-----------------------| |-----------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
||
e |-----------------------| |-----------------------| |----------------------------| | ||
B |-3!1!0-1-1!3++---------| |-1!-3!5!3!-1!3!1!------| |----------------------------| | ||
G |-----------------------| |------------------4++--| |----------------------------| | ||
D |-----------------------| |-----------------------| |----------------------------| | ||
A |-----------------------| |-----------------------| |----------------------------| | ||
E |-----------------------| |-----------------------| |----------------------------| | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ classifiers = [ | |
dependencies = [ | ||
"numpy", | ||
"soundfile", | ||
"sounddevice", | ||
"argparse" | ||
] | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
numpy | ||
soundfile | ||
sounddevice | ||
argparse | ||
importlib_resources; python_version < "3.10" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
'numpy', | ||
'argparse', | ||
'soundfile', | ||
'sounddevice', | ||
], | ||
include_package_data=True, | ||
entry_points={ | ||
|