VideoHelp Forum
+ Reply to Thread
Results 1 to 16 of 16
Thread
  1. If you go to
    facebook.com/rrlech
    (any facebook account required)
    and scroll down quite a bit, you will see this picture. (see attachment 1.jpg).
    Then, the next post has a video and there is a comment to the video that contains a video. The video I want to download is this one. (see attachment 2.mp4). When I play this comment video in the Chrome browser, the url doesn't appear at the top of the screen, so I can't use youtube-dl. Also, chrome network developer tool doesn't seem to give me anything that will work with youtube-dl.
    I used Tubedigger to download the video. However, only one resolution is available and is low (432x258). But if you play the video in full screen in Chrome browser, you can see the video has much higher resolution. My question is, how can I download the video with higher resolution?
    Image Attached Thumbnails Click image for larger version

Name:	1.jpg
Views:	78
Size:	126.2 KB
ID:	61822  

    Image Attached Files
    • File Type: mp4 2.mp4 (1.04 MB, 33 views)
    Last edited by jimdagys; 15th Nov 2021 at 21:39.
    Quote Quote  
  2. Originally Posted by jimdagys View Post
    My question is, how can I download the video with higher resolution?
    By analyzing network tab, downloading the init, downloading the chunks, and finally concatenating them.
    https://we.tl/t-HiHt0mdCSy
    Quote Quote  
  3. [ss]vegeta:
    Thank you for your reply. I got the high resolution video from your upload and found it had no audio. So, using ffmpeg, I extracted the audio from the low resolution video from Tubedigger and, using ffmpeg, merged with your high resolution video. Perfect result.
    I have some questions about how you got the video. I used Chrome network tab and found this: (See screensho). I used yt-dlp to try to download some of these entries but had no luck. Could you post exactly what you did, (also, show me what is "downloading the init").
    In the below screenshot, I tried downloading with yt-dlp the whole highlighted script, and also just the part that ends in "mp4", but had no luck. I can guess that those entries (that start with numbers) are video chunks, but I was unsuccessful to download them. Also, once you downloaded all the chunks, did you use ffmpeg to combine? Also, since your video doesn't have audio, how would I get the audio if I tried to do this myself?
    Image Attached Thumbnails Click image for larger version

Name:	Clipboard01.jpg
Views:	109
Size:	236.2 KB
ID:	61830  

    Quote Quote  
  4. Originally Posted by jimdagys View Post
    it had no audio.
    Oops, I forgot about that, sorry. Glad you worked it out though.
    Originally Posted by jimdagys View Post
    Could you post exactly what you did, (also, show me what is "downloading the init").
    I downloaded the chunks using curl for Windows. By analyzing the video links, and their size
    Code:
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=1065&byteend=2355510
    
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=2355511&byteend=5361813
    
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=5361814&byteend=7548488
    especially at the end "bytestart" and "byteend" I figured out these 3 are the chunks for the best resolution.
    So, curl
    Code:
    curl "https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=1065&byteend=2355510" -o 1.mp4
    
    curl "https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=2355511&byteend=5361813" -o 2.mp4
    
    curl "https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=5361814&byteend=7548488" -o 3.mp4
    Now, the first part at the end says
    Code:
    bytestart=1065
    so we realize we are missing the init file, 0 to something. If we change the resoltion of the video, we see some parts loading up.
    The init file is usually small, around 1 kb. So this is it
    Code:
    curl "https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=0&byteend=960" -o init.mp4
    Originally Posted by jimdagys View Post
    Also, once you downloaded all the chunks, did you use ffmpeg to combine?
    No, I used type command in Windows.
    Code:
    type init.mp4 1.mp4 2.mp4 3.mp4 > video.mp4
    This is a lot of manual work, prolly can be done in a really easier way, maybe IDM as someone mentioned (I never got used to that program) but it's fun for me.
    Originally Posted by jimdagys View Post
    Also, since your video doesn't have audio, how would I get the audio if I tried to do this myself?
    Probably in a similar way. I would guess these are the links for the audio
    Image
    [Attachment 61831 - Click to enlarge]
    Quote Quote  
  5. yes maybe from network tab is the best way to download.
    anyway why complicate your life when IDM rip streaming in one shot audio+video at best resolution? (720p)

    Image
    [Attachment 61833 - Click to enlarge]
    Quote Quote  
  6. No need to merge ,You can simply remove the range
    Code:
    &bytestart=0&byteend=960
    Code:
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321...5f&oe=6193F5FA
    discord=notaghost9997
    Quote Quote  
  7. Originally Posted by notaghost View Post
    No need to merge ,You can simply remove the range
    Code:
    &bytestart=0&byteend=960
    Code:
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321...5f&oe=6193F5FA
    Nice, thanks.
    Quote Quote  
  8. or better, if you don't have IDM, we have a lot of online site that allow this.
    simply search "download video facebook"
    try this link: https://www.fdown.net/
    put video link and download it

    Image
    [Attachment 61834 - Click to enlarge]
    Quote Quote  
  9. Originally Posted by lomero View Post
    put video link and download it
    That was the problem with this video, there wasn't a simple "video link" because it was in a comment.
    Quote Quote  
  10. Originally Posted by jimdagys View Post
    I used Tubedigger to download the video. However, only one resolution is available and is low (432x258). But if you play the video in full screen in Chrome browser, you can see the video has much higher resolution. My question is, how can I download the video with higher resolution?
    Select highest resolution in Facebook player settings. Start to download all detected files. After some time put mouse over downloading filenames to see media information in tooltip and therefore check which file is video and which file is audio. Download these two files and rest files remove from downloading. Later join together these two downloaded audio and video files using option 'Join' in TubeDigger's converting dialog.
    Quote Quote  
  11. this is direct link:

    Code:
    https://video.fmxp10-1.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX_mjCsQ&_nc_ht=video.fmxp10-1.fna&oh=c5a17d3f39fc45889c60b0663b247857&oe=61944A5A
    Last edited by lomero; 16th Nov 2021 at 16:23.
    Quote Quote  
  12. Ok, I was able to get the 720p with audio following Mr Tubedigger's directions. Key point is to select highest resolution from gear icon in facebook video when playing the video in Tubedigger browser. Make sure the audio is sounding when playing the video in Tubedigger browser. Video and audio download separately and then easily combined with Tubedigger convert>join tool.
    Image Attached Thumbnails Click image for larger version

Name:	Clipboard03.jpg
Views:	64
Size:	127.1 KB
ID:	61863  

    Quote Quote  
  13. [ss]vegeta,
    I already got the high resolution download with Tubedigger, but I'm trying to "back engineer" what you did.
    For example you posted this (which seems to be the last chunk):
    Code:
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=5361814&byteend=7548488" -o 3.mp4
    I used Chrome network developer tools and played the high resolution facebook video and among lots of urls, got this (which looks similar to what you got):
    Code:
    https://video-ort2-1.xx.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&cb=3b11de2f-6a33e524&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NAeV9JomYg0AX-LhrOM&_nc_ht=video-ort2-1.xx&oh=f743a8eaac4c4e24c9eefbb1a5bd6446&oe=619660BA&bytestart=6715599&byteend=7548488
    I put this in yt-dlp and got an error message. But I notice the beginning of my code (https://video-ort2-1.xx.fbcdn.net/) is different than your code (https://video.fskp4-2.fna.fbcdn.net/).
    Can you explain why mine is different than yours? What method did you use to get your code?
    Also, you said you used curl to download. Why did you use curl? Would your code work with yt-dlp? (I'm used to using yt-dlp.)
    Quote Quote  
  14. Originally Posted by jimdagys View Post
    [ss]vegeta,
    I already got the high resolution download with Tubedigger, but I'm trying to "back engineer" what you did.
    For example you posted this (which seems to be the last chunk):
    Code:
    https://video.fskp4-2.fna.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=V3MFd_xiVLcAX-jimWp&_nc_ht=video.fskp4-2.fna&oh=33bf2bfc816b35b4526751d0c5e95c5f&oe=6193F5FA&bytestart=5361814&byteend=7548488" -o 3.mp4
    I used Chrome network developer tools and played the high resolution facebook video and among lots of urls, got this (which looks similar to what you got):
    Code:
    https://video-ort2-1.xx.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&cb=3b11de2f-6a33e524&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NAeV9JomYg0AX-LhrOM&_nc_ht=video-ort2-1.xx&oh=f743a8eaac4c4e24c9eefbb1a5bd6446&oe=619660BA&bytestart=6715599&byteend=7548488
    I put this in yt-dlp and got an error message. But I notice the beginning of my code (https://video-ort2-1.xx.fbcdn.net/) is different than your code (https://video.fskp4-2.fna.fbcdn.net/).
    Can you explain why mine is different than yours? What method did you use to get your code?
    Also, you said you used curl to download. Why did you use curl? Would your code work with yt-dlp? (I'm used to using yt-dlp.)
    Why are you still complicating stuff when notaghost told you an easier method, without chunks?
    You also made it work with Tubedigger.

    I guess ytdlp can't handle chunks like that, ytdlp is for other stuff.
    Why is the beginning of my URL different than yours, you'll have to ask Facebook. But it doesn't matter. I get the full video from YOUR link also, the way notaghost descirbed.
    I didn't use any method to get my code, just network tab in developer tools.
    I used curl because chunks like that can't be downloaded directly in the browser (or it's a browser problem, I don't know) and curl is like the tool with best reputation for data transfers.
    The code will not work with ytdlp.
    Quote Quote  
  15. Ok, I was able to download the high resolution video with audio.
    I downloaded curl 32 bit for my computer.
    (https://curl.se/windows/)
    and placed the unzipped folder directly on the C drive.
    I had to cut off the range at the end of the urls for both video and audio (as shown by Notaghost above post #7).
    Code:
    curl "https://video-atl3-2.xx.fbcdn.net/v/t42.27313-2/242515454_208544257885778_4146127321778027725_n.mp4?_nc_cat=101&cb=3b11de2f-6a33e524&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2VuM2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYWdfMl92aWRlbyJ9&_nc_ohc=NAeV9JomYg0AX_FDMah&_nc_ht=video-atl3-2.xx&oh=7102921d28b2d59282205e6369ab5dca&oe=6197178A" -o video.mp4
    Code:
    curl "https://video-atl3-2.xx.fbcdn.net/v/t42.1790-2/242624831_158539213113393_2637207206674934860_n.mp4?_nc_cat=101&cb=3b11de2f-376af0b8&ccb=1-5&_nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVkaW9fYWFjcF82NF9mcmFnXzJfYXVkaW8ifQ%3D%3D&_nc_ohc=WkNf-1JJa3cAX_WzcSO&_nc_ht=video-atl3-2.xx&oh=cd7b8ff8c0098302c91c69f43a76520b&oe=61971B1B" -o audio.mp4
    I used ffmpeg to combine video/audio.
    ffmpeg -i video.mp4 -i audio.mp4 -c copy output.mp4
    To make it easier so I didn't have to sort through a lot of urls from facebook on the chrome network developer tool, I first scrolled down on the facebook page to just before the video that I wanted, and then started the network tool.

    Command output:

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.

    C:\Users\John>cd..

    C:\Users>cd..

    C:\>cd..

    C:\>cd curl

    C:\curl>cd bin

    C:\curl\bin>curl "https://video-atl3-2.xx.fbcdn.net/v/t42.27313-2/242515454_2085
    44257885778_4146127321778027725_n.mp4?_nc_cat=101& cb=3b11de2f-6a33e524&ccb=1-5&_
    nc_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfZ2Vu M2Jhc2ljXzVzZWNnb3BfaHEyX2ZyYW
    dfMl92aWRlbyJ9&_nc_ohc=NAeV9JomYg0AX_FDMah&_nc_ht= video-atl3-2.xx&oh=7102921d28b
    2d59282205e6369ab5dca&oe=6197178A" -o video.mp4
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    100 7371k 100 7371k 0 0 1578k 0 0:00:04 0:00:04 --:--:-- 1579k

    C:\curl\bin>curl "https://video-atl3-2.xx.fbcdn.net/v/t42.1790-2/242624831_15853
    9213113393_2637207206674934860_n.mp4?_nc_cat=101&c b=3b11de2f-376af0b8&ccb=1-5&_n
    c_sid=5aebc0&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfYXVka W9fYWFjcF82NF9mcmFnXzJfYXVkaW8
    ifQ%3D%3D&_nc_ohc=WkNf-1JJa3cAX_WzcSO&_nc_ht=video-atl3-2.xx&oh=cd7b8ff8c0098302
    c91c69f43a76520b&oe=61971B1B" -o audio.mp4
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    100 227k 100 227k 0 0 98127 0 0:00:02 0:00:02 --:--:-- 98267
    Last edited by jimdagys; 18th Nov 2021 at 20:49.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!