To save videos from certain streaming sites that are not supported by yt-dlp, I catch the M3U playlist used by the page and with that I use this script that gets ffmpeg to put together the pieces into a single file.
#!/bin/bash
if [ "$1" == "-h" ] || [ $# -lt 2 ]; then
echo Download a video from a playlist into a single file
echo usage: $(basename $0) PLAYLIST OUTPUT_VID
exit
fi
nbparts=$(grep ^[^#] $1 | wc -l)
echo -e "\e[38;5;202m Downloading" $(( nbparts - 1 )) "parts \e[00m"
time ffmpeg -hide_banner -allowed_extensions ALL -protocol_whitelist file,http,https,tcp,tls,crypto -i $1 -codec copy $2
By using our logic and from the experience of things around us we can say that it's impossible for something to come from nothingness. There is a consensus that the universe has a beginning which scientists call the Big Bang. But that cannot come out of itself, logic dictates that there is something which brought it about (energy/matter does not just compress itself into a singularity). Whatever that thing is or things if there is a chain of initiators/causes, must end with an initiator which is self-sufficient and which has not been caused by something else. Otherwise we go in an infinite regression of asking what caused that cause, and an infinite chain going backwards would mean the present never gets to happen, but we exist, and that is proof that the chain ends somewhere.
That's what is called the necessary being or the uncaused cause.
Now, by observing the universe we can surmise some characteristics that that cause must possess to bring it about, since it must possess them in at least an equal ammount. The enormous ammount of energy held in the universe shows that the initiator has immense power. The laws of the universe and its intricacies suggest that it must possess knowledge and wisdom etc.
So, an organization not affiliated to the government broke the law and that gives India the right to break treaties and start military aggressions against that government?
Mainline is the location where the original software has its source code. A fork is when someone decides they want to modify said software their own way and so they make a copy.