Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #99727
| Path | csiph.com!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Heber Futuri <hb.heber@gmail.com> |
| Newsgroups | comp.lang.python |
| Subject | it's posible? raw audio encoder to vorbis |
| Date | Thu, 26 Nov 2015 15:16:54 -0500 |
| Lines | 13 |
| Message-ID | <mailman.25.1448872497.14615.python-list@python.org> (permalink) |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=UTF-8 |
| X-Trace | news.uni-berlin.de NbW36DNq3kxsvhFN8NiJ7AV0EwFlc7I7K0uO5kFbCQ9A== |
| Return-Path | <hb.heber@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.023 |
| X-Spam-Evidence | '*H*': 0.95; '*S*': 0.00; 'encoder': 0.07; 'encode': 0.09; 'sfxlen:2': 0.10; 'def': 0.13; 'server,': 0.15; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:audio': 0.16; 'subject:raw': 0.16; 'to:2**1': 0.21; 'sends': 0.22; 'import': 0.24; 'to:addr:python-help': 0.24; 'raw': 0.27; 'to:no real name:2**1': 0.27; 'message-id:@mail.gmail.com': 0.27; 'help!': 0.30; 'skip:d 20': 0.34; 'server': 0.34; 'received:google.com': 0.35; 'received:209.85': 0.36; 'to:addr :python-list': 0.36; 'skip:& 10': 0.37; 'client': 0.37; 'skip:s 50': 0.37; 'received:209': 0.38; 'receipt': 0.38; 'skip:s 40': 0.38; 'data': 0.39; 'received:209.85.214': 0.39; 'to:addr:python.org': 0.40; 'called': 0.40; 'save': 0.60; 'received:209.85.214.181': 0.84; 'received:mail- ob0-f181.google.com': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=4Acdydn71AIcKiTVC6QFsl7oyyyYUtqlr7cE0EhmqRY=; b=j9fhB0OeZOxmsbsUvUt+Nmm8C/CJRnUqjy+VSPJuF2hDaKvF7n6XNNV6jO57L7KlG2 fO6pOF5sPpgr9Piycj6AwIeBRa5Mb2caYDjrKqcJ+2onxed1eUXSbkBhvtfjjvOJIzFQ 3zGmQI7lHe8BWZIun8GwJgpD7UjxVKs4jVBIKRnZiPcJAjr5nrAEtUrp/Gw6JUPdxk1S 5JJBu2e6+6jREj76KL0rSqDKr3aLAIn/N2JyunrE9Upv6zCzKn0aaSKTCYzOG5xGIfuq WIsIoIVoT32Q8nxHGtOtUQHOuFaJrQzVZyoV7wJIBWfFOr/PBapQBJUmKkFXwBUKSJuY 1zJA== |
| X-Received | by 10.182.166.1 with SMTP id zc1mr32358317obb.23.1448569014631; Thu, 26 Nov 2015 12:16:54 -0800 (PST) |
| X-Mailman-Approved-At | Mon, 30 Nov 2015 03:34:56 -0500 |
| X-Content-Filtered-By | Mailman/MimeDel 2.1.20+ |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Xref | csiph.com comp.lang.python:99727 |
Show key headers only | View raw
Receipt from websocket server audio raw and I want to encode ogg
help! :(
from websocket_server import WebsocketServer
# Called when a client sends a messagedef data_received(client, server, datos):
#HERE encoder "datos" to ogg and save data
PORT=9001
server = WebsocketServer(PORT)
server.set_fn_message_received(data_received)
server.run_forever()
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
it's posible? raw audio encoder to vorbis Heber Futuri <hb.heber@gmail.com> - 2015-11-26 15:16 -0500
csiph-web