How to download facebook videos by using 'youtube-dl' in linux?

Madhav Nikam

I am unable to download Facebook video using youtube-dl. The following error occurs during downloading:

$ youtube-dl https://www.facebook.com/video.php?v=10152588878600983&set=vb.107925785982&type=2&theater
[1] 5101
[2] 5102
[3] 5103
theater: command not found
[2]-  Done                    set=vb.107925785982
[3]+  Done                    type=2
[2]-  Done                    set=vb.107925785982
[3]+  Done                    type=2
$ [generic] video: Requesting header

$ WARNING: Falling back on generic information extractor.
[generic] video: Downloading webpage
ERROR: Unable to download webpage: <urlopen error [Errno 8] _ssl.c:510: EOF occurred in violation of protocol>

[1]+  Exit 1                  youtube-dl
https://www.facebook.com/video.php?v=10152588878600983
earthmeLon

When using youtube-dl try to clean up the URL you use. For example, the following URL will work. Thanks for the video ^_~.

How did you install youtube-dl? If you installed it through apt, I would recommend the following:

sudo apt-get remove youtube-dl
sudo apt-get install $(apt-cache depends youtube-dl | grep Depends | sed "s/.*ends:\ //" | tr '\n' ' ')
sudo pip install youtube-dl

pip seems to have a more up-to-date version.

Some characters need to be escaped to prevent issues. You can single-quote your URL to help prevent these issues:

  • youtube-dl 'https://domain.tld/path/file.ext'

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to download only subtitles of videos using youtube-dl

From Dev

Cannot download videos on Ubuntu 12.04 using youtube-dl

From Dev

Cannot download videos on Ubuntu 12.04 using youtube-dl

From Dev

How to bulk download videos and rename them simultaneously using youtube-dl?

From Dev

How to download playalist except certain videos in youtube-dl?

From Dev

How to download playalist except certain videos in youtube-dl?

From Dev

How do I download Facebook playlists with youtube-dl?

From Dev

Can I download videos from a YouTube search query using youtube-dl?

From Dev

Can I download videos from a YouTube search query using youtube-dl?

From Dev

How can youtube-dl download videos that require user authentication and 2FA?

From Dev

Use youtube-dl to download new videos from channel

From Dev

Use youtube-dl to download new videos from channel

From Dev

youtube-dl problems, can't download private videos

From Dev

Can't download using youtube-dl

From Dev

Can't download using youtube-dl

From Dev

How to download tricky subtitles with youtube-dl?

From Dev

How to download YouTube videos via HTTPS

From Dev

How to download videos from YouTube with subtitles?

From Dev

How can I download YouTube videos with their description?

From Dev

using youtube-dl to download entire youtube channel

From Dev

using youtube-dl to download entire youtube channel

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

How to download video format 1 or format 2 using youtube-dl?

From Dev

download videos from youtube

From Dev

Can I directly download audio using youtube-dl?

From Dev

Can I directly download audio using youtube-dl?

From Dev

How to play youtube videos in a native player and also how to download youtube videos

From Dev

youtube-dl unable to download audio how to resolve that issue?

Related Related

  1. 1

    How to download only subtitles of videos using youtube-dl

  2. 2

    Cannot download videos on Ubuntu 12.04 using youtube-dl

  3. 3

    Cannot download videos on Ubuntu 12.04 using youtube-dl

  4. 4

    How to bulk download videos and rename them simultaneously using youtube-dl?

  5. 5

    How to download playalist except certain videos in youtube-dl?

  6. 6

    How to download playalist except certain videos in youtube-dl?

  7. 7

    How do I download Facebook playlists with youtube-dl?

  8. 8

    Can I download videos from a YouTube search query using youtube-dl?

  9. 9

    Can I download videos from a YouTube search query using youtube-dl?

  10. 10

    How can youtube-dl download videos that require user authentication and 2FA?

  11. 11

    Use youtube-dl to download new videos from channel

  12. 12

    Use youtube-dl to download new videos from channel

  13. 13

    youtube-dl problems, can't download private videos

  14. 14

    Can't download using youtube-dl

  15. 15

    Can't download using youtube-dl

  16. 16

    How to download tricky subtitles with youtube-dl?

  17. 17

    How to download YouTube videos via HTTPS

  18. 18

    How to download videos from YouTube with subtitles?

  19. 19

    How can I download YouTube videos with their description?

  20. 20

    using youtube-dl to download entire youtube channel

  21. 21

    using youtube-dl to download entire youtube channel

  22. 22

    How to download a youtube playlist with numbered prefix via youtube-dl?

  23. 23

    How to download a youtube playlist with numbered prefix via youtube-dl?

  24. 24

    How to download video format 1 or format 2 using youtube-dl?

  25. 25

    download videos from youtube

  26. 26

    Can I directly download audio using youtube-dl?

  27. 27

    Can I directly download audio using youtube-dl?

  28. 28

    How to play youtube videos in a native player and also how to download youtube videos

  29. 29

    youtube-dl unable to download audio how to resolve that issue?

HotTag

Archive