Socket
Socket
Sign inDemoInstall

node-apiless-youtube-upload

Package Overview
Dependencies
76
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-apiless-youtube-upload

Upload videos to Youtube in Node.js without any Youtube API dependency by using Selenium.


Version published
Weekly downloads
15
decreased by-21.05%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-apiless-youtube-upload

Upload videos to Youtube in node.js, ts-node or electron, and on windows or linux without any Youtube API dependency! Chromedriver required by Selenium will be automatically downloaded during runtime (using node-chromedriver-downloader). Note: headless login is out of scope for this module, because it's difficult to maintain.

Installation
npm install node-apiless-youtube-upload
Usage
ES6 Simple
import {promptLoginAndGetCookies, uploadVideo} from 'node-apiless-youtube-upload'

promptLoginAndGetCookies().then(cookies => {
    uploadVideo({
        videoPath: 'C:/Users/gladiatortoise/Desktop/testVideo.mp4',
        title: '📡 Automatically Uploaded Video 📡',
        description: 'This is a placeholder description.',
        thumbnailPath: 'C:/Users/gladiatortoise/Desktop/TestThumbnail.jpg',
        visibility: 'unlisted',
        monetization: false
    }, cookies)
})
ES6 With Saving Cookies
import YoutubeUploader from 'node-apiless-youtube-upload'

(async () => {
    const youtubeUploader = new YoutubeUploader()
    const cookiesPath = process.cwd() + '/cookies_saved.json'

    // Try loading cookies from disk
    try {
        await youtubeUploader.loadCookiesFromDisk(cookiesPath)

        if (!(await youtubeUploader.checkCookiesValidity())) {
            throw new Error('Cookies loaded from disk are not valid')
        }
    } catch(e) {
        console.log('Prompting Google login..')

        // Open a login window for Google account. Cookies will be stored in the youtubeUploader instance
        await youtubeUploader.promptLoginAndGetCookies()

        // Save cookies
        await youtubeUploader.saveCookiesToDisk(cookiesPath)
    }
    
    // Upload a video to youtube
    await youtubeUploader.uploadVideo({
        videoPath: 'C:/Users/gladiatortoise/Desktop/testVideo.mp4',
        title: '📡 Automatically Uploaded Video 📡',
        description: 'This is a placeholder description.',
        thumbnailPath: 'C:/Users/gladiatortoise/Desktop/TestThumbnail.jpg',
        visibility: 'unlisted',
        monetization: false
    })
})()
CommonJS Simple
const {promptLoginAndGetCookies, uploadVideo} = require('node-apiless-youtube-upload')

promptLoginAndGetCookies().then(cookies => {
    uploadVideo({
        videoPath: 'C:/Users/gladiatortoise/Desktop/testVideo.mp4',
        title: '📡 Automatically Uploaded Video 📡',
        description: 'This is a placeholder description.',
        thumbnailPath: 'C:/Users/gladiatortoise/Desktop/TestThumbnail.jpg',
        visibility: 'unlisted',
        monetization: false
    }, cookies)
})
Requirements

At least node 7.6 for async/await support and a Chrome web browser. Unfortunately MacOs is not (yet) supported

Motivation

Recent changes in Youtube v3 API (2020, September) made it impossible to upload videos from unverified apps. Google does not verify apps for internal or private use. This module is intended to be an easy solution for programmatically uploading videos to Youtube.

Massive thanks to @Jaqen00 for helping with testing!

Keywords

FAQs

Last updated on 02 Feb 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc