Update resources.html
Browse files- resources.html +37 -3
resources.html
CHANGED
@@ -130,14 +130,48 @@
|
|
130 |
},
|
131 |
"copyright": {
|
132 |
title: "Copyright Resources",
|
133 |
-
html: `<strong>Understand Your Rights
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
},
|
135 |
"licensing": {
|
136 |
title: "Licensing Tools",
|
137 |
-
html: `<strong>Put Terms in Writing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
};
|
140 |
-
|
141 |
const categories = document.querySelectorAll('.resource-category');
|
142 |
const info = document.getElementById('resource-info');
|
143 |
|
|
|
130 |
},
|
131 |
"copyright": {
|
132 |
title: "Copyright Resources",
|
133 |
+
html: `<p><strong>Understand Your Rights</strong><br>
|
134 |
+
In many countries, your work is automatically protected the moment it’s created. But enforcement—especially against AI companies scraping images at scale—is a more difficult process.
|
135 |
+
</p>
|
136 |
+
<p>This section offers a starting point for understanding your legal footing and knowing where to go next.</p>
|
137 |
+
|
138 |
+
<ul>
|
139 |
+
<li><strong><a href="https://www.copyright.gov/registration/" target="_blank" rel="noopener noreferrer">Registering Your Copyright</a></strong><br>
|
140 |
+
In the U.S., registration through the U.S. Copyright Office gives you legal standing in court and potential access to statutory damages. Other countries offer similar systems.
|
141 |
+
</li>
|
142 |
+
<li><strong><a href="https://www.lumendatabase.org/" target="_blank" rel="noopener noreferrer">Submitting Takedown Notices</a></strong><br>
|
143 |
+
Platforms often respond to takedown requests filed under laws like the DMCA. The Lumen Database tracks these requests and offers guidance.
|
144 |
+
</li>
|
145 |
+
<li><strong><a href="https://www.law.cornell.edu/wex/fair_use" target="_blank" rel="noopener noreferrer">Fair Use & Derivative Work</a></strong><br>
|
146 |
+
The U.S. doctrine of fair use—and similar doctrines elsewhere—can be complicated. Learn the basics to assess how AI-generated derivatives might (or might not) infringe.
|
147 |
+
</li>
|
148 |
+
</ul>
|
149 |
+
|
150 |
+
<p>You won’t find legal advice here—but you will find links to public resources, artist coalitions, and legal organizations working on this issue.</p>
|
151 |
+
`
|
152 |
},
|
153 |
"licensing": {
|
154 |
title: "Licensing Tools",
|
155 |
+
html: `<p><strong>Put Terms in Writing</strong><br>
|
156 |
+
Licensing gives you a way to state your boundaries. Whether you want your work widely shared or strictly controlled, it's useful to communicate usage terms clearly and in writing.
|
157 |
+
</p>
|
158 |
+
|
159 |
+
<ul>
|
160 |
+
<li><strong><a href="https://noai.org" target="_blank" rel="noopener noreferrer">Creative Commons with "No AI" Clauses</a></strong><br>
|
161 |
+
Some artists are adapting Creative Commons licenses to include restrictions against AI training. Projects like NoAI.org are working to formalize this.
|
162 |
+
</li>
|
163 |
+
<li><strong>Custom Personal Licenses</strong><br>
|
164 |
+
Artists working with clients or collaborators often draft their own terms. These can explicitly limit AI-related use, resale, or reproduction.
|
165 |
+
</li>
|
166 |
+
<li><strong><a href="https://firstdonoharm.dev" target="_blank" rel="noopener noreferrer">Ethical & Anti-Exploitation Licenses</a></strong><br>
|
167 |
+
Licenses like the <em>Hippocratic License</em> and <a href="https://anticapitalist.software" target="_blank" rel="noopener noreferrer">ACSL</a> are being adapted for visual media. These support boundaries around ethical use and labor protection.
|
168 |
+
</li>
|
169 |
+
</ul>
|
170 |
+
|
171 |
+
<p>We encourage you to read through these public resources and choose what fits your work and your politics. You don’t need to be a lawyer to set limits.</p>`
|
172 |
}
|
173 |
};
|
174 |
+
|
175 |
const categories = document.querySelectorAll('.resource-category');
|
176 |
const info = document.getElementById('resource-info');
|
177 |
|