博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 压缩视频传输
阅读量:2048 次
发布时间:2019-04-28

本文共 10107 字,大约阅读时间需要 33 分钟。

Android 压缩视频传输

Server

package com.example.administrator.compress;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.Matrix;import android.graphics.PixelFormat;import android.hardware.Camera;import android.os.Bundle;import android.view.SurfaceHolder;import android.view.SurfaceView;import android.view.View;import android.widget.Button;import android.widget.ImageView;import java.io.ByteArrayOutputStream;import java.io.DataOutputStream;import java.io.IOException;import java.net.ServerSocket;import java.net.Socket;import java.nio.ByteBuffer;public class MainActivity extends Activity{    private Camera mCamera = null;    private SurfaceHolder holder = null;    private Button button1,button2;    private int width = 640;    private int height = 480;    ServerSocket server = null;    Socket socket = null;    private static final int PORT = 5555;    DataOutputStream out = null;    private byte []rgb_data = new byte[width*height*4];    ByteArrayOutputStream baos = null;    Bitmap VideoBit = null;    private ByteBuffer byteBuffer = null;    ImageView imageView = null;    private int number = 0;    class Callback implements Camera.PreviewCallback    {        @Override        public void onPreviewFrame(byte[] frame, Camera camera)        {            decodeYUV420SP(rgb_data,frame,width,height);            VideoBit = Bitmap.createBitmap(width,height,Bitmap.Config.ARGB_8888);            byteBuffer = ByteBuffer.wrap(rgb_data);            byteBuffer.position(0);            VideoBit.copyPixelsFromBuffer(byteBuffer);            Matrix matrix = new Matrix();            matrix.postRotate(90);            baos = new ByteArrayOutputStream();            VideoBit.compress(Bitmap.CompressFormat.JPEG,50,baos);            byte []bytes = baos.toByteArray();        //    imageView.setImageBitmap(Bitmap.createBitmap(BitmapFactory.decodeByteArray(bytes,0,bytes.length),0,0,width,height,matrix,true));            try{                number = bytes.length;                out.writeInt(number);                out.flush();                out.write(bytes);                out.flush();            }catch (IOException e){                e.printStackTrace();            }        }    }    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        SurfaceView mSurfaceView = (SurfaceView) this.findViewById(R.id.camera_preview);        button1 = (Button) findViewById(R.id.b1);        button2 = (Button) findViewById(R.id.b2);        holder = mSurfaceView.getHolder();        imageView = (ImageView)findViewById(R.id.imageView);        new MyThread().start();        button1.setOnClickListener(new Button.OnClickListener(){            @Override            public void onClick(View v) {                if(mCamera == null)                {                    mCamera = Camera.open();                    Camera.Parameters p = mCamera.getParameters();                    p.setPreviewFormat(PixelFormat.YCbCr_420_SP);                    p.setPreviewSize(width,height);                    p.setPreviewFrameRate(15);    //设置帧率                    mCamera.setParameters(p);                    mCamera.setDisplayOrientation(90);                    try                    {                        mCamera.setPreviewDisplay(holder);                    }                    catch (IOException e)                    {                        e.printStackTrace();                    }                    mCamera.startPreview();                    Callback a = new Callback();                    mCamera.setPreviewCallback(a);                }            }        });        button2.setOnClickListener(new Button.OnClickListener(){            @Override            public void onClick(View v) {                finish();            }        });        holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);    }    @Override    public void finalize()    {        try        {            super.finalize();        }        catch (Throwable e)        {            e.printStackTrace();        }    }    public class MyThread extends Thread{        public void run(){            try{                server = new ServerSocket(PORT);                socket = server.accept();                out = new DataOutputStream(socket.getOutputStream());            }catch (IOException e){                e.printStackTrace();            }        }    }    static public void decodeYUV420SP(byte[] rgb, byte[] yuv420sp, int width, int height) {        final int frameSize = width * height;        for (int j = 0, yp = 0; j < height; j++) {            int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;            for (int i = 0; i < width; i++, yp++) {                int y = (0xff & ((int) yuv420sp[yp])) - 16;                if (y < 0) y = 0;                if ((i & 1) == 0) {                    v = (0xff & yuv420sp[uvp++]) - 128;                    u = (0xff & yuv420sp[uvp++]) - 128;                }                int y1192 = 1192 * y;                int r = (y1192 + 1634 * v);                int g = (y1192 - 833 * v - 400 * u);                int b = (y1192 + 2066 * u);                if (r < 0) r = 0; else if (r > 262143) r = 262143;                if (g < 0) g = 0; else if (g > 262143) g = 262143;                if (b < 0) b = 0; else if (b > 262143) b = 262143;                rgb[yp*4] = (byte)(r >>10);                rgb[yp*4+1] = (byte)(g >>10);                rgb[yp*4+2] = (byte)(b >> 10);                rgb[yp*4+3] = (byte)255;            }        }    }}
Client

package com.example.ict.video_frame_client;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.Matrix;import android.os.Handler;import android.os.Message;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.Window;import android.view.WindowManager;import android.widget.ImageView;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.IOException;import java.net.Socket;import java.nio.ByteBuffer;public class MainActivity extends AppCompatActivity {    private static final String HOST = "192.168.43.1";    private static final int PORT = 5555;    private static final int REFRESH = 0x000001;    Socket socket = null;    DataOutputStream out = null;    DataInputStream in = null;    Handler mHandler = null;    private static final int width = 640;    private static final int height = 480;  //  int size = width*height*3/2;    int size  = 0; //   byte r_data[] = new byte[size];    byte r_data[] = null;    private byte rgb_data[] = new byte[width*height*4];    private Bitmap VideoBit = null;    private ByteBuffer byteBuffer = null;    ImageView imageView = null;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        requestWindowFeature(Window.FEATURE_NO_TITLE);   //设置窗口无标题显示        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);        setContentView(R.layout.activity_main);        imageView = (ImageView)findViewById(R.id.imageView);        new MyThread().start();        mHandler = new Handler(){            @Override            public void handleMessage(Message msg){                if(msg.what == REFRESH){                    Matrix matrix = new Matrix();                    matrix.postRotate(90);                    imageView.setImageBitmap(Bitmap.createBitmap(BitmapFactory.decodeByteArray(r_data,0,r_data.length),0,0,width,height,matrix,true));                  /*  decodeYUV420SP(rgb_data,r_data,width,height);                    VideoBit = Bitmap.createBitmap(width,height,Bitmap.Config.ARGB_8888);                    byteBuffer = ByteBuffer.wrap(rgb_data);                    byteBuffer.position(0);                    VideoBit.copyPixelsFromBuffer(byteBuffer);                    Matrix matrix = new Matrix();                    matrix.postRotate(90);                    imageView.setImageBitmap(Bitmap.createBitmap(VideoBit, 0, 0, width, height, matrix, true));*/                }            }        };    }    public class MyThread extends Thread{        public void run(){            try {                socket = new Socket(HOST,PORT);                in = new DataInputStream(socket.getInputStream());                out = new DataOutputStream(socket.getOutputStream());             //   out.writeBytes("Hello Server!");            }catch (IOException e){                e.printStackTrace();            }            while(!Thread.currentThread().isInterrupted()){                Message msg = new Message();                msg.what = REFRESH;                int len = 0;                try{                    size = in.readInt();                    r_data = new byte[size];                    while(len
> 1) * width, u = 0, v = 0; for (int i = 0; i < width; i++, yp++) { int y = (0xff & ((int) yuv420sp[yp])) - 16; if (y < 0) y = 0; if ((i & 1) == 0) { v = (0xff & yuv420sp[uvp++]) - 128; u = (0xff & yuv420sp[uvp++]) - 128; } int y1192 = 1192 * y; int r = (y1192 + 1634 * v); int g = (y1192 - 833 * v - 400 * u); int b = (y1192 + 2066 * u); if (r < 0) r = 0; else if (r > 262143) r = 262143; if (g < 0) g = 0; else if (g > 262143) g = 262143; if (b < 0) b = 0; else if (b > 262143) b = 262143; rgb[yp*4] = (byte)(r >>10); rgb[yp*4+1] = (byte)(g >>10); rgb[yp*4+2] = (byte)(b >> 10); rgb[yp*4+3] = (byte)255; } } }}

转载地址:http://ygqof.baihongyu.com/

你可能感兴趣的文章
【Python】sasa版:文件中csv读取在写入csv读取的数据和执行是否成功。
查看>>
【loadrunner】【scorm学习】demo/test域上进行scorm脚本录制及回放成功脚本备份
查看>>
【Loadrunner】使用LoadRunner上传及下载文件
查看>>
【Python】Python 打印和输出更多用法。
查看>>
【Loadrunner】使用LR录制HTTPS协议的三种方法
查看>>
【Python+Selenium】猪猪练习成功版:csv文件的输入和输出(运行环境:python3.5版本)...
查看>>
【python】BeautifulSoup的应用
查看>>
【Python】接口自动化测试-Fidder的使用(未完待续……)
查看>>
【Python】自动化测试框架-共通方法汇总
查看>>
【Python】if相关知识点
查看>>
【Python】xpath中为什么粘贴进去代码后老报错?如何在定位元素的时候准确找到定位切入点?...
查看>>
Loadrunner解决启动浏览器后页面显示空白
查看>>
【Python】唯品会购买商品
查看>>
【JMeter】如何录制创建及得到曲线图
查看>>
【Loadrunner】Error -26601: Decompression function 错误解决、27728报错解决方案
查看>>
【其他】csv文件打开是乱码,怎么办?
查看>>
【Python】web.py初识学习
查看>>
【Python】【Web.py】python调用html【问题:echart图标调用html上未显示】
查看>>
【雅思】金山词霸-单词学习(1-40)
查看>>
【F12】谷歌浏览器F12前端调试工具 Console
查看>>