get-video-from-twitter-timeline

1.0.3 • Public • Published

get-video-from-twitter-timeline

Gets video URLs from a given Twitter account.

Installation

npm install get-video-from-twitter-timeline

Usage

var getVideoFromTwitterTimeline = require('get-video-from-twitter-timeline');

var getOpts = {
  twitterCreds: {
    consumer_key: '<Your Twitter consumer key>',
    consumer_secret: 'Your Twitter consumer secret>',
    access_token: '<Your Twitter access token>',
    access_token_secret: 'Your Twitter access token secret'
  },
  getTweetsAfterTweetId: 100
};

getVideoFromTwitterTimeline(getOpts, logVideoPackages);

function logVideoPackages(error, videoPackages) {
  if (error) {
    console.log(error);
  }
  else {
    console.log(JSON.stringify(videoPackages, null, '  '));
  }
}

This code will log something like this:

[
  {
    "tweetId": "1234",
    "caption": "Curry!",
    "date": "Sun Jan 02 12:00:00 +0000 2017",
    "videos": [
      {
        "bitrate": 320000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/6789/pr/vid/240x240/whatever.mp4"
      },
      {
        "bitrate": 832000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/6789/pr/vid/480x480/whatever.mp4"
      },
      {
        "content_type": "application/x-mpegURL",
        "url": "https://video.twimg.com/ext_tw_video/6789/pr/pl/whatever.m3u8"
      }
    ]
  },
  {
    "tweetId": "2345",
    "caption": "",
    "date": "Sun Jan 02 12:30:00 +0000 2017",
    "videos": [
      {
        "bitrate": 832000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/5678/pr/vid/480x480/whatever.mp4"
      },
      {
        "bitrate": 320000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/5687/pr/vid/240x240/whatever.mp4"
      },
      {
        "content_type": "application/x-mpegURL",
        "url": "https://video.twimg.com/ext_tw_video/5678/pr/pl/whatever.m3u8"
      }
    ]
  },
  {
    "tweetId": "3456",
    "caption": "Numbers game",
    "date": "Sun Jan 02 20:00:00 +0000 2017",
    "videos": [
      {
        "content_type": "application/x-mpegURL",
        "url": "https://video.twimg.com/ext_tw_video/4567/pr/pl/whatever.m3u8"
      },
      {
        "bitrate": 320000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/4576/pr/vid/240x240/whatever.mp4"
      },
      {
        "bitrate": 832000,
        "content_type": "video/mp4",
        "url": "https://video.twimg.com/ext_tw_video/5678/pr/vid/480x480/whatever.mp4"
      }
    ]
  }
]

Tests

Run tests by creating a config.js file in the project root that looks like this:

module.exports = {
  twitter: {
    consumer_key: '<Your Twitter consumer key>',
    consumer_secret: '<Your Twitter consumer secret>',
    access_token: '<Your Twitter access token>',
    access_token_secret: '<Your Twitter access token secret>'
  }
};

Then run make test.

License

The MIT License (MIT)

Copyright (c) 2017 Jim Kang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i get-video-from-twitter-timeline

Weekly Downloads

2

Version

1.0.3

License

MIT

Last publish

Collaborators

  • jimkang