Some tools function
Project description
Guang
Scientific calculation of universal function library
Requirements
Python 3
CUDA >= 10.0
PyTorch >= 1.0
Tensorflow >= 1.12.0
opencv-python
pydub
librosa
pyworld
soundfile
pypinyin
pomegranate
python-Levenshtein
Installation
pip install guang
Nightly Build
pip install git+https://github.com/beidongjiedeguang/guang
Examples
-
Convert audio in .mp3/ .wav format to (sample rate=16k, single channel) .wav format
from guang.Voice.convert import cvt2wav cvt2wav(orig_path, target_path, sr=16000) # Multi-process from guang.Voice.convert import multi_cvt2wav multi_cvt2wav(PATH1, PATH2,sr=16000, n_cpu=None)
-
Use
dict_dotable
to convert a dictionary to dot-able dictionary:from guang.Utils.toolsFunc import dict_dotable a = {'a':{'b':1}} a = dict_dotable(a) print(a.a.b) >> 1
-
Use
probar
to display current progressfrom guang.Utils.toolsFunc import probar for idx, x in probar(range(10)): time.sleep(0.8) >> 100.00% 0'7.3"|0'7.3" Expect: 12-2 23:59:8
-
@broadcast
broadcast a non-broadcast function.from guang.Utils.toolsFunc import broadcast @broadcast def f(x): # A function that can map only a single element if x==1 or x==0: return x else: return f(x-1)+f(x-2) >> f([2,4,10]) >> array([1, 3, 832040], dtype=object)
-
txt2ph
Convert Chinese characters to phoneme.from guang.Voice.txt2pinyin import txt2ph txt2ph('你好,我是光') >> [('n', 'i3'), ('h', 'ao3'), ('sp1',), ('uo3',), ('sh', 'ii4'), ('g', 'uang1')]
-
reduce_from_duration
Remove files with duration less thanleast_time
seconds. Note that this function does not work in the interactive interpreter because it usesmultiprocessing.pool.Pool
from guang.Voice.reduce import reduce_from_duration reduced_list = reduce_from_duration(path_list, least_time=2) print(len(path_list), len(reduced_list)) >> (6889, 6714)
-
Find silence part of a sound file:
find_no_silence
from guang.Voice.reduce import find_no_silence start, end, arg_start, arg_end = find_no_silence(filename)
-
Download wechat files.
from guang.wechat.Utils.download import downloads downloads(nickName='caloi', fileType='mp3', d_t=60)
-
Plots 3D Scatter:
from guang.Utils.plotly import Scatter3d from guang.Utils.interesting import Lorenz trace = Lorenz.Trace() fig = Scatter3d() fig.scatter3d(trace[:,0], trace[:,1], trace[:,2], mode="lines+markers", color_line=z,color_marker=None,marker_size=2) fig.show()
-
:smiley:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for guang-0.0.7.7.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b4f31dfed28cbdc741c2e35aefaed0e019836103b728790089ec4556d1c0943 |
|
MD5 | a0ddd84b9cb2220e4d972a89ee2817d4 |
|
BLAKE2b-256 | 8ba8228ceaf99c568fe56025423c576b6f9c2aa8055fc05ad349586112963a16 |