svtplay-dl


Namesvtplay-dl JSON
Version 4.71 PyPI version JSON
download
home_pagehttps://svtplay-dl.se
SummaryCommand-line program to download videos from various video on demand sites
upload_time2024-04-11 21:03:31
maintainerNone
docs_urlNone
authorJohan Andersson
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # svtplay-dl
[![Build Status Actions](https://img.shields.io/github/actions/workflow/status/spaam/svtplay-dl/tests.yaml?label=Build%20status%20action)](https://github.com/spaam/svtplay-dl/actions) [![Discord](https://img.shields.io/static/v1?label=chat&message=discord&color=green&style=flat&logo=discord)](https://discord.gg/S2YK6Jtb3P)

## Installation

### MacOS

If you have [Homebrew](https://brew.sh/) on your machine you can install by running:

```
    brew install svtplay-dl
```
You will need to run `brew install ffmpeg` afterwards, if you don't already have one of these packages.

### Debian and Ubuntu

svtplay-dl is available in Debian strech and later and on Ubuntu 16.04 and later, which means you can install it straight away using apt. The version in their repo is often old and thus we **strongly** recommend using our own apt repo, which always include the latest version. The svtplay-dl repo for Debian / Ubuntu can be found at [apt.svtplay-dl.se](https://apt.svtplay-dl.se/).

##### Add the release PGP keys:
```
    curl -s https://svtplay-dl.se/release-key.txt | sudo apt-key add -
```

##### Add the "release" channel to your APT sources:
```
    echo "deb https://apt.svtplay-dl.se/ svtplay-dl release" | sudo tee /etc/apt/sources.list.d/svtplay-dl.list
```

##### Update and install svtplay-dl:
```
    sudo apt-get update

    sudo apt-get install svtplay-dl
```

### Solus

svtplay-dl is avaliable in the [Solus](https://getsol.us.com/) repository and can be installed by simply running:

```
sudo eopkg it svtplay-dl
```

### Windows

You can download the Windows binaries from [svtplay-dl.se](https://svtplay-dl.se/)

If you want to build your own Windows binaries:

1. Install [cx_freeze](https://anthony-tuininga.github.io/cx_Freeze/)
3. Follow the steps listed under [From source](#from-source)
4. cd path\to\svtplay-dl && mkdir build
5. `pip install -e .`
6. `python setversion.py`  # this will change the version string to a more useful one
7. `python %PYTHON%\\Scripts\\cxfreeze --include-modules=cffi,queue,idna.idnadata --target-dir=build bin/svtplay-dl`
8. Find binary in build folder. you need `svtplay-dl.exe` and `pythonXX.dll` from that folder to run `svtplay-dl.exe`

### Other systems with python

```
    pip3 install svtplay-dl
```

### Any UNIX (Linux, BSD, macOS, etc.)

##### Download with curl
```
sudo curl -L https://svtplay-dl.se/download/latest/svtplay-dl -o /usr/local/bin/svtplay-dl
```

##### Make it executable
```
sudo chmod a+rx /usr/local/bin/svtplay-dl
```

### From source

If packaging isn’t available for your operating system, or you want to
use a non-released version, you’ll want to install from source. Use git
to download the sources:

```
    git clone https://github.com/spaam/svtplay-dl
```

svtplay-dl requires the following additional tools and libraries. They
are usually available from your distribution’s package repositories. If
you don’t have them, some features will not be working.

-  [Python](https://www.python.org) 3.6 or higher
-  [cryptography](https://cryptography.io/en/latest) to download encrypted HLS streams
-  [PyYaml](https://github.com/yaml/pyyaml) for configure file
-  [Requests](https://2.python-requests.org)
-  [PySocks](https://github.com/Anorov/PySocks) to enable proxy support
-  [ffmpeg](https://ffmpeg.org) for postprocessing and/or for DASH streams ([ffmpeg](https://ffmpeg.zeranoe.com) for Windows)

##### To install it, run:

```
    sudo python3 setup.py install
```

## After install

```
    svtplay-dl [options] URL
```

If you encounter any bugs or problems, don’t hesitate to open an issue [on github](https://github.com/spaam/svtplay-dl/issues).
Or why not join the ``#svtplay-dl`` IRC channel on Freenode?

## Supported services

This script works for:

-  aftonbladet.se
-  bambuser.com
-  comedycentral.se
-  di.se
-  dn.se
-  dplay.se
-  dr.dk
-  efn.se
-  expressen.se
-  hbo.com
-  kanal9play.se
-  nickelodeon.nl
-  nickelodeon.no
-  nickelodeon.se
-  nrk.no
-  oppetarkiv.se
-  pluto.tv (former viafree.se, viafree.dk, viafree.no)
-  ruv.is
-  svd.se
-  sverigesradio.se
-  svtplay.se
-  tv3play.ee
-  tv3play.lt
-  tv3play.lv
-  tv4.se
-  tv4play.se
-  twitch.tv
-  ur.se
-  urplay.se
-  vg.no
-  viagame.com

## License

This project is licensed under [The MIT License (MIT)](LICENSE)
Homepage: [svtplay-dl.se](https://svtplay-dl.se/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://svtplay-dl.se",
    "name": "svtplay-dl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Johan Andersson",
    "author_email": "j@i19.se",
    "download_url": "https://files.pythonhosted.org/packages/8d/51/3f79faba154f687d1af9c6804b3b836815722cba37df88b0f42c3fcb4282/svtplay-dl-4.71.tar.gz",
    "platform": null,
    "description": "# svtplay-dl\n[![Build Status Actions](https://img.shields.io/github/actions/workflow/status/spaam/svtplay-dl/tests.yaml?label=Build%20status%20action)](https://github.com/spaam/svtplay-dl/actions) [![Discord](https://img.shields.io/static/v1?label=chat&message=discord&color=green&style=flat&logo=discord)](https://discord.gg/S2YK6Jtb3P)\n\n## Installation\n\n### MacOS\n\nIf you have [Homebrew](https://brew.sh/) on your machine you can install by running:\n\n```\n    brew install svtplay-dl\n```\nYou will need to run `brew install ffmpeg` afterwards, if you don't already have one of these packages.\n\n### Debian and Ubuntu\n\nsvtplay-dl is available in Debian strech and later and on Ubuntu 16.04 and later, which means you can install it straight away using apt. The version in their repo is often old and thus we **strongly** recommend using our own apt repo, which always include the latest version. The svtplay-dl repo for Debian / Ubuntu can be found at [apt.svtplay-dl.se](https://apt.svtplay-dl.se/).\n\n##### Add the release PGP keys:\n```\n    curl -s https://svtplay-dl.se/release-key.txt | sudo apt-key add -\n```\n\n##### Add the \"release\" channel to your APT sources:\n```\n    echo \"deb https://apt.svtplay-dl.se/ svtplay-dl release\" | sudo tee /etc/apt/sources.list.d/svtplay-dl.list\n```\n\n##### Update and install svtplay-dl:\n```\n    sudo apt-get update\n\n    sudo apt-get install svtplay-dl\n```\n\n### Solus\n\nsvtplay-dl is avaliable in the [Solus](https://getsol.us.com/) repository and can be installed by simply running:\n\n```\nsudo eopkg it svtplay-dl\n```\n\n### Windows\n\nYou can download the Windows binaries from [svtplay-dl.se](https://svtplay-dl.se/)\n\nIf you want to build your own Windows binaries:\n\n1. Install [cx_freeze](https://anthony-tuininga.github.io/cx_Freeze/)\n3. Follow the steps listed under [From source](#from-source)\n4. cd path\\to\\svtplay-dl && mkdir build\n5. `pip install -e .`\n6. `python setversion.py`  # this will change the version string to a more useful one\n7. `python %PYTHON%\\\\Scripts\\\\cxfreeze --include-modules=cffi,queue,idna.idnadata --target-dir=build bin/svtplay-dl`\n8. Find binary in build folder. you need `svtplay-dl.exe` and `pythonXX.dll` from that folder to run `svtplay-dl.exe`\n\n### Other systems with python\n\n```\n    pip3 install svtplay-dl\n```\n\n### Any UNIX (Linux, BSD, macOS, etc.)\n\n##### Download with curl\n```\nsudo curl -L https://svtplay-dl.se/download/latest/svtplay-dl -o /usr/local/bin/svtplay-dl\n```\n\n##### Make it executable\n```\nsudo chmod a+rx /usr/local/bin/svtplay-dl\n```\n\n### From source\n\nIf packaging isn\u2019t available for your operating system, or you want to\nuse a non-released version, you\u2019ll want to install from source. Use git\nto download the sources:\n\n```\n    git clone https://github.com/spaam/svtplay-dl\n```\n\nsvtplay-dl requires the following additional tools and libraries. They\nare usually available from your distribution\u2019s package repositories. If\nyou don\u2019t have them, some features will not be working.\n\n-  [Python](https://www.python.org) 3.6 or higher\n-  [cryptography](https://cryptography.io/en/latest) to download encrypted HLS streams\n-  [PyYaml](https://github.com/yaml/pyyaml) for configure file\n-  [Requests](https://2.python-requests.org)\n-  [PySocks](https://github.com/Anorov/PySocks) to enable proxy support\n-  [ffmpeg](https://ffmpeg.org) for postprocessing and/or for DASH streams ([ffmpeg](https://ffmpeg.zeranoe.com) for Windows)\n\n##### To install it, run:\n\n```\n    sudo python3 setup.py install\n```\n\n## After install\n\n```\n    svtplay-dl [options] URL\n```\n\nIf you encounter any bugs or problems, don\u2019t hesitate to open an issue [on github](https://github.com/spaam/svtplay-dl/issues).\nOr why not join the ``#svtplay-dl`` IRC channel on Freenode?\n\n## Supported services\n\nThis script works for:\n\n-  aftonbladet.se\n-  bambuser.com\n-  comedycentral.se\n-  di.se\n-  dn.se\n-  dplay.se\n-  dr.dk\n-  efn.se\n-  expressen.se\n-  hbo.com\n-  kanal9play.se\n-  nickelodeon.nl\n-  nickelodeon.no\n-  nickelodeon.se\n-  nrk.no\n-  oppetarkiv.se\n-  pluto.tv (former viafree.se, viafree.dk, viafree.no)\n-  ruv.is\n-  svd.se\n-  sverigesradio.se\n-  svtplay.se\n-  tv3play.ee\n-  tv3play.lt\n-  tv3play.lv\n-  tv4.se\n-  tv4play.se\n-  twitch.tv\n-  ur.se\n-  urplay.se\n-  vg.no\n-  viagame.com\n\n## License\n\nThis project is licensed under [The MIT License (MIT)](LICENSE)\nHomepage: [svtplay-dl.se](https://svtplay-dl.se/)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Command-line program to download videos from various video on demand sites",
    "version": "4.71",
    "project_urls": {
        "Homepage": "https://svtplay-dl.se"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d513f79faba154f687d1af9c6804b3b836815722cba37df88b0f42c3fcb4282",
                "md5": "8b2a8c30224d2ea8af0af22405178d7e",
                "sha256": "44bad803675eef8f6d258f6e8510219ba99ba98967d3f7e23ed48bf081606963"
            },
            "downloads": -1,
            "filename": "svtplay-dl-4.71.tar.gz",
            "has_sig": false,
            "md5_digest": "8b2a8c30224d2ea8af0af22405178d7e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 90306,
            "upload_time": "2024-04-11T21:03:31",
            "upload_time_iso_8601": "2024-04-11T21:03:31.946560Z",
            "url": "https://files.pythonhosted.org/packages/8d/51/3f79faba154f687d1af9c6804b3b836815722cba37df88b0f42c3fcb4282/svtplay-dl-4.71.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 21:03:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "svtplay-dl"
}
        
Elapsed time: 0.24566s