Skip to content

Commit

Permalink
add licensing terms.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaylies committed May 10, 2024
1 parent 9181b86 commit 1481dfc
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permalink: pretty
relative_permalinks: false

# Setup
title: John Victor Baylies
title: John Baylies
tagline: freelance musician & audio technician
url: https://www.sousastep.quest
paginate: 1
Expand Down Expand Up @@ -39,7 +39,7 @@ sass:

# About/contact
author:
name: John Victor Baylies
name: John Baylies
url: https://www.instagram.com/sousasteps/
email:

Expand Down
87 changes: 87 additions & 0 deletions terms.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
layout: page
title: Terms for Sampling
---

Sousastep's loops are not royalty free.

By sampling, you agree to the following terms:

- Listed as co-producer where applicable

- 25% publishing & distribution on any song independently released through streaming platforms

- If the song uploaded to streaming services is JUST instrumental, the splits are 50%

- If placed with an artist on a major label, must reach out below.

- 50/50 splits on beats sold to artists using these loops (inform artist of terms)

- If a loop is used as the entire/majority instrumental of a song, the split for distribution would be 50%

Do not add Sousastep as a primary artist or featured artist when uploading to streaming platforms

You do not have right to claim copyright on any of these samples, these are for non-exclusive use.

If you would like to use the music for anything outside of music release(game, tv, app, etc) please reach out below.

Anything NON PROFIT like non monetized YouTube/content/online games can sample freely.

Contact for more info:

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>

<form id="my-form" action="https://formspree.io/f/mjvnzgjr" method="POST">
<label>Email:</label>
<input type="email" name="email" />
<label>Message:</label>
<input type="text" name="message" />
<button id="my-form-button">Submit</button>
<p id="my-form-status"></p>
</form>
<br>
<br>
<br>
<br>
These terms are inspired by <a href="https://linktr.ee/rjpasin">@rjpasin</a>
</body>

<script>
var form = document.getElementById("my-form");

async function handleSubmit(event) {
event.preventDefault();
var status = document.getElementById("my-form-status");
var data = new FormData(event.target);
fetch(event.target.action, {
method: form.method,
body: data,
headers: {
'Accept': 'application/json'
}
}).then(response => {
if (response.ok) {
status.innerHTML = "Thanks for your submission!";
form.reset()
} else {
response.json().then(data => {
if (Object.hasOwn(data, 'errors')) {
status.innerHTML = data["errors"].map(error => error["message"]).join(", ")
} else {
status.innerHTML = "Oops! There was a problem submitting your form"
}
})
}
}).catch(error => {
status.innerHTML = "Oops! There was a problem submitting your form"
});
}
form.addEventListener("submit", handleSubmit)
</script>

</html>

0 comments on commit 1481dfc

Please sign in to comment.