I have a video file of roughly 100 Mb I have split it into 3 parts of 35Mb, 35Mb, 30Mb each. Steps I have done,
- I have called the start_large_file and I got the fileId.
- Successfully uploaded all the video parts using upload_part and provided the fileId, part_number, sha1, content length, and input_stream.
- Finally called the finish_large_file API with fileId and sha1 array of all the parts. The API gave a successful response and action equals upload.
Now, when I hit the merged file URL the video duration is equal to that of part 1 but the size is equal to 100Mb. So the issue is with the merged video duration. The video duration should be equal to the all the parts combined.