🎦Video Upload
📂 Data Source
2 data sources are supported for video upload:
- 📑 Files – text files.
- 📗 Scheduler – Excel spreadsheet.
The choice of data source depends on whether your project requires linking videos with specific data or, conversely, videos should be uploaded in random order without binding to specific data.
Files
– used when data linking is not important or complete randomization is required.
Scheduler
– used when order and precise data-to-video matching is important.
🔀 Thread Mode
There are 3
thread modes that determine how files
with data will be used during multi-threaded video upload, i.e., when uploading to multiple channels simultaneously.
- Shared – threads use
files
with data and share them among themselves on a "first come, first served" basis. - Isolated – a virtual local copy of
files
with data is created for each thread. All threads will have the same data set, but unlike shared mode, threads don't share data among themselves. - Dedicated –
files
with data specified by the user are bound to each thread. The thread uses data from text files privately, without intersecting with other threads.
❗Thread mode selection only makes sense when using the data source: "Files".
For Scheduler, the Dedicated
thread mode is always used.