wanghaisheng / tiktoka-studio-uploader

Schedule and Publish contents erverywhere.Bulk auto video upload and Scheduling & Publishing Effortless for You & Your Entire Team. batch headless upload all major social networks using this ultimate social media scheduler. Fret less, save time, and generate more leads!
https://www.tiktokastudio.com
MIT License
274 stars 52 forks source link

proposed video metajson for youtube #59

Open wanghaisheng opened 1 year ago

wanghaisheng commented 1 year ago

Checklist

Region

No response

Example URLs

youtube.com

Description

{ "title": "my test title", "description": "my test description", "tags": ["test tag1", "test tag2"], "privacyStatus": "private", "madeForKids": false, "embeddable": true, "license": "creativeCommon", "publicStatsViewable": true, "publishAt": "2017-06-01T12:05:00+02:00", "categoryId": "10", "recordingdate": "2017-05-21", "playlistIds": ["xxxxxxxxxxxxxxxxxx", "yyyyyyyyyyyyyyyyyy"], "playlistTitles": ["my test playlist"], "language": "fr", "monetization": {"allowed": true}, "location": { "latitude": 48.8584, "longitude": 2.2945 }, "locationDescription": "Eiffel Tower", }

Upvote & Fund

Fund with Polar

wanghaisheng commented 1 year ago

is there a way to pass an argument to activate monetization for uploaded video? "monetization": {"allowed": true}

wanghaisheng commented 1 year ago

the title could by default be the specified file name if there is no title is on the command line AND none is in the json file?

wanghaisheng commented 1 year ago
{
  "uploadSetting": {
    //你可以为一个账号添加多个代理,这样子一个代理失败会自动切换
    "proxy_option": "socks5://127.0.0.1:1080",
    //默认的延迟检测 可以不用设置
    "timeout": 200000,
    //是否打开浏览器调试
    "is_open_browser": "True",
    //是否打开调试日志
    "debug": "True",
    "username": "edwin.uestc@gmail.com",
    "password": "U437P8Is9prmNquVerHJ9%R00a",
    //浏览器可以选择"chromium", "firefox", "webkit"其中之一
    "browser_type": "firefox",
    "channel_cookie_path": "/Users/wenke/github/tiktoka-studio-uploader/offloaddogsboner-cookie.json",
    //三选一 
    //"go next after uploading success",
   // "go next after processing success",
   // "go next after copyright check success",
    "wait_policy": "go next after processing success",
    //上传过程自动录制视频 供调试用
    "is_record_video": "True"
  },
  "videos": [
    {
      "video_path": "/Users/wenke/github/tiktoka-studio-uploader/tests/1.mp4",
      "title": "my test title private draft",
      "description": "my test description",
      "thumbnail": "/Users/wenke/github/tiktoka-studio-uploader/tests/1/sp/1-001.jpg",
      //0 -private 1-publish 2-schedule 3-Unlisted 4-public&premiere 
      "publish_policy": 0,
      "is_not_for_kid": "True",
          //0 "Autos & Vehicles",
          //1 "Comedy",
          //2 "Education",
          //3 "Entertainment",
          //4 "Film & Animation",
          //5 "Gaming",
          //6 "Howto & Style",
          //7 "Music",
          //8 "News & Politics",
          //9 "Nonprofits & Activism",
          //10 "People & Blogs",
          //11 "Pets & Animals",
          //12 "Science & Technology",
          //13 "Sports",
          //14 "Travel & Events",
      "categories": 10,
      // 默认为1
      // # 0-Allow all comments
      // # 1-Hold potentially inappropriate comments for review
      // # 2-Increase strictness
      // # 3-Hold all comments for review
      // # 4-Disable comments

      "comments_ratings_policy": 1,
      "tags": [
        "Radiation resistance",
        "Turning tiny",
        "Radiation blast"
      ]
    },
    {
      "video_path": "/Users/wenke/github/tiktoka-studio-uploader/tests/1.mp4",
      "age": 29,
      "title": "instant publish my test title",
      "description": "my test description",
      "thumbnail": "/Users/wenke/github/tiktoka-studio-uploader/tests/1/sp/1-001.jpg",
      "publish_policy": 1,

      "is_not_for_kid": "True",
      "categories": 10,
      "comments_ratings_policy": 1,
      "tags": [
        "Radiation resistance",
        "Turning tiny",
        "Radiation blast"
      ]
    },
    {
      "video_path": "/Users/wenke/github/tiktoka-studio-uploader/tests/1.mp4",
      "age": 29,
      "title": "scheduletopublish_at_specific_date my test title",
      "description": "my test description",
      "thumbnail": "/Users/wenke/github/tiktoka-studio-uploader/tests/1/sp/1-001.jpg",
      "publish_policy": 2,
      "release_date": "2023-12-01",
      "release_date_hour": "10:15",
      "is_not_for_kid": "True",
      "categories": 10,
      "comments_ratings_policy": 1,
      "tags": [
        "Radiation resistance",
        "Turning tiny",
        "Radiation blast"
      ]
    },    
    {
      "video_path": "/Users/wenke/github/tiktoka-studio-uploader/tests/1.mp4",
      "age": 29,
      "title": "Unlisted my test title",
      "description": "my test description",
      "thumbnail": "/Users/wenke/github/tiktoka-studio-uploader/tests/1/sp/1-001.jpg",
      "publish_policy": 3,
      "release_date": "2023-12-01",
      "release_date_hour": "10:15",
      "is_not_for_kid": "True",
      "categories": 10,
      "comments_ratings_policy": 1,
      "tags": [
        "Radiation resistance",
        "Turning tiny",
        "Radiation blast"
      ]
    }, 
    {
      "video_path": "/Users/wenke/github/tiktoka-studio-uploader/tests/1.mp4",
      "age": 29,
      "title": "public&premiere my test title",
      "description": "my test description",
      "thumbnail": "/Users/wenke/github/tiktoka-studio-uploader/tests/1/sp/1-001.jpg",
      "publish_policy": 4,
      "release_date": "2023-12-01",
      "release_date_hour": "10:15",
      "is_not_for_kid": "True",
      "categories": 10,
      "comments_ratings_policy": 1,
      "tags": [
        "Radiation resistance",
        "Turning tiny",
        "Radiation blast"
      ]
    }      
  ]
}