2012-04-09 122 views
6

從這一點開始:http://www.mattakis.com/blog/kisg/20090708/broadcasting-video-with-android-without-writing-to-the-file-system 我試圖創建一個應用程序來保存從移動攝像機到遠程服務器的視頻流。我發現了幾個在谷歌Android代碼部分的例子:ipcamera-for-android,spydroid-ipcamera等等。)從Android設備到LAMP服務器的視頻流

我在這裏和網絡上看到了一些答案,但是找不到解決方案, 「讀取」並在服務器端保存數據流。我的Java知識很差,所以我寧願能夠在PHP中創建服務器端腳本(使用服務器套接字或其他東西)。有人可以幫助這部分?

使用IPCAMERA換Android和其nanohttp服務器使用服務器上使用我的工具,如mplayer的/ ffmpeg的mencorer我能夠保存視頻流千丈...例如UPDATE

方:

ffmpeg-i "http://{ip of android phone}:8080/live.flv" /my/server/path/stream.flv 

但是,只能在局域網, 使用我需要移動連接的服務器,而不是反之亦然。

更新2

使用服務器端的這個腳本

#!/usr/bin/php5 
<?php 
$handle = fopen("stream.3gp","w"); 
$socket = stream_socket_server("tcp://192.168.0.102:9000", $errno, $errstr); 
if ($socket) 
{ 
echo "start listening\n"; 
while ($conn = stream_socket_accept($socket, 180)) 
    { 
    echo "phone connected\n"; 
    while ($chunk = stream_socket_recvfrom($conn, 1500)) 
    { 
     fwrite($handle,$chunk); 
    } 
    } 
} 

    fclose($handle); 
    fclose($socket); 
?> 

然而,3GP文件還沒有可玩

一些進展..

更新3

#!/usr/bin/php5 
<?php 


$socket = stream_socket_server("tcp://192.168.0.102:9000", $errno, $errstr); 
$file = "saved.3gp"; 
$threegp_header = "\x00\x00\x00\x18\x66\x74\x79\x70\x33\x67\x70\x34\x00\x00\x03\x00\x33\x67\x70\x34\x33\x67\x70\x36"; 
$four_bytes = "\x00\x00\x00\x00"; 

if (!$socket) { 

    echo "$errstr ($errno)\n"; 

} else { 

    echo "server start listening\n"; 

    while ($conn = @stream_socket_accept($socket, 180)) 
    { 
     echo "phone connected\n"; 

    $handle = fopen($file,"w"); 

    //mediaRecorder gives invalid stream header, so I replace it discarding first 32 byte, replacing with 28 good byte (standard 3gp header plus 4 empty bytes) 
    $discard = stream_get_contents($conn, 32); 
    fwrite($handle, $threegp_header); 
    fwrite($handle, $four_bytes); 

    //then confinue to write stream on file until phone stop streaming 
     while(!feof($conn)) 
     { 
     fwrite($handle, stream_get_contents($conn, 1500)); 
     } 
    echo "phone disconnected\n"; 
    fclose($handle); 

    //then i had to update 3gp header (bytes 25 to 28) with the offset where moov atom starts 
    $handle = fopen($file,"c"); 
    $output = shell_exec('grep -aobE "moov" '.$file); 
    $moov_pos = preg_replace('/moov:(\d+)/i', '\\1', $output); 
    $moov_pos_ex = strtoupper(str_pad(dechex($moov_pos - 24), 8, "0", STR_PAD_LEFT)); 
    fwrite($handle, $threegp_header); 
    $tmp = ''; 
     foreach(str_split($moov_pos_ex,2) as $hex) 
     { 
       $tmp .= pack('C*', hexdec($hex)); 
     } 
    fwrite($handle, $tmp); 
    fclose($handle); 


    } 
    echo "phone disconnected\n"; 


} 
    @fclose($handle); 
    fclose($socket); 
?> 

經過一些實驗,這次vlc/mplayer似乎可以播放它..仍然有一些音頻問題(但我認爲我在Android端有問題)

+1

隨着更新的信息,我的答案不是很有幫助。 ffmpeg/mplayer解決方案似乎最好。我會建議,局域網問題的一個可能的解決方案是建立VPN或SSH隧道...瞭解這是一次性的事情/只爲你。 – TryTryAgain 2012-04-09 12:29:43

+0

無論如何,我希望能夠在服務器端找到使用出站連接和stream_socket_server的解決方案 – 2012-04-09 22:36:06

回答

0

根據接收到的數據流(協議等),你已經結束了還是要最終使用:

我不知道你願意用什麼/上安裝LAMP,或者是什麼你更喜歡,但我知道VLC可以輕鬆捕獲傳入的流。

http://wiki.videolan.org/Documentation:Streaming_HowTo/Receive_and_Save_a_Stream

當然,命令行唯一的版本VLC的可能是你想要的東西。我從來沒有這樣做,不知道這是如何工作的,我希望它不會安裝一噸額外的軟件包。 T his is something to look at可能涉及的問題。

相關問題