Skip to main content

transform audio file to silk

Project description

Graiax-silkcoder

现在版本:pypi
这,是一个Python的silk转码器
通过将kn007/silk-v3-decoder通过简单的封装制成

安装

pip install graiax-silkcoder
# 如果需要转换非wav的音频文件,则需要ffmpeg/anconv
# 如何安装ffmpeg/anconv请自行百度

使用方法

from pathlib import Path
from graiax import silkcoder

#silk编码
#你可以文件→文件
await silkcoder.encode('a.wav', 'a.silk')
#你可以文件→二进制数据
silk: bytes=await silkcoder.encode('a.wav')
#你可以二进制数据→二进制数据
silk: bytes=await silkcoder.encode(Path('a.wav').read_bytes())
#你可以二进制数据→文件
await silkcoder.encode(Path('a.wav').read_bytes(), audio_format='wav', 'a.silk')
#你可以指定让ffmpeg解码音频,也可以让程序自己选择
#注:只有当音频是wav且ensure_ffmpeg=None时才会不使用ffmpeg处理
await silkcoder.encode('a.wav', 'a.silk')
await silkcoder.encode('a.wav', 'a.silk', ensure_ffmpeg=True)
#你也可以设置码率(默认状态下将会将尝试将目标语音大小限制在980kb上下)
await silkcoder.encode('a.wav', 'a.silk', rate=70000)
#你甚至可以剪辑音频
await silkcoder.encode('a.wav', 'a.silk', ss=10, t=5)#从第10s开始剪辑5s的音频

#silk解码
#你可以文件→文件
await silkcoder.decode('a.silk', 'a.wav')
#你可以文件→二进制数据
silk: bytes=await silkcoder.decode('a.silk')
#你可以二进制数据→二进制数据(必填audio_format)
silk: bytes=await silkcoder.decode(Path('a.silk').read_bytes(), audio_format='mp3')
#你可以二进制数据→文件
await silkcoder.encode(Path('a.silk').read_bytes(), 'a.wav')
#你可以指定让ffmpeg解码音频,也可以让程序自己选择
#注:只有当音频是wav且ensure_ffmpeg=None时才会不使用ffmpeg处理
await silkcoder.encode('a.wav', 'a.silk')
await silkcoder.encode('a.wav', 'a.silk', ensure_ffmpeg=True)
#你也可以设置码率(默认65000)
await silkcoder.encode('a.wav', 'a.silk', rate=70000)
#你甚至可以剪辑音频
await silkcoder.encode('a.wav', 'a.silk', ss=10, t=5)#从第10s开始剪辑5s的音频

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graiax-silkcoder-0.0.17.tar.gz (205.3 kB view details)

Uploaded Source

Built Distribution

graiax_silkcoder-0.0.17-cp39-cp39-win_amd64.whl (118.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

File details

Details for the file graiax-silkcoder-0.0.17.tar.gz.

File metadata

  • Download URL: graiax-silkcoder-0.0.17.tar.gz
  • Upload date:
  • Size: 205.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.6 Windows/10

File hashes

Hashes for graiax-silkcoder-0.0.17.tar.gz
Algorithm Hash digest
SHA256 d797d8fd7b803691dbbe676dca2d86d188a850e57e59f1a3b134f5ac82bbed27
MD5 b6a22ea2e6c57daef77d06c2960ef6e0
BLAKE2b-256 a880bc5081b735cd4077899855ec398538ca0b720f655ade3a5c43e1a0edd8cc

See more details on using hashes here.

File details

Details for the file graiax_silkcoder-0.0.17-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for graiax_silkcoder-0.0.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b829c20091a7262db395f0d286cc52ef032f47ebdb08439e373598389319ba8b
MD5 74534463c3ee78ff3df29f7c8e9d4e1f
BLAKE2b-256 dd6dcabdaea1c194ab6327da884ce36a588c470e9a24bb0b7f9b680d27bde4e8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page