How to combine multiple video files to a single one

This feature allows you to combine several video files to one file.

 You can use it via User Interface, or via API.

 User Interface

 To use this feature via user interface, you have to add several video sources in “Add Media” section. And they would automatically combined to one file (in sequential order) during the encoding process.

 API

 To combine several video sources to one file, you should use several <source> elements in your XML request.

 For example:

<?xml version="1.0"?>
<query>
    <!-- Main fields -->
    <userid>[UserID]</userid>
    <userkey>[UserKey]</userkey>
    <action>[Action]</action>
    <mediaid>[MediaID]</mediaid>
    <source>[SourceFile]</source>
    <source>[SourceFile1]</source> <!-- if multiple SourceFile added, they will be concatenated -->
    <!-- ... -->
    <source>[SourceFileN]</source>
    <format>
        [FormatFields]
    </format>
</query>
SourceFile1..SourceFileN — you can specify several source files as well. All of them will be combined to one file (in sequential order) during the encoding process. You can use different source URLs (HTTP, FTP, S3, CloudFiles) with different media properties (format, frame size, bitrate, codec, etc.) Read more
1 Star2 Stars3 Stars4 Stars5 Stars (14 votes, average: 3.14 out of 5)
Loading...

edchelp