Questions tagged [video-upload]

62 questions
0
votes
0 answers

System.IO.FileNotFoundException when upload image and video in both Xamarin Android and IOS

when i upload the image or video in localpath once the media is uploaded exception is came like System.IO.FileNotFoundException: Could not find file issue not recreated our side. how to resolve this issue. public byte[] GetBase64Stream(string…
0
votes
1 answer

Remote server get stuck when uploading video (4mb) base64 encoded

I am trying to upload videos from react native application to aws s3 bucket using nodejs backend server. My approach is, Convert video to base64 at react native application level Send POST request to backend server by attaching base64 data as…
John Stuart
  • 950
  • 5
  • 11
  • 28
0
votes
0 answers

Uploading video to YouTube using Java Script or Apps Script

I have a video which I want to upload it to YouTube using Java Script or Apps Script. I know that I will need a blob URL to do that I have that too. I just want to know how to upload Videos using Java Script or Apps Script. Thanks In Advance:)
0
votes
1 answer

Understanding HLS implementation?

User will upload the videos from browser which need to be stored on server and playback. First understanding from google suggest I need to go for HTTP live streaming(HLS) here. But I am not sure how it works internally ? There are three components…
user3198603
  • 5,528
  • 13
  • 65
  • 125
0
votes
3 answers

Cloudinary Video uploading error Entity too large up to 300MB

I am using Cloudinary by using library "https://github.com/jrm2k6/cloudder" but when I upload large video files greater than 100MB it shows "Entity too large: error, I am using apache server. Also try Cloudinary upload_large function but show same…
jawad ali
  • 7
  • 6
0
votes
1 answer

How to track the uploading process on firebase with flutter?

I have this future function that will upload a video to firebase, I want to track this uploading process in percentage, so after the uploading process is completed, I will get the url. Code Future storageupload() async { try { if…
0
votes
1 answer

How to upload videos to firebase storage and get their uploading progress?

I have these recorded videos which exist in the app directory that I want the app to upload them to firebase storage and get the progress percentage, I know how to upload from gallery but not from app directory.
0
votes
0 answers

How to upload multiple file simultaneously using ASP .Net Core 3.1 with threads

I am working on ASP .Net Core. I need to design a web page using which user can upload any video. Each video upload status must be visible to user. If user wants, user can cancel the uploading of specific video. Video upload must be independent. I…
0
votes
0 answers

How to Upload MP4 video from Angular 8 and WebApi #

I am trying to upload the MP4 video from Angular 8 to WebAPI but the problems is I am not sure how to transfer the MP4 video from Angular to Webapi so that i upload the video to AZure storage . Below is my code . Backend Web API Code public class…
0
votes
0 answers

Video file uploading problem in Codeigniter

private function _upload_video() { $prev_image = $this->input->post('prev_video'); $image = $_FILES['video']['name']; $image_type = $_FILES['video']['type']; $return_image = ''; if ($image != "") { if ($image_type ==…
0
votes
1 answer

Upload large video file as chunks and send some parameters along with that using python flask?

I was able to upload large file to server using the below code - @app.route("/upload", methods=["POST"]) def upload(): with open("/tmp/output_file", "bw") as f: chunk_size = 4096 while True: chunk =…
SkyTreasure
  • 854
  • 2
  • 13
  • 23
0
votes
0 answers

Upload video with facebook api to my page but I getting #100 every time

I'm created a page for testing and I'm trying upload video to this page (page is unpublished) but I'm getting same error every time. Error: (#100) No permission to publish the video I created user token on Graph API Explorer with user_videos,…
0
votes
1 answer

How to upload a video to Facebook event page via PHP

I have created an event on my test page and I'm going to upload a video to that event page from my web site. I have used the below code but it is doesn't work. $data = [ 'title' => 'test Video', 'description' => 'This is test video', …
Web Star
  • 431
  • 3
  • 20
0
votes
1 answer

Unexpected field while uploading video using angular8, nodejs and multer

I am uploading image and video, working fine when uploading image but getting error as 'Unexpected field' while uploading video I have mentioned my source code for reference Please help me, Thanks in advance
Vicky Kumar
  • 239
  • 7
  • 21
0
votes
0 answers

How to upload large video files on a Rails application?

I have a Rails application set up on which users can upload video files. Some of these video files are about 20GB. My configurations are as follows: Ruby 2.2.6 Rails 4.2.0 Storage: Amazon S3 Database: MongoDB I need to know what steps do I need to…
A.A. F
  • 349
  • 5
  • 16