Record video from VideoView

前端 未结 2 1343
生来不讨喜
生来不讨喜 2021-02-04 07:25

Currently doing project on live Streaming, and I succeed to play live video. Now my next task is to record the video which is playing in VideoView. I had searched, able to foun

2条回答
  •  猫巷女王i
    2021-02-04 07:46

    You can see this link. In short your server has to support downloading. If it does, you can try the following code:

    private final int TIMEOUT_CONNECTION = 5000; //5sec
    private final int TIMEOUT_SOCKET = 30000; //30sec
    private final int BUFFER_SIZE = 1024 * 5; // 5MB
    
    private final int TIMEOUT_CONNECTION = 5000; //5sec
    private final int TIMEOUT_SOCKET = 30000; //30sec
    private final int BUFFER_SIZE = 1024 * 5; // 5MB
    
    try {
      URL url = new URL("http://....");
    
      //Open a connection to that URL.
      URLConnection ucon = url.openConnection();
      ucon.setReadTimeout(TIMEOUT_CONNECTION);
      ucon.setConnectTimeout(TIMEOUT_SOCKET);
    
      // Define InputStreams to read from the URLConnection.
      // uses 5KB download buffer
      InputStream is = ucon.getInputStream();
      BufferedInputStream in = new BufferedInputStream(is, BUFFER_SIZE);
      FileOutputStream out = new FileOutputStream(file);
      byte[] buff = new byte[BUFFER_SIZE];
    
      int len = 0;
      while ((len = in.read(buff)) != -1)
      {
          out.write(buff,0,len);
      }
    } catch (IOException ioe) {
      // Handle the error
    } finally {
      if(in != null) {
        try {
          in.close();
        } catch (Exception e) {
          // Nothing you can do
        }
      }
      if(out != null) {
        try {
          out.flush();
          out.close();
        } catch (Exception e) {
          // Nothing you can do
        }
      }
    }
    

    If the server doesn't support downloading, there is nothing you can do.

提交回复
热议问题