All Projects → CodeDotJS → fbvideos

CodeDotJS / fbvideos

Licence: MIT license
🔗 Easily extract downloadable link of publicly available videos on facebook.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to fbvideos

reachable-urls
Check URLs are reachable in text 🕵️
Stars: ✭ 29 (+3.57%)
Mutual labels:  url, link
quill-magic-url
Automatically convert URLs to links in Quill
Stars: ✭ 86 (+207.14%)
Mutual labels:  url, link
FisherMan
CLI program that collects information from facebook user profiles via Selenium.
Stars: ✭ 117 (+317.86%)
Mutual labels:  facebook, extract
Link Preview Js
Parse and/or extract web links meta information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node.
Stars: ✭ 240 (+757.14%)
Mutual labels:  extract, link
keyword-extract
简单高效的URL关键词提取工具
Stars: ✭ 15 (-46.43%)
Mutual labels:  url, extract
Facebook Video Downloader
Python script to download and save your favorite Facebook videos.
Stars: ✭ 92 (+228.57%)
Mutual labels:  facebook, videos
Miscord
Facebook Messenger to Discord bridge
Stars: ✭ 225 (+703.57%)
Mutual labels:  facebook, link
custom-permalinks
Set custom permalinks on a per-post basis in WordPress
Stars: ✭ 17 (-39.29%)
Mutual labels:  url, link
wumpfetch
🚀🔗 A modern, lightweight, fast and easy to use Node.js HTTP client
Stars: ✭ 20 (-28.57%)
Mutual labels:  fetch, url
React Native Hyperlink
A <Hyperlink /> component for react-native that makes urls, fuzzy links, emails etc clickable
Stars: ✭ 572 (+1942.86%)
Mutual labels:  url, link
link text
Easy to use text widget for Flutter apps, which converts inlined urls into working, clickable links
Stars: ✭ 20 (-28.57%)
Mutual labels:  url, link
react-use-downloader
Creates a download handler function and gives progress information
Stars: ✭ 65 (+132.14%)
Mutual labels:  fetch, link
URL-Shortner-Bot-V2
A link shortner telegram bot version 2 with advanced features
Stars: ✭ 18 (-35.71%)
Mutual labels:  url, link
live-broadcast-bundle
Live broadcasting planner and scheduler
Stars: ✭ 38 (+35.71%)
Mutual labels:  facebook
LibraBrowser
LibraBrowser
Stars: ✭ 37 (+32.14%)
Mutual labels:  facebook
http
Aplus Framework HTTP Library
Stars: ✭ 113 (+303.57%)
Mutual labels:  url
dots
My dotfiles
Stars: ✭ 67 (+139.29%)
Mutual labels:  fetch
node-fetch-har
Generate HAR entries for requests made with node-fetch
Stars: ✭ 23 (-17.86%)
Mutual labels:  fetch
cyber-matrix-ai
Collection of cyber security and "AI" relevant topics
Stars: ✭ 69 (+146.43%)
Mutual labels:  url
seourls
phpBB Extension: URL rewriting for phpBB forums
Stars: ✭ 44 (+57.14%)
Mutual labels:  url




🔗 Easily extract downloadable link of publicly available videos on facebook.

Install

$ npm install --save fbvideos

Usage

const fbvid = require('fbvideos');

const video = 'https://www.facebook.com/9gag/videos/10155721204506840/';

fbvid.low(video).then(vid => {
  console.log(vid)
  // => { url: 'https://video.fpat1-1.fna.fbcdn.net/...mp4?934&oe=5972F363' }

});

fbvid.high(video).then(vid => {
  console.log(vid);
  // => { url: 'https://video.fpat1-1.fna.fbcdn.net/...mp4?934&OE=2kf2lf4g' }
});

API

fbvid.low(link)

  • Returns a url for low resolution facebook video.

link

Type : string

fbvid.high(link)

  • Returns a url for high resolution facebook video.

link

Type : string

Related

  • facebookid : An api to find user id of any facebook user
  • acuter : A simple wrapper for twitter media

License

MIT © Rishi Giri

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].