Greasy Fork is available in English.

Facebook Videos Detector (Generates ffmpeg download command)

This script will help you to list all facebook videos that were loaded during your session

< 脚本Facebook Videos Detector (Generates ffmpeg download command)的反馈

评价:好评 - 脚本运行良好

§
发表于:2024-11-11
编辑于:2024-11-11

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);

§
发表于:2024-11-30

Thanks Yusuf,

this bug has been fixed, and the video you mentioned https://www.facebook.com/isuog.org/videos/1784126515459557 is working perfectly now!

发表回复

登录以发表回复。