gradio-videoslider


Namegradio-videoslider JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
SummaryVideoSlider Component for Gradio
upload_time2025-07-23 20:47:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords gradio-custom-component gradio-template-imageslider
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ---
tags: [gradio-custom-component, ImageSlider]
title: gradio_videoslider
short_description: VideoSlider Component for Gradio
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---

# `gradio_videoslider`
<a href="https://pypi.org/project/gradio_videoslider/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_videoslider"></a>  

VideoSlider Component for Gradio

## Installation

```bash
pip install gradio_videoslider
```

## Usage

```python
import gradio as gr
from gradio_videoslider import VideoSlider
import os

# --- 1. DEFINE THE PATHS TO YOUR LOCAL VIDEOS ---
#
# IMPORTANT: Replace the values below with the paths to YOUR video files.
#
# Option A: Relative Path (if the video is in the same folder as this app.py)
# video_path_1 = "video_before.mp4"
# video_path_2 = "video_after.mp4"
#
# Option B: Absolute Path (the full path to the file on your computer)
# Example for Windows:
# video_path_1 = "C:\\Users\\YourName\\Videos\\my_video_1.mp4"
#
# Example for Linux/macOS:
# video_path_1 = "/home/yourname/videos/my_video_1.mp4"

# Set your file paths here:
video_path_1 = "examples/SampleVideo 720x480.mp4"
video_path_2 = "examples/SampleVideo 1280x720.mp4"


# --- 2. FUNCTION FOR THE UPLOAD EXAMPLE ---
def process_uploaded_videos(video_inputs):
    """This function handles the uploaded videos."""
    print("Received videos from upload:", video_inputs)
    return video_inputs


# --- 3. GRADIO INTERFACE ---
with gr.Blocks() as demo:
    gr.Markdown("# Video Slider Component Usage Examples")
    gr.Markdown("<span>💻 <a href='https://github.com/DEVAIEXP/gradio_component_videoslider'>Component GitHub Code</a></span>")

    with gr.Tabs():
        # --- TAB 1: UPLOAD EXAMPLE ---
        with gr.TabItem("1. Compare via Upload"):
            gr.Markdown("## Upload two videos to compare them side-by-side.")
            video_slider_input = VideoSlider(label="Your Videos", height=400, width=700, video_mode="upload")
            video_slider_output = VideoSlider(
                label="Video comparision",
                interactive=False,
                autoplay=True,                
                video_mode="preview",
                show_download_button=False,
                loop=True,
                height=400,
                width=700
            )
            submit_btn = gr.Button("Submit")
            submit_btn.click(
                fn=process_uploaded_videos,
                inputs=[video_slider_input],
                outputs=[video_slider_output]
            )

        # --- TAB 2: LOCAL FILE EXAMPLE ---
        with gr.TabItem("2. Compare Local Files"):
            gr.Markdown("## Example with videos pre-loaded from your local disk.")
            
            # This is the key part: we pass a tuple of your local file paths to the `value` parameter.
            VideoSlider(
                label="Video comparision",
                value=(video_path_1, video_path_2),
                interactive=False,
                show_download_button=False,
                autoplay=True,
                video_mode="preview",
                loop=True,
                height=400,
                width=700
            )

# A check to give a helpful error message if files are not found.
if not os.path.exists(video_path_1) or not os.path.exists(video_path_2):
    print("---")
    print(f"WARNING: Could not find one or both video files.")
    print(f"Please make sure these paths are correct in your app.py file:")
    print(f"  - '{os.path.abspath(video_path_1)}'")
    print(f"  - '{os.path.abspath(video_path_2)}'")
    print("---")

if __name__ == '__main__':
    demo.launch(debug=True)

```

## `VideoSlider`

### Initialization

<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">

```python
typing.Union[
    typing.Tuple[str | pathlib.Path, str | pathlib.Path],
    typing.Callable,
    NoneType,
][
    typing.Tuple[str | pathlib.Path, str | pathlib.Path][
        str | pathlib.Path, str | pathlib.Path
    ],
    Callable,
    None,
]
```

</td>
<td align="left"><code>None</code></td>
<td align="left">A tuple of two video file paths or URLs to display initially. Can also be a callable.</td>
</tr>

<tr>
<td align="left"><code>height</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The height of the component container in pixels.</td>
</tr>

<tr>
<td align="left"><code>width</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The width of the component container in pixels.</td>
</tr>

<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The label for this component that appears above it.</td>
</tr>

<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">

```python
float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If `value` is a callable, run the function 'every' seconds while the client connection is open.</td>
</tr>

<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If False, the label is not displayed.</td>
</tr>

<tr>
<td align="left"><code>container</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, the component will not be wrapped in a container.</td>
</tr>

<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An integer that defines the component's relative size in a layout.</td>
</tr>

<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>160</code></td>
<td align="left">The minimum width of the component in pixels.</td>
</tr>

<tr>
<td align="left"><code>interactive</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If True, the component is in input mode (upload). If False, it's in display-only mode.</td>
</tr>

<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, the component is not rendered.</td>
</tr>

<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional string that is assigned as the id of the component in the HTML.</td>
</tr>

<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">

```python
typing.Union[typing.List[str], str, NoneType][
    typing.List[str][str], str, None
]
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional list of strings that are assigned as the classes of the component in the HTML.</td>
</tr>

<tr>
<td align="left"><code>position</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>50</code></td>
<td align="left">The initial horizontal position of the slider, from 0 (left) to 100 (right).</td>
</tr>

<tr>
<td align="left"><code>show_download_button</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True, a download button is shown for the second video.</td>
</tr>

<tr>
<td align="left"><code>show_mute_button</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True, a mute/unmute button is shown.</td>
</tr>

<tr>
<td align="left"><code>show_fullscreen_button</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True, a fullscreen button is shown.</td>
</tr>

<tr>
<td align="left"><code>video_mode</code></td>
<td align="left" style="width: 25%;">

```python
"upload" | "preview"
```

</td>
<td align="left"><code>"preview"</code></td>
<td align="left">The mode of the component, either "upload" or "preview".</td>
</tr>

<tr>
<td align="left"><code>autoplay</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>False</code></td>
<td align="left">If True, videos will start playing automatically on load (muted).</td>
</tr>

<tr>
<td align="left"><code>loop</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>False</code></td>
<td align="left">If True, videos will loop when they finish playing.</td>
</tr>
</tbody></table>


### Events

| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the VideoSlider changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
| `upload` | This listener is triggered when the user uploads a file into the VideoSlider. |
| `clear` | This listener is triggered when the user clears the VideoSlider using the clear button for the component. |



### User function

The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).

- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.

The code snippet below is accurate in cases where the component is used as both an input and an output.



 ```python
 def predict(
     value: typing.Optional[
    typing.Tuple[
        str | pathlib.Path | None, str | pathlib.Path | None
    ]
][
    typing.Tuple[
        str | pathlib.Path | None, str | pathlib.Path | None
    ][str | pathlib.Path | None, str | pathlib.Path | None],
    None,
]
 ) -> typing.Optional[
    typing.Tuple[
        str | pathlib.Path | None, str | pathlib.Path | None
    ]
][
    typing.Tuple[
        str | pathlib.Path | None, str | pathlib.Path | None
    ][str | pathlib.Path | None, str | pathlib.Path | None],
    None,
]:
     return value
 ```
 

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gradio-videoslider",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "gradio-custom-component, gradio-template-ImageSlider",
    "author": null,
    "author_email": "Eliseu Silva <elismasilva@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/04/a0/9330480f1f92d8b56c2784abeb63914d6c6325884fb22c82740a4ecca652/gradio_videoslider-0.0.2.tar.gz",
    "platform": null,
    "description": "---\ntags: [gradio-custom-component, ImageSlider]\ntitle: gradio_videoslider\nshort_description: VideoSlider Component for Gradio\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_videoslider`\n<a href=\"https://pypi.org/project/gradio_videoslider/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_videoslider\"></a>  \n\nVideoSlider Component for Gradio\n\n## Installation\n\n```bash\npip install gradio_videoslider\n```\n\n## Usage\n\n```python\nimport gradio as gr\nfrom gradio_videoslider import VideoSlider\nimport os\n\n# --- 1. DEFINE THE PATHS TO YOUR LOCAL VIDEOS ---\n#\n# IMPORTANT: Replace the values below with the paths to YOUR video files.\n#\n# Option A: Relative Path (if the video is in the same folder as this app.py)\n# video_path_1 = \"video_before.mp4\"\n# video_path_2 = \"video_after.mp4\"\n#\n# Option B: Absolute Path (the full path to the file on your computer)\n# Example for Windows:\n# video_path_1 = \"C:\\\\Users\\\\YourName\\\\Videos\\\\my_video_1.mp4\"\n#\n# Example for Linux/macOS:\n# video_path_1 = \"/home/yourname/videos/my_video_1.mp4\"\n\n# Set your file paths here:\nvideo_path_1 = \"examples/SampleVideo 720x480.mp4\"\nvideo_path_2 = \"examples/SampleVideo 1280x720.mp4\"\n\n\n# --- 2. FUNCTION FOR THE UPLOAD EXAMPLE ---\ndef process_uploaded_videos(video_inputs):\n    \"\"\"This function handles the uploaded videos.\"\"\"\n    print(\"Received videos from upload:\", video_inputs)\n    return video_inputs\n\n\n# --- 3. GRADIO INTERFACE ---\nwith gr.Blocks() as demo:\n    gr.Markdown(\"# Video Slider Component Usage Examples\")\n    gr.Markdown(\"<span>\ud83d\udcbb <a href='https://github.com/DEVAIEXP/gradio_component_videoslider'>Component GitHub Code</a></span>\")\n\n    with gr.Tabs():\n        # --- TAB 1: UPLOAD EXAMPLE ---\n        with gr.TabItem(\"1. Compare via Upload\"):\n            gr.Markdown(\"## Upload two videos to compare them side-by-side.\")\n            video_slider_input = VideoSlider(label=\"Your Videos\", height=400, width=700, video_mode=\"upload\")\n            video_slider_output = VideoSlider(\n                label=\"Video comparision\",\n                interactive=False,\n                autoplay=True,                \n                video_mode=\"preview\",\n                show_download_button=False,\n                loop=True,\n                height=400,\n                width=700\n            )\n            submit_btn = gr.Button(\"Submit\")\n            submit_btn.click(\n                fn=process_uploaded_videos,\n                inputs=[video_slider_input],\n                outputs=[video_slider_output]\n            )\n\n        # --- TAB 2: LOCAL FILE EXAMPLE ---\n        with gr.TabItem(\"2. Compare Local Files\"):\n            gr.Markdown(\"## Example with videos pre-loaded from your local disk.\")\n            \n            # This is the key part: we pass a tuple of your local file paths to the `value` parameter.\n            VideoSlider(\n                label=\"Video comparision\",\n                value=(video_path_1, video_path_2),\n                interactive=False,\n                show_download_button=False,\n                autoplay=True,\n                video_mode=\"preview\",\n                loop=True,\n                height=400,\n                width=700\n            )\n\n# A check to give a helpful error message if files are not found.\nif not os.path.exists(video_path_1) or not os.path.exists(video_path_2):\n    print(\"---\")\n    print(f\"WARNING: Could not find one or both video files.\")\n    print(f\"Please make sure these paths are correct in your app.py file:\")\n    print(f\"  - '{os.path.abspath(video_path_1)}'\")\n    print(f\"  - '{os.path.abspath(video_path_2)}'\")\n    print(\"---\")\n\nif __name__ == '__main__':\n    demo.launch(debug=True)\n\n```\n\n## `VideoSlider`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\ntyping.Union[\n    typing.Tuple[str | pathlib.Path, str | pathlib.Path],\n    typing.Callable,\n    NoneType,\n][\n    typing.Tuple[str | pathlib.Path, str | pathlib.Path][\n        str | pathlib.Path, str | pathlib.Path\n    ],\n    Callable,\n    None,\n]\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">A tuple of two video file paths or URLs to display initially. Can also be a callable.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>height</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The height of the component container in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The width of the component container in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The label for this component that appears above it.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nfloat | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If `value` is a callable, run the function 'every' seconds while the client connection is open.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If False, the label is not displayed.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>container</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, the component will not be wrapped in a container.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An integer that defines the component's relative size in a layout.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">The minimum width of the component in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>interactive</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If True, the component is in input mode (upload). If False, it's in display-only mode.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, the component is not rendered.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional string that is assigned as the id of the component in the HTML.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\ntyping.Union[typing.List[str], str, NoneType][\n    typing.List[str][str], str, None\n]\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional list of strings that are assigned as the classes of the component in the HTML.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>position</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>50</code></td>\n<td align=\"left\">The initial horizontal position of the slider, from 0 (left) to 100 (right).</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_download_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, a download button is shown for the second video.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_mute_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, a mute/unmute button is shown.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_fullscreen_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, a fullscreen button is shown.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>video_mode</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\n\"upload\" | \"preview\"\n```\n\n</td>\n<td align=\"left\"><code>\"preview\"</code></td>\n<td align=\"left\">The mode of the component, either \"upload\" or \"preview\".</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>autoplay</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">If True, videos will start playing automatically on load (muted).</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>loop</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">If True, videos will loop when they finish playing.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the VideoSlider changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |\n| `upload` | This listener is triggered when the user uploads a file into the VideoSlider. |\n| `clear` | This listener is triggered when the user clears the VideoSlider using the clear button for the component. |\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n\n\n ```python\n def predict(\n     value: typing.Optional[\n    typing.Tuple[\n        str | pathlib.Path | None, str | pathlib.Path | None\n    ]\n][\n    typing.Tuple[\n        str | pathlib.Path | None, str | pathlib.Path | None\n    ][str | pathlib.Path | None, str | pathlib.Path | None],\n    None,\n]\n ) -> typing.Optional[\n    typing.Tuple[\n        str | pathlib.Path | None, str | pathlib.Path | None\n    ]\n][\n    typing.Tuple[\n        str | pathlib.Path | None, str | pathlib.Path | None\n    ][str | pathlib.Path | None, str | pathlib.Path | None],\n    None,\n]:\n     return value\n ```\n \n",
    "bugtrack_url": null,
    "license": null,
    "summary": "VideoSlider Component for Gradio",
    "version": "0.0.2",
    "project_urls": null,
    "split_keywords": [
        "gradio-custom-component",
        " gradio-template-imageslider"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "561d13351d7cb03165eca9993413e8061ce9232f3bbfd4c1641d7e3f51b193b2",
                "md5": "9dfe94fa2c8956975e779c9a37b333d3",
                "sha256": "b341eb61864faf022d961354a08d6ea8429f5dccaec62437c7f3b06dd0d2df63"
            },
            "downloads": -1,
            "filename": "gradio_videoslider-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9dfe94fa2c8956975e779c9a37b333d3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 363440,
            "upload_time": "2025-07-23T20:47:53",
            "upload_time_iso_8601": "2025-07-23T20:47:53.475868Z",
            "url": "https://files.pythonhosted.org/packages/56/1d/13351d7cb03165eca9993413e8061ce9232f3bbfd4c1641d7e3f51b193b2/gradio_videoslider-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04a09330480f1f92d8b56c2784abeb63914d6c6325884fb22c82740a4ecca652",
                "md5": "7d6e869f9a1a60b6c552c1a09f673e60",
                "sha256": "80a324f5f84d2d239d27aca605553dd2d3f90b1573d724735534a869a85575d8"
            },
            "downloads": -1,
            "filename": "gradio_videoslider-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7d6e869f9a1a60b6c552c1a09f673e60",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 2011741,
            "upload_time": "2025-07-23T20:47:57",
            "upload_time_iso_8601": "2025-07-23T20:47:57.601918Z",
            "url": "https://files.pythonhosted.org/packages/04/a0/9330480f1f92d8b56c2784abeb63914d6c6325884fb22c82740a4ecca652/gradio_videoslider-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-23 20:47:57",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gradio-videoslider"
}
        
Elapsed time: 0.79680s