-
Notifications
You must be signed in to change notification settings - Fork 1
/
Assignment 5.html
102 lines (95 loc) · 6.05 KB
/
Assignment 5.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Assignment 5</title>
<link rel="stylesheet" href="https://minicss.org/flavorFiles/mini-default.css">
<!-- <link rel="stylesheet" href="https://minicss.org/flavorFiles/mini-dark.css"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="sticky">
<a href="Assignment 5.html" class="logo">Assingment 5</a>
<button><a href="Assignment 5.html" style="text-decoration: none" target="_blank">Soundcloud</a></button>
<button><a href="Bitsong.html" style="text-decoration: none" target="_blank">Bitsong</a></button>
</header>
<h1>Soundcloud</h1>
<ul>
<li>Soundcloud is an online audio distribution platform and music sharing website. It allows people from all around the world to upload and promote their own music, create their own profiles, and develop and design their own online aesthetic. </li>
<br>
<img src="Soundcloud logo.png" alt="Soundcloud Logo" width="400"
height="160">
<br>
<li>Based out of Berlin, Germany, Soundcloud was launched in 2008, with a recorded 76 million registered users and 175 million monthly listeners as of March 2019. Since its initial launch, the music sharing platform has gone through a lot of changes and updates in order to remain as a competitor in the ever evolving music sharing/streaming industry.</li>
<br>
<li>Soundcloud was one of the first music distribution platforms to provide power to the people, with any person able to upload their own music, free of charge, which could then be streamed all around the world by other users. As a result, this quickly became extremely popular, launching the careers of many integral artists within the music scene now, such as, Chance The Rapper, Lil Uzi Vert, Kaytranada and Post Malone. </li>
<br>
<img src="chance.jpeg" alt="Chance The Rapper" width="250"
height="130">
<img src="Lil-Uzi-Header-Press.jpg" alt="Lil Uzi Vert" width="250"
height="130">
<img src="kaytra.jpg" alt="Kaytranada" width="250"
height="130">
<img src="post malone.jpg" alt="Post Malone" width="250"
height="130">
<br>
<li>With Soundcloud originating as a fairly underground source, and it’s demographic being a younger audience, it was able to revive and revamp genre’s such Hip-Hop and House and well as more Left-Field Electronic and Bass genres.</li>
<br>
<li>Like most other streaming services, usability is extremely easy, with users able to search up profiles, songs, artists or playlists, as well as receiving recommendations based on listener history. Anyone with the basic plan can like, comment and share tracks, which are saved on accounts.</li>
<br>
<li>Soundcloud also depicts audio tracks graphically as waveforms, allowing music to become more visual for listeners. As a result, listeners can click on the part of the waveform that they want to comment on, allowing timed comments for certain sections of a track.
<br>
<li>A variety of files such as M4A, MP3, WAV, FLAC, OGG, AIFF, etc are supported, however streaming quality is reduced to 64kbps. If songs have downloads enabled, users can download the song at the quality that it is uploaded as. Otherwise, a subscription to the new Soundcloud Pro Unlimited feature enables songs to be streamed at the highest quality available.
<br>
<li>The SoundCloud API is built with the design principles of REST in mind, exposing SoundCloud resources like tracks, sets and users which can be accessed and manipulated using the HTTP methods GET, POST, PUT and DELETE.
<li>This allows users to: Upload audio files, Update metadata, Share sounds to other Social Networks, Create sets and playlists, Add sounds to sets and playlists and Access sets.
<br>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<h2>Putting an emphasis on artist empowerment, Soundcloud offer a variety of plans in order to suit each artist/project.</h2>
<table>
<tr>
<th>Soundcloud Basic</th>
<th>Soundcloud Pro</th>
<th>Soundcloud Pro Unlimited</th>
</tr>
<tr>
<td>
<li>Free</li>
<li>3 hours of upload time</li>
<li>Basic stats (amount of plays, shares, comments)</li>
<li>Basic embed controls (enable free download, add descriptions, control over profile)</li>
</td>
<td>
<li>CA $7.50 per month</li>
<li>6 hours of upload time</li>
<li>Advanced stats (where listeners come from, amount of clicks)</li>
<li>Advanced embed controls (Linking to websites and other hyperlinks)</li>
<li>Spotlight (adding featured songs to your profile)</li>
<li>Access to Soundcloud Premier</li>
<li>Monetize unlimited tracks on SoundCloud</li>
<li>Distribute one release to all major music services)</li>
</td>
<td>
<li>CA $15 per month</li>
<li>All Soundcloud Pro features</li>
<li>Access to Soundcloud Go+ (normally an additional CA$9.99)</li>
<li>Mix the world’s largest catalog in select DJ Tools</li>
<li>Enjoy ad-free, high quality audio, offline listening</li>
</td>
</tr>
</ul>
</body>
</html>