-
Wondering is there any way to handle datasets where no audio but their features are available? For example, AudioSet provides audio features extracted from youtube videos. I'm new to lhotse. If I understand the document correctly, a typical lhotse workflow starts from constructing the recording manifest, and audio source seems required there. Am I missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, a Line 310 in 89ca0e6 Once you have created the CutSet using the features, you can use them in the same way as you would use any regular cut set. |
Beta Was this translation helpful? Give feedback.
Yes, a
Cut
in Lhotse can be defined using any combination ofRecording
,Feature
, orSupervision
. See theCutSet.from_manifests()
method here:lhotse/lhotse/cut/set.py
Line 310 in 89ca0e6
Once you have created the CutSet using the features, you can use them in the same way as you would use any regular cut set.