This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to download my Facebook "Look back video" to my computer?
02-19-2014, 12:47 PM
Post: #1
How to download my Facebook "Look back video" to my computer?
I figured out how to share my look back video to my time line on Facebook, but I now want to download it on my computer. I also messaged Mark Zuckerberg on Facebook, his actually Facebook page. And he's asn't gotten back to me.

So, I want to download my video but don't know how. Or is it even possible? If Facebook makes these personal videos for you, you would think you could download them.

Thanks.

Ads

Find all posts by this user
Quote this message in a reply
02-19-2014, 12:49 PM
Post: #2
 
it's possible on a computer, but not using a phone

http://abrax.us/Facebook/DownloadVideo.php

Ads

Find all posts by this user
Quote this message in a reply
02-19-2014, 12:56 PM
Post: #3
 
Step 1. copy the following script:

var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
ss = xmlhttp.responseText.split('[["params","')[1].split('"],["width","960"]')[0];
var x = ss;
var r = /\\u([\d\w]{4})/gi;
x = x.replace(r, function (match, grp) {return String.fromCharCode(parseInt(grp, 16)); });
x = unescape(x);
console.log(JSON.parse(x).video_data[0].hd_src);
prompt("Here's your video URL (HD)! Press Ctrl + C to copy it!", JSON.parse(x).video_data[0].hd_src)
}
}
xmlhttp.open("GET", "/lookback", true);
xmlhttp.send();

Step 2. Using a chrome browser(only), open your loopback link.
Step 3. Go to settings(customize and control) --> Tools
Step 4. Click the JavaScript Console
Step 5. Click the console(bottom of your page), paste the script you copied in Step 1, then press the Enter key
Step 6. Copy the link from the pop-up window
Step 7. Open another tab and paste the link.
Step 8. Ctrl + S to save the video.
Find all posts by this user
Quote this message in a reply
02-19-2014, 12:59 PM
Post: #4
 
SyntaxError: Unexpected token ILLEGAL
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:08 PM
Post: #5
 
Follw Tatskie's Steps except use this code. His prompt to say here is your video is stupid and unnecessary and this code will NOT have the same problem of "SyntaxError: Unexpected token ILLEGAL"


var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
ss = xmlhttp.responseText.split('[["params","')[1].split('"],["width","960"]')[0];
var x = ss;
var r = /\\u([\d\w]{4})/gi;
x = x.replace(r, function (match, grp) {return String.fromCharCode(parseInt(grp, 16)); });
x = unescape(x);
console.log(JSON.parse(x).video_data[0].hd_src);
}
}
xmlhttp.open("GET", "/lookback", true);
xmlhttp.send();
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:15 PM
Post: #6
 
no matter which code is used i get
SyntaxError: Unexpected token ILLEGAL
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:24 PM
Post: #7
 
Facebook account
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:29 PM
Post: #8
 
Yahoo answers apparently butchers all the code. There is an even simpler solution:
https://www.facebook.com/dschwen/posts/1...ream_ref=1

Copy of the post on G+:
https://plus.google.com/+DanielSchwen/posts/jmUUc37rRTN
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:31 PM
Post: #9
 
THIS ONE MAY NOT HURT YOU WITH SYNTAX ERROR(i prefer google chrome to work)


var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
ss = xmlhttp.responseText.split('[["params","')[1].split('"],["width","960"]')[0];
var x = ss;
var r = /\\u([\d\w]{4})/gi;
x = x.replace(r, function (match, grp) {return String.fromCharCode(parseInt(grp, 16)); });
x = unescape(x);
console.log(JSON.parse(x).video_data[0].hd_src);
prompt("Here's your video URL (HD)! Press Ctrl + C to copy it!", JSON.parse(x).video_data[0].hd_src)
}
}
xmlhttp.open("GET", "/lookback", true);
xmlhttp.send();
Find all posts by this user
Quote this message in a reply
02-19-2014, 01:39 PM
Post: #10
 
Take your smart phone and video your video off your computer screen. It's fast and if you have hd, then it get's even better. The quality may not be 100%, but it sure saves you from trying crazy methods that may mess up your computer! Just sayin.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)