我正在创建一个应用程序来录制视频并将其上传到 YouTube 和其他社交网站。
对于上传,我使用 Droid 共享功能,效果很好。
在电子邮件、Facebook、Skype 等中上传完美,但当我选择 YouTube 时,它不会上传我的视频。
这是我用于视频共享的代码。
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"SUBJECT_NAME");
sharingIntent.setType("video/*");
File newFile = new File(video_path);
sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM,Uri.fromFile(newFile));
startActivity(Intent.createChooser(sharingIntent,"Where you want to share?"));