blob: 693be41394b6ace71a916f9a40e964ed9aa7427a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import { VirtualTextFile } from "$/apps/source";
import { Hr } from "../hr";
import { Link } from "../link";
export default {
name: "Content.txt",
type: "text",
content: (
<>
<h1>Content</h1>
<h3>Description</h3>
<p>This track is what it feels like to doomscroll until your brain turns into slime. Considering I might be consuming too much content, it’s ironic I made more.</p>
<Hr/>
<h2>Sound design</h2>
<p>I’ve always sampled other songs in my music, but really wanted to challenge myself with this one. This song is created <strong>entirely</strong> using snippets from other music, except the drums. In the end I think I sampled around 30 tracks to make this. Heavily inspired by <Link link="https://nitter.net/notzeroth/status/1911808244407730629" type="link">zeroth’s sample away the world.</Link></p>
<blockquote>
<p>sample anything and everything in life <Link link="https://nitter.net/pic/video.twimg.com%2Famplify_video%2F1911808027612585985%2Fvid%2Favc1%2F720x720%2FwUMfwq3x1GAO_v9m.mp4?tag=14" type="link">pic.twitter.com/cf9bGzIPFs</Link></p>
</blockquote>
<p class="credit">zeroth (@notzeroth) <Link link="https://nitter.net/notzeroth/status/1911808244407730629" type="link">April 14, 2025</Link></p>
<Hr/>
<h2>Graphics</h2>
<p>For the music video I simply recorded my screen while scrolling Bluesky and Pinterest, and occasionally layered the two together with random blend modes.</p>
<p>While uploading the video to YouTube I ran into an extremely infuriating issue, the video was considered a “Short” because it has a square aspect ratio and under 3 minutes long. So I had to export the video TWO pixels wider than usual to make it stop detecting as a short. The resolution ended up becoming 2162 x 2160 px. Cursed.</p>
<Link type="image" link="https://sunnexo.moe/music/netpunk/content but two pixels wider.png" />
<p>“AAA” is the test file that confirmed adding two pixels to the width of the video actually prevents it from turning into a short. Thanks YouTube, great feature not having the option to say whether a video should be put in front of people with zero attention span.</p>
<Link type="image" link="https://sunnexo.moe/music/netpunk/cat named finger.gif" />
<p>WRAHHGHGHHHGHGHGH HGHGHHHHH</p>
<p>Okay rant over, it took a little longer than I’d hoped re-rendering that but it’s all good now!!</p>
</>
),
height: "70vh",
width: "70vw",
} as VirtualTextFile;
|