https://github.com/brenordv/facebook_video_downloader
https://github.com/brenordv/facebook_video_downloader
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/brenordv/facebook_video_downloader
- Owner: brenordv
- Created: 2020-11-26T01:33:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-26T01:39:41.000Z (over 4 years ago)
- Last Synced: 2025-01-20T08:13:09.176Z (5 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Facebook video downloader
This script will try to download a public video from an url.# Usage
## Download video to current folder, using default name (timestamp) and resolution (hd)
```shell
python facebook.py https://facebook.com/link/to/video
```## Download video to current folder, using using custom name and resolution
```shell
python facebook.py https://facebook.com/link/to/video output "c:\\temp\\my_video.mp4" resolution hd
```## Download video and enabling logging.
```shell
python facebook.py https://facebook.com/link/to/video log debug
```## Help
```shell
python facebook.py help
```# Notes
- This script relies on the current Facebook page format. If they change it, this will break.
- Tried to use as few external dependencies as possible. Just enough to add a little swag here.
- Worked for every video i tried to download, but I must confess: I made this script during my lunch break and haven't really tested it the way i should. :)