Skip to content

d6o/DSFacebookVideo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSFacebookVideo Language Badge License Badge Status Badge

Easily download videos from Facebook. You can use as program or as module!

Features

  • Download Videos from Facebook
  • Written in uncomplicated Python
  • Easily download files in the fastest speed possible
  • Download using Multi-Threaded Downloads
  • Easy to install
  • Stupidly easy to use

Installation

Option 1: Pip

$ pip install DSFacebookVideo

Option 2: From source

$ git clone https://github.com/DiSiqueira/DSFacebookVideo.git
$ cd DSFacebookVideo/
$ python setup.py install

Usage

Basic usage

# Download a video
$ DSFacebookVideo https://www.facebook.com/SkySports/videos/vb.10911153761/10153310275743762

Download using Workers

# Download 2 videos using 2 Workers
$ DSFacebookVideo --workers 2 https://www.facebook.com/SkySports/videos/vb.10911153761/10153310275743762 https://www.facebook.com/SkySports/videos/10153972581588762/

Set output folder

# Download 1 image and put it in my-images folder
$ DSFacebookVideo --output my-videos https://www.facebook.com/SkySports/videos/10153972581588762/

Combine everything

# Download 2 videos using 2 Workers and put on my-videos folder
$ DSFacebookVideo --output my-videos --workers 2 https://www.facebook.com/SkySports/videos/vb.10911153761/10153310275743762 https://www.facebook.com/SkySports/videos/10153972581588762/

Module Usage

The module allows you to download url lists in your own Python programs without going through the command line. Here's an example of it's usage:

###Example

from DSFacebookVideo import DSFacebookVideo

urls = ['https://www.facebook.com/SkySports/videos/vb.10911153761/10153310275743762', 'https://www.facebook.com/SkySports/videos/10153972581588762/']
workers = 2
output = 'My-Videos'

DSFacebookVideo(urls, workers, output)

Requirements

Program Help

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or file feature requests.

Developing

PRs are welcome. To begin developing, do this:

$ git clone --recursive git@github.com:DiSiqueira/DSFacebookVideo.git
$ cd DSFacebookVideo/src/

Social Coding

  1. Create an issue to discuss about your idea
  2. [Fork it] (https://github.com/DiSiqueira/DSFacebookVideo/fork)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request
  7. Profit! ✅

License

The MIT License (MIT)

Copyright (c) 2016 Diego Siqueira

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.

About

Easily download videos from Facebook. You can use as program or as module!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages