yv-xtract


Nameyv-xtract JSON
Version 1.2 PyPI version JSON
download
home_page
SummaryCLI tool to download YouTube videos
upload_time2023-09-15 21:39:24
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2023 Ricardo Arturo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python youtube video downloader cli mp3 mp4 gif
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # YouTube Video Xtractor

A simple CLI tool to download videos from YouTube either in MP4, MP3 or GIF format and with the ability to crop them.

Developed by [Ricaidito](https://github.com/Ricaidito).

## Usage

```console
yvx [-h] [-mp3] [-gif] [--start-time START_TIME] [--end-time END_TIME] [--path PATH] [--set-path SET_PATH] url

positional arguments:
  url                   URL of the video to download.

options:
  -h, --help            show this help message and exit
  -mp3                  Convert the video to MP3 format.
  -gif                  Convert the video to GIF format.
  --start-time START_TIME
                        Time from where the video will start (Format: HH:MM:SS [e.g., 00:02:30]).
  --end-time END_TIME   Time where the video will end (Format: HH:MM:SS [e.g., 00:05:00]).
  --path PATH           Path to store the downloaded file.
  --set-path SET_PATH   Set the default path to store the downloaded files.
```

### Examples:

To download a video in MP4 format, execute the following command:

```console
yvx <video_url>
```

Download the video in MP3 format:

```console
yvx <video_url> -mp3
```

Download the video in GIF format:

```console
yvx <video_url> -gif
```

To extract a clip from 2:30 to 5:00:

```console
yvx <video_url> --start-time 00:02:30 --end-time 00:05:00
```

You also can specify the end time only. For example, to download the video until 5:00:

```console
yvx <video_url> --end-time 00:05:00
```

## License

This project is licensed under the MIT License.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "yv-xtract",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "python,youtube,video,downloader,cli,mp3,mp4,gif",
    "author": "",
    "author_email": "Ricardo Ramirez <ricaiditodev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/43/d8/02ea58aefe140d623ccfae450a947b2712d5798ddcc5d3bfd945b2166590/yv_xtract-1.2.tar.gz",
    "platform": null,
    "description": "# YouTube Video Xtractor\r\n\r\nA simple CLI tool to download videos from YouTube either in MP4, MP3 or GIF format and with the ability to crop them.\r\n\r\nDeveloped by [Ricaidito](https://github.com/Ricaidito).\r\n\r\n## Usage\r\n\r\n```console\r\nyvx [-h] [-mp3] [-gif] [--start-time START_TIME] [--end-time END_TIME] [--path PATH] [--set-path SET_PATH] url\r\n\r\npositional arguments:\r\n  url                   URL of the video to download.\r\n\r\noptions:\r\n  -h, --help            show this help message and exit\r\n  -mp3                  Convert the video to MP3 format.\r\n  -gif                  Convert the video to GIF format.\r\n  --start-time START_TIME\r\n                        Time from where the video will start (Format: HH:MM:SS [e.g., 00:02:30]).\r\n  --end-time END_TIME   Time where the video will end (Format: HH:MM:SS [e.g., 00:05:00]).\r\n  --path PATH           Path to store the downloaded file.\r\n  --set-path SET_PATH   Set the default path to store the downloaded files.\r\n```\r\n\r\n### Examples:\r\n\r\nTo download a video in MP4 format, execute the following command:\r\n\r\n```console\r\nyvx <video_url>\r\n```\r\n\r\nDownload the video in MP3 format:\r\n\r\n```console\r\nyvx <video_url> -mp3\r\n```\r\n\r\nDownload the video in GIF format:\r\n\r\n```console\r\nyvx <video_url> -gif\r\n```\r\n\r\nTo extract a clip from 2:30 to 5:00:\r\n\r\n```console\r\nyvx <video_url> --start-time 00:02:30 --end-time 00:05:00\r\n```\r\n\r\nYou also can specify the end time only. For example, to download the video until 5:00:\r\n\r\n```console\r\nyvx <video_url> --end-time 00:05:00\r\n```\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License.\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Ricardo Arturo  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "CLI tool to download YouTube videos",
    "version": "1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/Ricaidito/yv-xtract/issues",
        "Repository": "https://github.com/Ricaidito/yv-xtract.git"
    },
    "split_keywords": [
        "python",
        "youtube",
        "video",
        "downloader",
        "cli",
        "mp3",
        "mp4",
        "gif"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c76d089b122c4dd289d2c3dd5ee4c893412715791fbcca50287bf858846fe614",
                "md5": "bee7477d484878381c305d42c29d1ccf",
                "sha256": "c3dd97d850710458b2a37158968276d32b00f9f27d3cbe95a417b4c8acb761cf"
            },
            "downloads": -1,
            "filename": "yv_xtract-1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bee7477d484878381c305d42c29d1ccf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6920,
            "upload_time": "2023-09-15T21:39:22",
            "upload_time_iso_8601": "2023-09-15T21:39:22.970960Z",
            "url": "https://files.pythonhosted.org/packages/c7/6d/089b122c4dd289d2c3dd5ee4c893412715791fbcca50287bf858846fe614/yv_xtract-1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43d802ea58aefe140d623ccfae450a947b2712d5798ddcc5d3bfd945b2166590",
                "md5": "6e430c05a91a59fa22a963079c10bd8a",
                "sha256": "17bc927acf3a0bcf52d3d3d777c2dc594404978395618070c2a66fdc40e85fda"
            },
            "downloads": -1,
            "filename": "yv_xtract-1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "6e430c05a91a59fa22a963079c10bd8a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6010,
            "upload_time": "2023-09-15T21:39:24",
            "upload_time_iso_8601": "2023-09-15T21:39:24.389432Z",
            "url": "https://files.pythonhosted.org/packages/43/d8/02ea58aefe140d623ccfae450a947b2712d5798ddcc5d3bfd945b2166590/yv_xtract-1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-15 21:39:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Ricaidito",
    "github_project": "yv-xtract",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "yv-xtract"
}
        
Elapsed time: 0.12945s