This script will help you to list all facebook videos that were loaded during your session
< 腳本Facebook Videos Detector (Generates ffmpeg download command)的回應
this bug has been fixed, and the video you mentioned https://www.facebook.com/isuog.org/videos/1784126515459557 is working perfectly now!
it is very useful script but it doesn't give links to videos without audio you can try on this video https://www.facebook.com/isuog.org/videos/1784126515459557 and it was giving errors in video muxing i added these 2 commands for ffmpeg -map 0:v:0 Maps the first video stream from the first input -map 1:a:0 Maps the first audio stream from the second input and it works well changed this in the script const downloadCommand = ["ffmpeg"]; downloadCommand.push("-i",
"${maxSource.url}"
); if (maxAudio) downloadCommand.push("-i","${maxAudio.url}"
); downloadCommand.push("-c:v", "copy", "-map 0:v:0", "-b:v", maxSource.bitrate); if (maxAudio) downloadCommand.push("-c:a", "copy", "-map 1:a:0", "-b:a", maxAudio.bitrate); downloadCommand.push(${videoId}.mp4
);