-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Play audio region from sidebar #1445
Comments
I would like to contribute to this feature, If someone can give out some pointer on where should I look for in label studio codebase, and after that I can pick it up 😄 |
@kaustuk https://github.com/heartexlabs/label-studio-frontend/blob/master/src/components/Entities/RegionItem.js --- I think the play button could be here. |
Hi @makseq, I actually went through the code whatever you have mentioned. So here is the implementation I was thinking of. Implementation:
{item.playable && (
<Elem tag={Button} name="playable" size="small" type="text" onClick={item._ws_region.play()} >
{<LsVisible/>}
</Elem>
)} Here LsVisible would be replaced by some other play button. The problem/unknown for me
PS: Sorry to ask such a silly question 🙈 . But I am completely new to react framework. |
@kaustuk Sorry for the delay. Do you have an opened PR with this feature? Are you still in progress? @Gondragos could you assist with 1-3 questions please? |
Hi @makseq, Nope I don't have open PR. It's still in progress. I am still exploring and learning react. The above question answer would be helpful. |
Hi, @kaustuk ! Thanks a lot that you are willing to improve audio labeling! Weird thing that regions have only
Hope this helps! |
Is your feature request related to a problem? Please describe.
Consider a scenario, we have an ASR system that provides the transcript per audio region basically it's able to find a speech and transcribe it. Now we want to give it out to the annotator for transcript corrects. And in this case, we will create a pre-annotated label studio task at the region level.
As per the current label studio version annotation flow would look like below
Feature requested annotation flow look like
With this feature, it would have a lot less effort for the user for labeling
Additional context

Here is the screenshot explaining the feature request
The text was updated successfully, but these errors were encountered: