mirror of
https://github.com/YuzuZensai/spleeter.git
synced 2026-01-31 14:58:23 +00:00
Merge branch 'master' into fix-ffmpeg
This commit is contained in:
40
.circleci/config.yml
Normal file
40
.circleci/config.yml
Normal 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
1
.github/CODEOWNERS
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
* @deezer @Faylixe @romi1502 @mmoussallam @alreadytaikeune
|
||||||
8
.github/ISSUE_TEMPLATE/discussion.md
vendored
Normal file
8
.github/ISSUE_TEMPLATE/discussion.md
vendored
Normal 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. -->
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<img src="https://github.com/deezer/spleeter/raw/master/images/spleeter_logo.png" height="80" />
|
<img src="https://github.com/deezer/spleeter/raw/master/images/spleeter_logo.png" height="80" />
|
||||||
|
|
||||||
[](https://badge.fury.io/py/spleeter)   [](https://colab.research.google.com/github/deezer/spleeter/blob/master/spleeter.ipynb)
|
[](https://circleci.com/gh/deezer/spleeter/tree/master) [](https://badge.fury.io/py/spleeter)   [](https://colab.research.google.com/github/deezer/spleeter/blob/master/spleeter.ipynb)
|
||||||
|
|
||||||
## About
|
## 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)
|
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
|
## Reference
|
||||||
|
|
||||||
- [Deezer Research - Source Separation Engine Story - deezer.io blog post](https://deezer.io/releasing-spleeter-deezer-r-d-source-separation-engine-2b88985e797e)
|
- [Deezer Research - Source Separation Engine Story - deezer.io blog post](https://deezer.io/releasing-spleeter-deezer-r-d-source-separation-engine-2b88985e797e)
|
||||||
|
|||||||
Reference in New Issue
Block a user