我有代码:
private MediaRecorder recorder;
String hostname = "192.168.1.125";
int port = 1935;
Socket socket;
ParcelFileDescriptor pfd;
public void start()
{
try {
socket = new Socket(InetAddress.getByName(hostname), port);
pfd = ParcelFileDescriptor.fromSocket(socket);
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
recorder.setOutputFile(pfd.getFileDescriptor());
// String filename = String.format("/sdcard/%d.mp4", System.currentTimeMillis());
//
// recorder.setOutputFile(filename);
try
{
recorder.prepare();
recorder.start();
}
catch (IllegalStateException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
服务器端:
import java.io.DataInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.ServerSocket;
import java.net.Socket;
public class Server {
public static void main(String[] args)
{
try
{
System.out.println("create sock");
ServerSocket svsock = new ServerSocket(1935);
System.out.println("accept");
Socket sock = svsock.accept();
System.out.println("buffer read");
FileOutputStream outFile = null;
String filename = String.format("%d.mp4", System.currentTimeMillis());
try {
outFile = new FileOutputStream(filename);
System.out.println(filename);
} catch (IOException e1) {
e1.printStackTrace();
}
InputStream is = new DataInputStream(sock.getInputStream());
byte[] byteBuffer = new byte[1024];
int allsize = 0;
while(sock.isConnected()) {
int size = is.read(byteBuffer);
if (size == -1){
break;
} else {
outFile.write(byteBuffer, 0, size);
}
allsize += size;
}
System.out.println("close size=" + allsize);
outFile.close();
sock.close();
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println("endmain");
}
}
我在Android 2.2.2(HTC quiet brilliant)上测试它,一切正常。当我按“开始”按钮时,服务器创建文件并将数据从流记录到文件。此文件通常在VLC播放器等播放后
但是当我在Android 4.0.4(Galaxy S2)上测试它时,服务器创建文件并将数据从流传输到文件但不能在VLC(以及其他玩家)中播放并给我错误
mp4错误:MP4插件被丢弃(没有moov,foov,moof box) avcodec错误:无法打开 codecdomux错误:指定的事件对象句柄无效 ps错误:无法偷看 主要错误:没有合适的demux模块用于`file /:/// C:/1345461283455.mp4'
我也尝试将此文件上传到youtube,但上传后youtube会给我一些错误,例如文件格式不受支持。
但Android 4.0.4(Galaxy S2)成功创建然后播放文件,当我将其保存在手机内存上(不是流到服务器)
我认为问题可能在服务器端,或者在android 4.0.4上发生了一些变化。
请帮帮我。 提前谢谢。
答案 0 :(得分:0)
试试这个
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setOutputFile(pfd.getFileDescriptor());
我认为应该解决这个问题。试一试,看看它是否有帮助......