Mass uploading to youube?

CareMD

Registered Member
Joined
Mar 30, 2016
Messages
98
Reaction score
13
Heya guys, i'm new to youtube marketing and i'm planning to do a SEO experiment with youtube and shortclips, i have about 30 videos I want to upload (1 each day) but i don't want to do this manually, is there any tool out there than can will do this automaticly?

All i want to specify is the folder of the mp4 files, the title should be the filename in this case - all the keywords will be the same for each video
 
Heya guys, i'm new to youtube marketing and i'm planning to do a SEO experiment with youtube and shortclips, i have about 30 videos I want to upload (1 each day) but i don't want to do this manually, is there any tool out there than can will do this automaticly?

All i want to specify is the folder of the mp4 files, the title should be the filename in this case - all the keywords will be the same for each video
You don't need a third party tool. First you upload all the vids in the folder (they will be private, only you can see them), then you set a schedule for them to be 'published' (become viewable by everybody).
 
If you like shell you can install youtube-upload which i believe it's pre-packaged in most linux distros and run something like this (usefully to run from a remote server for example):

Code:
declare -A array
array['video_2016070817195212
array['video_2016070817081112
array['video_201607081723025
array['video_2016070817121911
array['video_201607081714599

for i in "${!array[@]}"
do
  youtube-upload \
    --title="#$i use index if you need to in title " \
    --description="put-your-message-here" \
    --tags="tag1, tag2" \
    --default-language="en" \
    --default-audio-language="en" \
    --client-secrets=my_client_secrets.json \
    --credentials-file=my_credentials.json \
    --playlist "the-playlist" \
    --privacy public \
    "$i.mp4"
done
 
If you upload a lot of videos in one day your account will get banned most likely

If you were considering YouTube marketing send me a private message and I can give you some tips that I personally use
 
Back
Top