Skip to main content

Pyrogram support module for Telegram VoIP Library for Python

Project description

pytgvoip_pyrogram

PyPI

Sample usage of PytgVoIP library with Pyrogram

# making outgoing calls
from pyrogram import Client
from tgvoip_pyrogram import VoIPFileStreamService

app = Client('account')
app.start()

service = VoIPFileStreamService(app, receive_calls=False)
call = service.start_call('@bakatrouble')
call.play('input.raw')
call.play_on_hold(['input.raw'])
call.set_output_file('output.raw')

@call.on_call_ended
def call_ended(call):
    app.stop()
# accepting incoming calls
from pyrogram import Client
from tgvoip_pyrogram import VoIPFileStreamService, VoIPIncomingFileStreamCall

app = Client('account')
app.start()

service = VoIPFileStreamService(app)

@service.on_incoming_call
def handle_call(call: VoIPIncomingFileStreamCall):
    call.accept()
    call.play('input.raw')
    call.play_on_hold(['input.raw'])
    call.set_output_file('output.raw')
    
    # you can use `call.on_call_ended(lambda _: app.stop())` here instead
    @call.on_call_ended
    def call_ended(call):
        app.stop()

More examples

Requirements

  • Python 3.5 or higher
  • PytgVoIP (listed as dependency)
  • Pyrogram (listed as dependency)

Installing

pip3 install pytgvoip-pyrogram

Encoding audio streams

Streams consumed by libtgvoip should be encoded in 16-bit signed PCM audio.

$ ffmpeg -i input.mp3 -f s16le -ac 1 -ar 48000 -acodec pcm_s16le input.raw  # encode
$ ffmpeg -f s16le -ac 1 -ar 48000 -acodec pcm_s16le -i output.raw output.mp3  # decode

❤️ Donate

If this project helps you, consider buying me a coffee:
PayPal.

..and yes... 😊 the paypal account is correct. Thank you so much!


📜 License

MIT

Download files

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

Source Distribution

stefano_pytgvoip_pyrogram-0.1.0.tar.gz (21.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

stefano_pytgvoip_pyrogram-0.1.0-py3-none-any.whl (28.9 kB view details)

Uploaded Python 3

File details

Details for the file stefano_pytgvoip_pyrogram-0.1.0.tar.gz.

File metadata

File hashes

Hashes for stefano_pytgvoip_pyrogram-0.1.0.tar.gz
Algorithm Hash digest
SHA256 aab9d4247408560a02928708f5465ade43fefa5134a975d75d95b08c40ce9b44
MD5 fa7f1340caef2b98ad11bc49a782683f
BLAKE2b-256 63d919eceec3bc37e8a227407b8ac1e069d97fb4ffa5f388609c14ecdde49aaf

See more details on using hashes here.

File details

Details for the file stefano_pytgvoip_pyrogram-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for stefano_pytgvoip_pyrogram-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7182772f0f824a50a08838cdcb5027a1f2ae0879d7bb0187c4ce3604c4107c59
MD5 48f0d687c1ef5a8fd1305b6109aa4e92
BLAKE2b-256 f1862fa7c97e67fee9f3c31095d7c0e6e2b990f3aec899ad17db9637b22322ba

See more details on using hashes here.

Supported by

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