视频切片上传

主要用于大视频的切片上传

主要实现步骤:

  • 声明变量
   private static int chunks = 0;//视频一共切了多少片
   private static int chunk = 0;//当前上传的是第几片
   private static int index = 1;//当前上传的是第几片
   public static int r = new Random().nextInt();//参数(根据实际情况添加)
  • 获取视频信息的工具类
public class FileAccessI implements Serializable {

    RandomAccessFile oSavedFile;
    long nPos;
    public FileAccessI() throws IOException {
        this("", 0);
    }

    public FileAccessI(String sName, long nPos) throws IOException {
        oSavedFile = new RandomAccessFile(sName, "rw");
        oSavedFile.seek(nPos);
    }

    public synchronized int write(byte[] b, int nStart, int nLen) {
        int n = -1;
        try {
            oSavedFile.write(b, nStart, nLen);
            n = nLen;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return n;
    }

    //获取文件长度
    public synchronized Detail getContent(long nStart) {
        Detail detail = new Detail();
        detail.b = new byte[1024*1024*5];
        try {
            oSavedFile.seek(nStart);
            detail.length = oSavedFile.read(detail.b);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return detail;
    }

    public class Detail {
        public byte[] b;
        public int length;
    }

    public long getFileLength() {
        Long length = 0l;
        try {
            length = oSavedFile.length();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return length;
    }
}
  • 视频切片
/**
 * 视频切片上传
 * */
public class BlockStreamBody extends AbstractContentBody {
    //给MultipartEntity看的2个参数
    private long blockSize = 0;//本次分块上传的大小
    private String fileName = null;//上传文件名
    //writeTo需要的3个参数
    private int chunks = 0, chunk = 0;//blockNumber分块数;blockIndex当前第几块
    private File targetFile = null;//要上传的文件

    private BlockStreamBody(String mimeType) {
        super(mimeType);
        // TODO Auto-generated constructor stub
    }

    /**
     * 自定义的ContentBody构造子
     * @param chunks 分块数
     * @param chunk 当前第几块
     * @param targetFile 要上传的文件
     */
    public BlockStreamBody(int chunks, int chunk, File targetFile) {
        this("application/octet-stream");
        this.chunks = chunks;//blockNumber初始化
        this.chunk = chunk;//blockIndex初始化
        this.targetFile = targetFile;//targetFile初始化
        this.fileName = targetFile.getName();//fileName初始化
        //blockSize初始化
        if (chunk < chunks) {//不是最后一块,那就是固定大小了
            this.blockSize = UploadGlobalConstant.CLOUD_API_LOGON_SIZE;
        } else {//最后一块
            this.blockSize = targetFile.length() - UploadGlobalConstant.CLOUD_API_LOGON_SIZE * (chunks - 1);
        }



    }

    @Override
    public void writeTo(OutputStream out) throws IOException {
        byte b[] = new byte[1024];//暂存容器
        RandomAccessFile raf  = new RandomAccessFile(targetFile, "r");//负责读取数据
        if (chunk == 1) {//第一块
            int n = 0;
            long readLength = 0;//记录已读字节数
            while (readLength <= blockSize - 1024) {//大部分字节在这里读取
                n = raf.read(b, 0, 1024);
                readLength += 1024;
                out.write(b, 0, n);
            }
            if (readLength <= blockSize) {//余下的不足 1024 个字节在这里读取
                n = raf.read(b, 0, (int)(blockSize - readLength));
                out.write(b, 0, n);
            }
        } else if (chunk < chunks) {//既不是第一块,也不是最后一块
            raf.seek(UploadGlobalConstant.CLOUD_API_LOGON_SIZE * (chunk - 1));//跳过前[块数*固定大小 ]个字节
            int n = 0;
            long readLength = 0;//记录已读字节数
            while (readLength <= blockSize - 1024) {//大部分字节在这里读取
                n = raf.read(b, 0, 1024);
                readLength += 1024;
                out.write(b, 0, n);
            }
            if (readLength <= blockSize) {//余下的不足 1024 个字节在这里读取
                n = raf.read(b, 0, (int)(blockSize - readLength));
                out.write(b, 0, n);
            }
        } else {//最后一块
            raf.seek(UploadGlobalConstant.CLOUD_API_LOGON_SIZE * (chunk - 1));//跳过前[块数*固定大小 ]个字节
            int n = 0;
            while ((n = raf.read(b, 0, 1024)) != -1) {
                out.write(b, 0, n);
            }
        }

        //TODO 最后不要忘掉关闭out/raf
    }

    @Override
    public String getCharset() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getTransferEncoding() {
        // TODO Auto-generated method stub
        return "binary";
    }

    @Override
    public String getFilename() {
        // TODO Auto-generated method stub
        return fileName;
    }

    @Override
    public long getContentLength() {
        // TODO Auto-generated method stub
        return blockSize;
    }

}
 public void cutFileUpload(final String url, final String video, final String type) {
        try {
            final File uploadFile = new File(video);
            if (!uploadFile.exists()) { //视频文件不存在
                if (null != upLoadFinishListener)
                    upLoadFinishListener.upLoadVideoError("视频文件不存在");
                return;
            }
            FileAccessI fileAccessI = new FileAccessI(video, 0);
            Long nStartPos = 0l;
            Long length = fileAccessI.getFileLength();

            int mBufferSize = 1024 * 1024 * 5; // 每次处理1024 * 100字节
            long dd = length / mBufferSize;
            chunks = Integer.valueOf(dd + "") + 1;
            FileAccessI.Detail detail;
            long nRead = 0l;
            vedioFileName = generatePicName(video); // 分配一个文件名
            long nStart = nStartPos;
            ExecutorService executorService = Executors.newFixedThreadPool(chunks);
            for (int i = 0; i < chunks; i++) {
                Runnable task = new Runnable() {
                    @Override
                    public void run() {
                        postVideo(url, video, type);
                    }
                };
                executorService.submit(task);
            }
            executorService.shutdown();
            while (true) {//视频所有子线程都已执行完-进行下一步操作
                if (executorService.isTerminated()) {
                
                    break;
                }
                Thread.sleep(1000);
            }

        } catch (Exception e) {
        }
    }

分配文件名:目前只做了mp4格式和3gp格式的上传

   public String generatePicName(String videoPath) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSS", Locale.CHINA);
        String filename = "";
        if (videoPath.contains("3gp"))
            filename = sdf.format(new Date(System.currentTimeMillis())) + ".3gp";
        else filename = sdf.format(new Date(System.currentTimeMillis())) + ".mp4";
        return filename;
    }
  • 上传视频
    public synchronized void postVideo(final String url, final String videoPath, String type) {
        HttpClient httpclient = null;
        try {
            // 链接超时,请求超时设置
            BasicHttpParams httpParams = new BasicHttpParams();
            HttpConnectionParams.setConnectionTimeout(httpParams, 10 * 1000);
            HttpConnectionParams.setSoTimeout(httpParams, 10 * 1000);
            // 请求参数设置
            httpclient = new DefaultHttpClient(httpParams);
            HttpPost post = new HttpPost(
                    url + "?type=" + type);
            MultipartEntity entity = new MultipartEntity();
            entity.addPart("rand",
                    new StringBody(r + "", Charset.forName("UTF-8")));
            entity.addPart("chunks", new StringBody(chunks + "", Charset.forName("UTF-8")));//总片数
            entity.addPart("chunk", new StringBody((chunk++) + "", Charset.forName("UTF-8")));//当前是第几片

            // 上传视频文件
            BlockStreamBody body = new BlockStreamBody(chunks, index++, new File(videoPath));
            entity.addPart("Filedata", body);
            post.setEntity(entity);
            HttpResponse resp = httpclient.execute(post);
            int statusCode = resp.getStatusLine().getStatusCode();
            if (statusCode == HttpStatus.SC_OK) {
                HttpEntity resEntity = resp.getEntity();
                String responces = EntityUtils.toString(resEntity);
                //上传的返回结果
                if (null != responces && !"".equals(responces)) {
                
                }
                EntityUtils.getContentCharSet(resEntity);
            } else {
            }

        } catch (ParseException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (OutOfMemoryError e) {

        } finally {
            try {
                httpclient.getConnectionManager().shutdown();
            } catch (Exception ignore) {
            }
        }
    }

  • 调用
   ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();
        Runnable task = new Runnable() {
            @Override
            public void run() {
                chunk = 0;
                index = 1;
                cutFileUpload(BaseUrl.videoUpUrl, videoPath, type);
            }
        };

        singleThreadExecutor.submit(task);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343