- Joined
- Jan 1, 2020
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$ MP4Box -split-size 100000 BigFile.mp4
Using -ss as input option together with -c:v copy might not be accurate since ffmpeg is forced to only use/split on i-frames. Though it will—if possible—adjust the start time of the stream to a negative value to compensate for that. Basically, if you specify "second 157" and there is no key frame until second 159, it will include two seconds of audio (with no video) at the start, then will start from the first key frame. So be careful when splitting and doing codec copy.
I post to archive.org which doesn't usually take videos down (and automatically makes a torrent). If it's really important (ex. Christchurch shooting) ask Null to make a torrent or make it yourselfI just want to ask what I should do his the video that I wanna put in my post is too big for the player on kw?
You could turn it into a webm with ffmpeg which would lower the sizeI just want to ask what I should do his the video that I wanna put in my post is too big for the player on kw?
function ytdl
{
if [[ $1 == "mp3" ]];
then
youtube-dl --extract-audio --audio-format mp3 --audio-quality 128K -f m4a $2
elif [[ $1 == "m4a" ]];
then
youtube-dl -f m4a $2
elif [[ $1 == "jpg" ]];
then
youtube-dl --write-thumbnail --skip-download $2
elif [[ $1 == "-F" ]];
then
youtube-dl -F $2 | grep mp4
else
youtube-dl --embed-thumbnail -f "bestvideo[height<=${1}][ext=mp4]+bestaudio[ext=m4a]/best[height<=${1}][ext=mp4]" "${2}" "-o%(title)s-%(id)s-%(height)sp.%(ext)s"
fi
}
ytdl [mp3|m4a|jpg] url
to get mp3, m4a or a jpg thumbnail orytdl resolution url
to get video <= resolution as an mp4. E.gytdl 360 url
for 360p video orytdl 720 url
for 720pfunction ytdl
{
case $1 in
mp3)
youtube-dl --extract-audio --audio-format mp3 --audio-quality 128K -f m4a $2
;;
aac)
youtube-dl --extract-audio --audio-format aac -f m4a $2
;;
m4a)
youtube-dl -f m4a $2
;;
jpg)
youtube-dl --write-thumbnail --skip-download $2
;;
-F)
youtube-dl -F $2 | grep mp4
;;
*)
youtube-dl --embed-thumbnail -f "bestvideo[height<=${1}][ext=mp4]+bestaudio[ext=m4a]/best[height<=${1}][ext=mp4]" "${2}" "-o%(title)s-%(id)s-%(height)sp.%(ext)s"
;;
esac
}
$ ytdl -F https://www.youtube.com/watch?v=ZZWMxwcFZOc
140 m4a audio only tiny 130k , m4a_dash container, mp4a.40.2@128k (44100Hz), 7.28MiB
160 mp4 256x144 144p 111k , avc1.4d400c, 30fps, video only, 3.91MiB
133 mp4 426x240 240p 245k , avc1.4d4015, 30fps, video only, 8.20MiB
134 mp4 640x360 360p 516k , avc1.4d401e, 30fps, video only, 15.27MiB
135 mp4 854x480 480p 805k , avc1.4d401f, 30fps, video only, 24.67MiB
136 mp4 1280x720 720p 1196k , avc1.4d401f, 30fps, video only, 45.16MiB
298 mp4 1280x720 720p60 3473k , avc1.4d4020, 60fps, video only, 136.98MiB
137 mp4 1920x1080 1080p 4332k , avc1.640028, 30fps, video only, 137.90MiB
299 mp4 1920x1080 1080p60 6890k , avc1.64002a, 60fps, video only, 258.01MiB
18 mp4 640x360 360p 638k , avc1.42001E, 30fps, mp4a.40.2@ 96k (44100Hz), 35.88MiB
22 mp4 1280x720 720p 932k , avc1.64001F, 30fps, mp4a.40.2@192k (44100Hz) (best)
ytdl 720 https://www.youtube.com/watch?v=ZZWMxwcFZOc
function ytdl
{
case $1 in
mp3)
youtube-dl --extract-audio --audio-format mp3 --audio-quality 128K -f m4a $2
;;
aac)
youtube-dl --extract-audio --audio-format aac -f m4a $2
;;
m4a)
youtube-dl -f m4a $2
;;
jpg)
youtube-dl --write-thumbnail --skip-download $2
;;
-F)
youtube-dl -F $2 | grep mp4
;;
*)
youtube-dl --embed-thumbnail -f "bestvideo[height<=${1}][fps<60][ext=mp4]+bestaudio[ext=m4a]/best[height<=${1}][ext=mp4][fps<60]" "${2}" "-o%(title)s-%(id)s-%(height)sp.%(ext)s"
;;
esac
}
$ ytdl 1080 https://www.bitchute.com/video/mSfD78emB7CQ/
[BitChute] mSfD78emB7CQ: Downloading webpage
[BitChute] mSfD78emB7CQ: Checking video URL
ERROR: requested format not available
$ youtube-dl -F https://www.bitchute.com/video/mSfD78emB7CQ/
[BitChute] mSfD78emB7CQ: Downloading webpage
[BitChute] mSfD78emB7CQ: Checking video URL
[info] Available formats for mSfD78emB7CQ:
format code extension resolution note
0 mp4 unknown
Formats for which the value is not known are excluded unless you put a question mark (?) after the operator. You can combine format filters, so -f "[height <=? 720][tbr>500]" selects up to 720p videos (or videos where the height is not known) with a bitrate of at least 500 KBit/s.
function ytdl
{
case $1 in
mp3)
youtube-dl --extract-audio --audio-format mp3 --audio-quality 128K -f m4a $2
;;
aac)
youtube-dl --extract-audio --audio-format aac -f m4a $2
;;
m4a)
youtube-dl -f m4a $2
;;
jpg)
youtube-dl --write-thumbnail --skip-download $2
;;
-F)
youtube-dl -F $2 | grep mp4
;;
*)
youtube-dl --embed-thumbnail -f "bestvideo[height<=?${1}][fps<?60][ext=mp4]+bestaudio[ext=m4a]/best[height<=?${1}][ext=mp4][fps<?60]" "${2}" "-o%(title)s-%(id)s-%(height)sp.%(ext)s"
;;
esac
}
$ ytdl 1080 https://www.bitchute.com/video/mSfD78emB7CQ/
[BitChute] mSfD78emB7CQ: Downloading webpage
[BitChute] mSfD78emB7CQ: Checking video URL
[BitChute] mSfD78emB7CQ: Downloading thumbnail ...
[BitChute] mSfD78emB7CQ: Writing thumbnail to: Ethan Who-mSfD78emB7CQ-NAp.jpg
[download] Destination: Ethan Who-mSfD78emB7CQ-NAp.mp4
[download] 100% of 48.77MiB in 00:09
[atomicparsley] Adding thumbnail to "Ethan Who-mSfD78emB7CQ-NAp.mp4"
Dumb question, but is there something wrong with using the archive dot today url?
no, not that, but it seems like there's an autofilter to change it from archive(.)today to archive.md if you write it hereDo you use brave? Archive recently had a slapfight with brave browser over some monetization fuckery, it was very recently fixed.
I'm running into an error trying to upload a video. The video is in MP4 format and the file size is 150mb. Can someone tell me what I'm doing wrong? Sorry for my n00bery, y'all!
100mb is the limit. Either try reprocessing it in a lower resolution or split it in half and render it as two videos.
Looks like the domain for this workaround has been bought out and it no longer works.in url just replace www.in with web.
exmple:
https://www.instagram.com/p/BtG2MIhntOT/
https://web.stagram.com/p/BtG2MIhntOT
and archive that link
http://archive.md/1ZEK6
Archive.today doesn't work anymore with profile pages, only individual image pages. The best you can do is archive instagram frontend mirrors like this (https://archive.vn/kIDob) and it wont archive every single image on said profile.Looks like the domain for this workaround has been bought out and it no longer works.
Does anyone have a good way to archive an entire instagram page (aside from a massive screenshot)? I don't need the comments, just want to capture the entire page.
I was just reading that post on the FAQ, you just saved me from searching for any more information on there. Thanks again, @BlancoMailo . You da real MVP.archive.md doesn't work anymore with profile pages, only individual image pages. The best you can do is archive instagram frontend mirrors like this (https://archive.vn/kIDob) and it wont archive every single image on said profile.