6

私はいくつかのmp3ファイルをストリーミングしたい場所で作業しているDjangoのプロジェクトを持っています。

私はこれと同じ問題を抱えています: djangoでmp3ファイルをストリーミングし、<audio>を使用してページから読み取ります

説明させてください: Django を使用して ogg をストリーミング<audio>し、HTML ページにタグを付けたい

のような URL があります。私の曲の ID はdomain.tld/song/show/X/どこですか。XVLC で (ファイル パスを直接使用して) ストリーミングできます。また、テスト中にストリーミングすることもできます (受け取ったものを書き込み、VLC で読み取ります)。

しかし、ブラウザを開いてホームページをロードdomain.tldし、 <\audio\>url で balise するとdomain.tld/song/show/1/、クライアントが接続を閉じたかのように、大きな壊れたパイプが表示されます。

サーバーを本番環境に置いたときにいくつかの問題が解決されたという他の投稿を読みました。だから私は自分のアプリをサーバーにプッシュし、django.wgsidjangoproject.com などで apache を使用します。

Djangoバージョン1.5を搭載したDebian 7でpython 2.7.3を実行しています。そこに私のコード:

歌/views.py

def playAudioFile(request, pk):
    f = get_stream_song(pk)# return a pipe from pipes.Template
    l = f.read() # the file is an ogg get by pydub.com
    f.close()
    size_read = 550000
    sr = size_read
    while sr == size_read:
        print "rep"
        r = l[:size_read]
        l=l[size_read:]
        sr = len(r)
        yield r
    time.sleep(0.1) 

#url : ~/song/show/X/
#@login_required
def show_song(request, pk):
        return StreamingHttpResponse(playAudioFile(request, pk), mimetype='audio/ogg',)

私のHTMLには、次のようなものがあります。

 <audio controls height="100" width="100" preload="auto">
    <source src="/.../song/show/1/" type="audio/ogg">
    <embed height="50" width="100" src="/.../song/show/1/">
  </audio>

エラーは次のようになります。

Traceback (most recent call last):
  File "/usr/lib/python2.7/wsgiref/handlers.py", line 86, in run
    self.finish_response()
  File "/usr/lib/python2.7/wsgiref/handlers.py", line 127, in finish_response
    self.write(data)
  File "/usr/lib/python2.7/wsgiref/handlers.py", line 215, in write
    self._write(data)
  File "/usr/lib/python2.7/socket.py", line 324, in write
    self.flush()
  File "/usr/lib/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 104] Connection reset by peer
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 46392)
Traceback (most recent call last):
  File "/usr/lib/python2.7/SocketServer.py", line 593, in process_request_thread
    self.finish_request(request, client_address)
  File "/usr/lib/python2.7/SocketServer.py", line 334, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/home/lumy/SPhoque/SonoPhoque/SoPhoque/local/lib/python2.7/site-packages/django/core/servers/basehttp.py", line 150, in __init__
    super(WSGIRequestHandler, self).__init__(*args, **kwargs)
  File "/usr/lib/python2.7/SocketServer.py", line 651, in __init__
    self.finish()
  File "/usr/lib/python2.7/SocketServer.py", line 704, in finish
    self.wfile.flush()
  File "/usr/lib/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe

ストリーミングしようとするたびに、これを2回取得しました。


編集 15h 29/05:

私はラーハンが提案したことをしました: Firebug と Firefox デバッガーを見る:

クライアントは次のことを行います。

GET 1   200 OK localhost:8000 537.1KB 4.71s

Headers
Response Headersview source
Date    Wed, 29 May 2013 13:08:54 GMT
Server  WSGIServer/0.1 Python/2.7.3
Content-Type    audio/ogg
Request Headersview source
Host    localhost:8000
User-Agent  Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20100101 Firefox/10.0.12 Iceweasel/10.0.12
Accept  audio/webm,audio/ogg,audio/wav,audio/*;q=0.9,application/ogg;q=0.7,video/*;q=0.6,*/*;q=0.5
Accept-Language en-us,en;q=0.5
Connection  keep-alive
Range   bytes=0-
Referer http://localhost:8000/

詳細を見ると、すべてのドキュメントの合計サイズは 1 MB (キャッシュから 526 KB) です。

4

1 に答える 1