Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schollz/playlistfromsong
Create an offline music playlist from a single song :notes:
https://github.com/schollz/playlistfromsong
music music-discovery playlist server songs
Last synced: 1 day ago
JSON representation
Create an offline music playlist from a single song :notes:
- Host: GitHub
- URL: https://github.com/schollz/playlistfromsong
- Owner: schollz
- License: mit
- Created: 2017-03-04T04:49:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:26:44.000Z (about 2 years ago)
- Last Synced: 2025-01-15T20:17:15.441Z (8 days ago)
- Topics: music, music-discovery, playlist, server, songs
- Language: Python
- Homepage: https://playlistfromsong.readthedocs.io/
- Size: 148 KB
- Stars: 139
- Watchers: 5
- Forks: 10
- Open Issues: 17
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
================
playlistfromsong
================.. image:: https://img.shields.io/pypi/v/playlistfromsong.svg
:target: https://pypi.python.org/pypi/playlistfromsong.. image:: https://img.shields.io/travis/schollz/playlistfromsong.svg
:target: https://travis-ci.org/schollz/playlistfromsong.. image:: https://readthedocs.org/projects/playlistfromsong/badge/?version=latest
:target: https://playlistfromsong.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status.. image:: https://pyup.io/repos/github/schollz/playlistfromsong/shield.svg
:target: https://pyup.io/repos/github/schollz/playlistfromsong/
:alt: UpdatesGenerate an offline playlist from a single song.
Features
---------- Similar song matching using last.fm or Spotify
- Automatic downloading of songs
- Builtin music server for webhooksQuickstart
------------First install `ffmpeg`_:
::
sudo apt-get install ffmpeg (DEBIAN)
brew install ffmpeg (MAC).. _ffmpeg: https://ffmpeg.org/download.html
Install with ``pip``::
pip install playlistfromsongDownload a playlist of 5 songs similar to Miles Davis' *Blue In Green*::
playlistfromsong --song 'Miles Davis Blue In Green' --num 5 -f /path/to/save
.. image:: http://i.imgur.com/ldVHZcc.gif
:target: http://i.imgur.com/ldVHZcc.gif
:alt: Demo1Use a bearer token ``--bearer`` to use Spotify to find suggestions::
playlistfromsong --song 'Miles Davis Blue In Green' --num 5 -f /path/to/save -b 'BEARER'
.. image:: http://i.imgur.com/uzEEEFh.gif
:target: http://i.imgur.com/uzEEEFh.gif
:alt: Demo1For more complete usage, see the docs.