我正嘗試使用intent將視頻上傳到youtube。 的方式我有它設置描述here通過intent上傳到youtube
這裏的片段:
ContentValues content = new ContentValues(4);
content.put(Video.VideoColumns.TITLE, "My Test");
content.put(Video.VideoColumns.DATE_ADDED,
System.currentTimeMillis()/1000);
content.put(Video.Media.MIME_TYPE, "video/mp4");
content.put(MediaStore.Video.Media.DATA, outputFile);
ContentResolver resolver = getContentResolver();
Uri uri = resolver.insert(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
content);
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("video/*");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Share using"));
我想已經設置標題字段。 否則,如果用戶沒有手動設置標題字段,則上傳的視頻將具有視頻文件名的標題。
請分享解決方案,如果您發現請 – Geethu