├── .gitignore ├── LICENSE ├── README.md ├── frame.py ├── getf0.tcl ├── lpc.py ├── mgc.py ├── source.py └── vocoder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/README.md -------------------------------------------------------------------------------- /frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/frame.py -------------------------------------------------------------------------------- /getf0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/getf0.tcl -------------------------------------------------------------------------------- /lpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/lpc.py -------------------------------------------------------------------------------- /mgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/mgc.py -------------------------------------------------------------------------------- /source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/source.py -------------------------------------------------------------------------------- /vocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamidreza/pyvocoder/HEAD/vocoder.py --------------------------------------------------------------------------------