Merge branch 'master' into fix-ffmpeg

This commit is contained in:
Félix Voituret
2019-11-06 23:55:49 +01:00
4 changed files with 52 additions and 1 deletions

40
.circleci/config.yml Normal file
View File

@@ -0,0 +1,40 @@
version: 2
jobs:
test:
docker:
- image: python:3.7
working_directory: ~/spleeter
steps:
- checkout
- run:
name: install ffmpeg
command: apt-get update && apt-get install -y ffmpeg
- run:
name: install spleeter
command: pip install .
- run:
name: test separation
command: spleeter separate -i audio_example.mp3 -o .
upload:
docker:
- image: python:3
steps:
- checkout
- run:
name: package
command: python setup.py bdist
- run:
name: upload to PyPi
command: pip install twine && twine upload dist/*
workflows:
version: 2
test-and-deploy:
jobs:
- test
- upload:
filters:
branches:
only:
- master
requires:
- test

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
* @deezer @Faylixe @romi1502 @mmoussallam @alreadytaikeune

8
.github/ISSUE_TEMPLATE/discussion.md vendored Normal file
View File

@@ -0,0 +1,8 @@
---
name: Discussion
about: Ideas sharing or theorical question solving
labels: question
title: "[Discussion] your question"
---
<!-- Please respect the title [Discussion] tag. -->

View File

@@ -1,6 +1,6 @@
<img src="https://github.com/deezer/spleeter/raw/master/images/spleeter_logo.png" height="80" />
[![PyPI version](https://badge.fury.io/py/spleeter.svg)](https://badge.fury.io/py/spleeter) ![Conda](https://img.shields.io/conda/dn/conda-forge/spleeter) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spleeter) [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/deezer/spleeter/blob/master/spleeter.ipynb)
[![CircleCI](https://circleci.com/gh/deezer/spleeter/tree/master.svg?style=shield)](https://circleci.com/gh/deezer/spleeter/tree/master) [![PyPI version](https://badge.fury.io/py/spleeter.svg)](https://badge.fury.io/py/spleeter) ![Conda](https://img.shields.io/conda/dn/conda-forge/spleeter) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spleeter) [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/deezer/spleeter/blob/master/spleeter.ipynb)
## About
@@ -37,6 +37,8 @@ in the `output/audio_example` folder.
For a more detailed documentation, please check the [repository wiki](https://github.com/deezer/spleeter/wiki)
Want to try it out but don't want to install anything ? we've setup a [Google Colab](https://colab.research.google.com/github/deezer/spleeter/blob/master/spleeter.ipynb)
## Reference
- [Deezer Research - Source Separation Engine Story - deezer.io blog post](https://deezer.io/releasing-spleeter-deezer-r-d-source-separation-engine-2b88985e797e)