Spaces:
No application file
No application file
File size: 1,373 Bytes
3883c60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
from typing import Literal, Callable
import gradio
import numpy as np
class Audio(gradio.Audio):
def __init__(
self,
value: str | tuple[int, np.ndarray] | Callable | None = None,
*,
source: str = "upload",
type: str = "numpy",
label: str | None = None,
every: float | None = None,
show_label: bool = True,
container: bool = True,
scale: int | None = None,
min_width: int = 160,
interactive: bool | None = None,
visible: bool = True,
streaming: bool = False,
elem_id: str | None = None,
elem_classes: list[str] | str | None = None,
format: Literal["wav", "mp3"] = "wav",
autoplay: bool = False,
**kwargs,
):
super().__init__(value, source=source, type=type, label=label, every=every, show_label=show_label,
container=container, scale=scale, min_width=min_width, interactive=interactive,
visible=visible, streaming=streaming, elem_id=elem_id, elem_classes=elem_classes,
format=format, autoplay=autoplay, **kwargs)
self.change(fn=lambda a: a, inputs=self, outputs=self)
def patch():
print('Monkeypatching gradio')
gradio.Audio = Audio
|