-
Notifications
You must be signed in to change notification settings - Fork 76
Audiovisual dataset loader #698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
9da8d13
1669422
4898a9d
4676a26
9933911
973735b
a493767
22949a3
006bf83
7cdef87
690b0ac
e00eb80
a897cc2
1944920
8e8f7bb
5aa2210
f21eeb6
8746032
9d389ad
9a41eb1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,6 +76,3 @@ Please see :ref:`contributing` for guidelines. | |
| :maxdepth: 1 | ||
|
|
||
| source/faq | ||
|
|
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,6 +124,7 @@ | |
| :target: https://creativecommons.org/licenses/by-nc-sa/4.0 | ||
|
|
||
| * - .. line-block:: | ||
|
|
||
| (CompMusic) | ||
| Indian Tonic | ||
|
|
||
|
|
@@ -253,9 +254,9 @@ | |
| - .. image:: https://licensebuttons.net/l/by-sa/4.0/80x15.png | ||
| :target: https://creativecommons.org/licenses/by-sa/4.0 | ||
|
|
||
| * - .. line-block:: | ||
| * - .. :: | ||
|
|
||
| Freesound One-Shot | ||
| Freesound One-Shot | ||
| Percussive Sounds | ||
|
|
||
| - - audio: ✅ | ||
|
|
@@ -392,6 +393,18 @@ | |
| - .. image:: https://img.shields.io/badge/License-MIT-blue.svg | ||
| :target: https://lbesson.mit-license.org/ | ||
|
|
||
| * - .. :: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mind if I ask why this is added again? It's already in line 460 |
||
|
|
||
| MTG Jamendo | ||
| Autotagging Moodtheme | ||
|
|
||
| - - audio: ✅ | ||
| - annotations: ✅ | ||
| - - moodtheme annotations | ||
| - 18448 | ||
| - .. image:: https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png | ||
| :target: https://creativecommons.org/licenses/by-nc-sa/4.0 | ||
|
|
||
| * - MAESTRO | ||
| - - audio: ✅ | ||
| - annotations: ✅ | ||
|
|
@@ -442,9 +455,9 @@ | |
| - .. image:: https://licensebuttons.net/l/by/3.0/80x15.png | ||
| :target: https://creativecommons.org/licenses/by/3.0/ | ||
|
|
||
| * - .. line-block:: | ||
| * - .. :: | ||
|
|
||
| MTG Jamendo | ||
| MTG Jamendo | ||
| Autotagging Moodtheme | ||
|
|
||
| - - audio: ✅ | ||
|
|
@@ -530,6 +543,14 @@ | |
| - .. image:: https://licensebuttons.net/l/zero/1.0/80x15.png | ||
| :target: http://creativecommons.org/publicdomain/zero/1.0/ | ||
|
|
||
| * - Saraga Audiovisual | ||
| - - audio: ✅ | ||
| - annotations: ✅ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is indent error here. It should be same indent as |
||
| - - :ref:`gesture` | ||
| - 233 | ||
| - .. image:: https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png | ||
| :target: https://creativecommons.org/licenses/by-nc-sa/4.0 | ||
|
|
||
| * - Saraga Carnatic | ||
| - - audio: ✅ | ||
| - annotations: ✅ | ||
|
|
@@ -556,9 +577,9 @@ | |
| - 108 | ||
| - .. image:: https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png | ||
| :target: https://creativecommons.org/licenses/by-nc-sa/4.0 | ||
| * - .. line-block:: | ||
|
|
||
| * - .. :: | ||
|
|
||
| Saraga Carnatic | ||
| Melody Synth (SCMS) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -204,6 +204,22 @@ def __init__( | |
| self.confidence = confidence | ||
|
|
||
|
|
||
| class GestureData(Annotation): | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Question: For gesture data (keypoints, scores), can't it be just a Track attribute instead of adding having a separate class for this? or am I missing some context? |
||
| """GestureData Class | ||
|
|
||
| Attributes: | ||
| keypoints (np.ndarray): | ||
| scores (np.ndarray): | ||
| """ | ||
|
|
||
| def __init__(self, keypoints, scores): | ||
| validate_array_like(keypoints, np.ndarray, np.float32) | ||
| validate_array_like(scores, np.ndarray, np.float32) | ||
|
|
||
| self.keypoints = keypoints | ||
| self.scores = scores | ||
|
|
||
|
|
||
| class F0Data(Annotation): | ||
| """F0Data class | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mirdatais usingMoviePyas a video dependency instead ofOpenCV. Please check more details about the comment here fromload_video.