프로그래밍/파이썬

파이썬 - 음원 MR / Vocal 분리 Spleeter

31weeks 2022. 11. 10. 19:24
728x90
반응형

 

 

 

Spleeter 설치

conda install -c conda-forge ffmpeg libsndfile

pip install spleeter

 

 

 

MR / Vocal 분리 명령어

spleeter separate -p spleeter:2stems -o output audio_example.mp3

  • Vocals (singing voice) / accompaniment separation (2 stems)
  • Vocals / drums / bass / other separation (4 stems)
  • Vocals / drums / bass / piano / other separation (5 stems)

 

- 원본 audio파일 : audio_example.mp3

- 원본 audio파일과 동일한 폴더에서 명령어 실행

- MR/Vocal 분리파일 저장폴더 : output

 

 

 

출처 : https://github.com/deezer/spleeter

 

GitHub - deezer/spleeter: Deezer source separation library including pretrained models.

Deezer source separation library including pretrained models. - GitHub - deezer/spleeter: Deezer source separation library including pretrained models.

github.com

 

728x90
반응형

'프로그래밍 > 파이썬' 카테고리의 다른 글

파이썬 - 슬롯머신 게임  (0) 2023.03.15
파이썬 - 야구게임  (0) 2023.03.14
파이썬 - for 반복문 중복2  (0) 2022.06.16
파이썬 - for 반복문 중복1  (0) 2022.06.15
파이썬 - for 반복문  (0) 2022.06.14