-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms-of-service.html
More file actions
109 lines (100 loc) · 3.62 KB
/
Copy pathterms-of-service.html
File metadata and controls
109 lines (100 loc) · 3.62 KB
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
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - Audio Stem Separator</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
}
h1, h2 {
color: #2c3e50;
}
h1 {
border-bottom: 2px solid #e74c3c;
padding-bottom: 10px;
}
.warning {
background-color: #f8d7da;
border-left: 4px solid #e74c3c;
padding: 15px;
margin: 20px 0;
}
section {
margin-bottom: 30px;
}
footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
text-align: center;
font-size: 0.9em;
color: #7f8c8d;
}
</style>
</head>
<body>
<header>
<h1>Terms of Service</h1>
<p><strong>Last Updated:</strong> May 29, 2025</p>
</header>
<div class="warning">
<strong>IMPORTANT:</strong> By using this service, you agree to only upload audio content that you own or have legal rights to process. Copyright infringement is strictly prohibited.
</div>
<section>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using the Audio Stem Separator ("Service"), you agree to be bound by these Terms of Service.</p>
</section>
<section>
<h2>2. Service Description</h2>
<p>The Service provides audio separation capabilities using the Demucs engine, allowing users to separate audio files into stems (vocals, drums, bass, etc.).</p>
</section>
<section>
<h2>3. User Responsibilities</h2>
<p>You agree:</p>
<ul>
<li>To only upload audio content that you own or have explicit permission to process</li>
<li>Not to upload copyrighted material without authorization</li>
<li>To comply with all applicable copyright laws</li>
<li>That you are solely responsible for any uploaded content</li>
</ul>
</section>
<section>
<h2>4. Copyright Policy</h2>
<p>We respect intellectual property rights. Users must ensure:</p>
<ul>
<li>All uploaded content is legally owned by them</li>
<li>No third-party copyrighted material is processed without authorization</li>
<li>Any copyright violations are solely the responsibility of the user</li>
</ul>
<p>We reserve the right to terminate service for users who violate copyright laws.</p>
</section>
<section>
<h2>5. Limitations</h2>
<p>The Service is provided "as is" without warranties of any kind. We are not responsible for:</p>
<ul>
<li>The quality of separation results</li>
<li>Loss of data during processing</li>
<li>Misuse of separated audio content</li>
<li>Copyright violations by users</li>
</ul>
</section>
<section>
<h2>6. Changes to Terms</h2>
<p>We may modify these Terms at any time. Continued use constitutes acceptance.</p>
</section>
<section>
<h2>7. Governing Law</h2>
<p>These Terms are governed by the laws of the State of California.</p>
</section>
<footer>
<p>© 2025 Audio Stem Separator | <a href="/">Home</a> | <a href="privacy-policy.html">Privacy Policy</a></p>
</footer>
</body>
</html>