TubeStudio Bulk Import

From TMM Wiki
Revision as of 12:29, 24 February 2010 by Tmmdan (talk | contribs) (Created page with ' == CSV Import == == XML Import == Foramt <pre> <videos> <constants> ... enter any field from <video> here to have it apply to all video entries. If the field is al…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search



CSV Import

XML Import

Foramt

<videos>
	<constants>
	  ... enter any field from <video> here to have it apply to all video entries.  If the field is also in a video, it will be overwritten by that field.
	</constants>

	<video>
		<file> URL TO FETCH VIDEO </file>
		<sample_thumb> URL TO SAMPLE THUMB </sample_thumb>
		<title> VIDEO TITLE </title>
		<description> VIDEO DESCRIPTION </description>
		<summary> VIDEO SUMMARY </summary>
		<link> SPONSOR LINK </link>
		<link_name> SPONSOR LINK NAME </link_name>
		<channels> CHANNEL 1 </channels>
		<channels> CHANNEL 2 </channels>
		<channels> CHANNEL 3 </channels>
		<tags> tag1, tag2, tag3, tag4, ... </tags>
		<unscheduled> 0 OR 1 </unscheduled>
		<priority>1 TO 100</priority>
	</video>
<videos>

Example:

<videos>
	<constants>
		<priority>50</priority>
		<link>http://my_sponsor_site.com/</link>
		<link_name> My Sponsor Site</link_name>
		<unscheduled>1</unscheduled>
	</constants>

	<video>
		<file>http://my_sponsor_site.com/videos/video1.wmv</file>
		<sample_thumb>http://mysite.com/videos/video1.jpeg</sample_thumb>
		<title>Video 1</title>
		<description>This is my 1st video</description>
		<channels> Channel 1 </channels>
		<channels> Channel 2 </channels>
		<channels> Channel 3 </channels>
		<tags> tag1, tag2, tag3, tag4, ... </tags>
	</video>
	<video>
		<file>http://my_sponsor_site.com/videos/video2.wmv</file>
		<sample_thumb>http://mysite.com/videos/video2.jpeg</sample_thumb>
		<title>Video 1</title>
		<description>This is my 2nd video</description>
		<channels> Channel 1 </channels>
		<channels> Channel 4 </channels>
		<channels> Channel 2 </channels>
		<tags> tag9, tag2, tag3, tag1, ... </tags>
	</video>
	<video>
		<file>http://my_sponsor_site.com/videos/video3.wmv</file>
		<sample_thumb>http://mysite.com/videos/video3.jpeg</sample_thumb>
		<title>Video 3</title>
		<description>This is my 3rd video</description>
		<channels> Channel 6 </channels>
		<channels> Channel 2 </channels>
		<channels> Channel 2 </channels>
		<tags> tag1, tag2, tag17, tag4, ... </tags>
	</video>
<videos>