thumbnail of QmY7ERNC8vnAKyhDPAZWHGwB8fV4sDYkmgj7cf6wnd41tq
thumbnail of QmY7ERNC8vnAKyhDPAZWHGwB8fV4sDYkmgj7cf6wnd41tq
QmY7ERNC8vnAKyhDPAZWH...
(8.35 MB, 854x480 h264)
thumbnail of MLP: Friendship is Magic - Ponies are ravers. (Extended⧸Reworked) [4VtDVNvlB9Q].mp4
thumbnail of MLP: Friendship is Magic - Ponies are ravers. (Extended⧸Reworked) [4VtDVNvlB9Q].mp4
MLP: Friendship is... mp4
(14.67 MB, 640x360)
 >>/9491/
*kinda crazy that this has 46,215,274 views

> MLP_RavIsPrincess
> ipfs://bafybeigkjyoqebuoge2ucfmj543njgchugxpcvzetpnocqdqfffu2yr5d4
This is a PMV of part of "Rave Is King" by Fukkk Off. Not it - titled "Rave Is King ( Original Mix ) - Fukkk Off - 2010":
http://jemgkaq2xibfu37hm2xojsxoi7djtwb25w6krhl63lhn52xfzgeyc2ad.onion/watch?v=DXbASX1hWOI

At the end of that video it says "by TSL". Who's that? Whoogle Search v0.8.4:
. had no results:
.. "rave is king" pmv
.. "Fukkk Off" pmv
. "rave is Princess" = only one result, probably not it
. "Fukkk Off" mlp = links to https://captpackrat.livejournal.com/tag/mlp with desc.:
.. Ponies are ravers. //www.youtube.com/embed/4VtDVNvlB9Q?wmode=opaque. Current Music: Rave Is King (Le Castle Vania Remix) by Fukkk Off. Tags: cartoons, mlp, ...
... https://web.archive.org/web/20230608024154/https://youtube.com/watch?v=4VtDVNvlB9Q = private. Searched that URL at twitter.com = no results.

Maybe related (grasping at straws): https://yt.cdaut.de/playlist?list=PL63EF8BF2385257D1 . More related: https://captpackrat.livejournal.com/472362.html -> https://web.archive.org/web/20130625075557/https://www.youtube.com/embed/4VtDVNvlB9Q?wmode=opaque and https://web.archive.org/web/20140717150653/https://youtube.com/watch?v=4VtDVNvlB9Q ("MLP: Friendship is Magic - Ponies are ravers. (Extended/Reworked)" also attached).

 >>/9495/
Less-than-perfect loop to do that, probably works:
$ ls -1 | sort | xargs -d "\n" sh -c 'for args do f="$args"; n=$(stat --format=%s "$f"); \
multiple=$(( (n + 262144 - 1) / 262144 * 262144 )); diff=$(expr $multiple - $n); echo $n \
$multiple $diff; cat /dev/zero | head --bytes=$diff > tempzero.bin; cat "$f" "tempzero.bin" \
> pad$(date +%s.%N).bin; done' _; cat pad* > padded.mp3
How does cat sort files? Like this:
$ echo 1 > 1; echo 2 > 2; echo 10 > 10; echo a > a; echo b > b; echo c > c; cat * > cat.txt; cat cat.txt
[ 1 10 2 a b c ]
$ # https://www.gnu.org/software/coreutils/cat