无法上传超过10秒的视频文件 - 无法对未保存的ParseFile进行编码

时间:2017-08-10 04:42:17

标签: java android xml parse-platform

Parse Server Android SDK有一个奇怪的问题,如果我用我的设备录制短于10秒的视频并将其上传到我的Parse数据库,它可以正常工作。 超过10秒的视频文件给出了以下错误消息:

java.lang.IllegalStateException:无法编码未保存的ParseFile

这是我的代码:

 // Create ParseObject
          final ParseObject vObj = new ParseObject(Configs.VIDEOS_CLASS_NAME);

          pd.setMessage("Please wait until your video is uploading...");
          pd.show();

          vObj.put(Configs.VIDEOS_TITLE, titleTxt.getText().toString());
          vObj.put(Configs.VIDEOS_IS_REPORTED, false);
          vObj.put(Configs.VIDEOS_COLOR, colorNr);
          vObj.put(Configs.VIDEOS_VIEWS, 0);
          vObj.put(Configs.VIDEOS_USER_POINTER, ParseUser.getCurrentUser());
          vObj.put(Configs.VIDEOS_CATEGORY, selectedCategory);

          // Saving block
          vObj.saveInBackground(new SaveCallback() {
              @Override
              public void done(ParseException e) {
                  if (e == null) {
                      Log.i("log-", "DATA SAVED! - SAVING THUMBNAIL...");

                      // Get video thumbnail Bitmap and save it
                      try { thumbnailBm = BitmapFactory.decodeStream(SubmitVideo.this.openFileInput("imagePassed"));
                          Log.i("log-", "THUMBNAIL BITMAP: " + thumbnailBm);

                          // Save video thumbnail
                          ByteArrayOutputStream st = new ByteArrayOutputStream();
                          thumbnailBm.compress(Bitmap.CompressFormat.JPEG, 50, st);
                          byte[] byteArr = st.toByteArray();
                          ParseFile thumbFile = new ParseFile("thumb.jpg", byteArr);
                          vObj.put(Configs.VIDEOS_THUMBNAIL, thumbFile);

                          vObj.saveInBackground(new SaveCallback() {
                              @Override
                              public void done(ParseException e) {
                                  if(e == null) {
                                      Log.i("log-", "THUMBNAIL SAVED! - SAVING VIDEO...");

                                      // Save video
                                      if (videoURI != null) {
                                          ParseFile videoFile = new ParseFile("video.mp4", convertVideoToBytes(videoURI));
                                          vObj.put(Configs.VIDEOS_VIDEO, videoFile);
                                          Log.i("log-", "VIDEO URI TO SUBMIT: " + videoURI);

                                          vObj.saveInBackground(new SaveCallback() {
                                              @Override
                                              public void done(ParseException e) {
                                                  if (e == null) {
                                                      pd.dismiss();
                                                      Log.i("log-", "SUCCESS! ");

                                                  // error on saving
                                                  } else {
                                                      Configs.simpleAlert(e.getMessage(), SubmitVideo.this);
                                                      pd.dismiss();
                                          }}});
                                      }


                                  // error on saving
                                  } else {
                                      Configs.simpleAlert(e.getMessage(), SubmitVideo.this);
                                      pd.dismiss();
                          }}});

                      } catch (FileNotFoundException err) { err.printStackTrace(); }


                  // error on saving
                  } else {
                      Configs.simpleAlert(e.getMessage(), SubmitVideo.this);
                      pd.dismiss();
          }}});

有谁知道为什么会这样? 谢谢!

2 个答案:

答案 0 :(得分:2)

视频可能太大而无法一次上传。 您应该使用多部分..我在上传高分辨率图像时遇到同样的问题.. Uploading High res images in android 修改此视频代码

答案 1 :(得分:1)

var api = new ParseServer({
...
    maxUploadSize: "300mb"
...});

可能您需要更改nginx / apache配置以允许它。

over nginx:client_max_body_size 300M;