Bulk download facebook videos
I have a .txt with direct links to 154 facebook video's in it, which i'd love to download in .mp4 or some such format.
Format is like this:
https://www.facebook.com/LesnarUFC/videos/677753912371587/
Anyone know of a way I can do this in bulk or any software which will do it? I tried keepvid which wasn't very good, and would not accept bulk. I don't mind having to pay for the software, or if I can programmatically do it. Suggestions would be welcome.
download automation facebook
add a comment |
I have a .txt with direct links to 154 facebook video's in it, which i'd love to download in .mp4 or some such format.
Format is like this:
https://www.facebook.com/LesnarUFC/videos/677753912371587/
Anyone know of a way I can do this in bulk or any software which will do it? I tried keepvid which wasn't very good, and would not accept bulk. I don't mind having to pay for the software, or if I can programmatically do it. Suggestions would be welcome.
download automation facebook
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you towget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.
– Engineer Toast
Nov 30 '16 at 13:15
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
1
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26
add a comment |
I have a .txt with direct links to 154 facebook video's in it, which i'd love to download in .mp4 or some such format.
Format is like this:
https://www.facebook.com/LesnarUFC/videos/677753912371587/
Anyone know of a way I can do this in bulk or any software which will do it? I tried keepvid which wasn't very good, and would not accept bulk. I don't mind having to pay for the software, or if I can programmatically do it. Suggestions would be welcome.
download automation facebook
I have a .txt with direct links to 154 facebook video's in it, which i'd love to download in .mp4 or some such format.
Format is like this:
https://www.facebook.com/LesnarUFC/videos/677753912371587/
Anyone know of a way I can do this in bulk or any software which will do it? I tried keepvid which wasn't very good, and would not accept bulk. I don't mind having to pay for the software, or if I can programmatically do it. Suggestions would be welcome.
download automation facebook
download automation facebook
edited Nov 30 '16 at 16:26
DavidPostill♦
105k25227260
105k25227260
asked Nov 30 '16 at 13:11
heidi sievertheidi sievert
62
62
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you towget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.
– Engineer Toast
Nov 30 '16 at 13:15
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
1
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26
add a comment |
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you towget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.
– Engineer Toast
Nov 30 '16 at 13:15
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
1
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you to
wget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.– Engineer Toast
Nov 30 '16 at 13:15
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you to
wget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.– Engineer Toast
Nov 30 '16 at 13:15
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
1
1
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26
add a comment |
2 Answers
2
active
oldest
votes
First take a look at http://www.dowfb.com
Or use do these steps:
- Opend your links in a text editer
- Replace all links width into html links formats like
<a download href="{VideoLink}"></a>
- Save this file in html format like "myBulkVideos.html"
- Open this file in your browser
- Open "Developper Mode" by typing on F12
- Go to console Tab
- And execute this code:
var links = document.getElementsByTagName("a");for(var i=0;i<links.length;i++){links[i].click()}
This code will trigger click events on all of your videos links
add a comment |
You can use youtube-dl
utility for that, it supports Facebook videos as well.
After installing, simply run:
youtube-dl "https://www.facebook.com/FacebookUK/videos/242001450001180/"
It should also work for non-public videos after providing your user credentials.
See also: How can I download non public Facebook video?
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1151408%2fbulk-download-facebook-videos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
First take a look at http://www.dowfb.com
Or use do these steps:
- Opend your links in a text editer
- Replace all links width into html links formats like
<a download href="{VideoLink}"></a>
- Save this file in html format like "myBulkVideos.html"
- Open this file in your browser
- Open "Developper Mode" by typing on F12
- Go to console Tab
- And execute this code:
var links = document.getElementsByTagName("a");for(var i=0;i<links.length;i++){links[i].click()}
This code will trigger click events on all of your videos links
add a comment |
First take a look at http://www.dowfb.com
Or use do these steps:
- Opend your links in a text editer
- Replace all links width into html links formats like
<a download href="{VideoLink}"></a>
- Save this file in html format like "myBulkVideos.html"
- Open this file in your browser
- Open "Developper Mode" by typing on F12
- Go to console Tab
- And execute this code:
var links = document.getElementsByTagName("a");for(var i=0;i<links.length;i++){links[i].click()}
This code will trigger click events on all of your videos links
add a comment |
First take a look at http://www.dowfb.com
Or use do these steps:
- Opend your links in a text editer
- Replace all links width into html links formats like
<a download href="{VideoLink}"></a>
- Save this file in html format like "myBulkVideos.html"
- Open this file in your browser
- Open "Developper Mode" by typing on F12
- Go to console Tab
- And execute this code:
var links = document.getElementsByTagName("a");for(var i=0;i<links.length;i++){links[i].click()}
This code will trigger click events on all of your videos links
First take a look at http://www.dowfb.com
Or use do these steps:
- Opend your links in a text editer
- Replace all links width into html links formats like
<a download href="{VideoLink}"></a>
- Save this file in html format like "myBulkVideos.html"
- Open this file in your browser
- Open "Developper Mode" by typing on F12
- Go to console Tab
- And execute this code:
var links = document.getElementsByTagName("a");for(var i=0;i<links.length;i++){links[i].click()}
This code will trigger click events on all of your videos links
answered Mar 13 '17 at 13:23
oussama fahdoussama fahd
1
1
add a comment |
add a comment |
You can use youtube-dl
utility for that, it supports Facebook videos as well.
After installing, simply run:
youtube-dl "https://www.facebook.com/FacebookUK/videos/242001450001180/"
It should also work for non-public videos after providing your user credentials.
See also: How can I download non public Facebook video?
add a comment |
You can use youtube-dl
utility for that, it supports Facebook videos as well.
After installing, simply run:
youtube-dl "https://www.facebook.com/FacebookUK/videos/242001450001180/"
It should also work for non-public videos after providing your user credentials.
See also: How can I download non public Facebook video?
add a comment |
You can use youtube-dl
utility for that, it supports Facebook videos as well.
After installing, simply run:
youtube-dl "https://www.facebook.com/FacebookUK/videos/242001450001180/"
It should also work for non-public videos after providing your user credentials.
See also: How can I download non public Facebook video?
You can use youtube-dl
utility for that, it supports Facebook videos as well.
After installing, simply run:
youtube-dl "https://www.facebook.com/FacebookUK/videos/242001450001180/"
It should also work for non-public videos after providing your user credentials.
See also: How can I download non public Facebook video?
edited Jan 15 at 17:16
answered Jan 15 at 16:58
kenorbkenorb
11k1578114
11k1578114
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1151408%2fbulk-download-facebook-videos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
From a related question that was closed for being off-topic b/c it was specifically asking for software recommendation, there are comments that point you to
wget
. If you're on Windows, it's available here and make sure you extract it's dependencies to the same folder.– Engineer Toast
Nov 30 '16 at 13:15
There is no direct file download i can wget that i can see, this is what my main issue is, i have tried to use this approach.
– heidi sievert
Nov 30 '16 at 14:02
@heidisievert - Yes there is. I had no problem finding it when I had to write a script to download CSV from a website recently.
– Ramhound
Nov 30 '16 at 14:39
Ah, I see. You have a link to the page with an embedded video and you want need the video URL to download the file using wget? If the videos are always in the same place on the screen, you can use AutoHotkey to load each page, right-click on the video, copy the URL, and save that into a log file, finally using wget based on that log instead. I meantion AHK only because I'm comfortable with it. It may be the best solution to get the video URLs directly, though, and right-clicking on the video or inspecting the element are the only ways I know to do that.
– Engineer Toast
Nov 30 '16 at 14:42
1
Warning - please do not use obscenities in your posts. I've removed it for you. Note that other users may have flagged your post as "rude or abusive" leading to possible rep loss or suspension. Please read Be Nice: "Avoid vulgar terms and anything sexually suggestive"
– DavidPostill♦
Nov 30 '16 at 16:26