Spaces:
Sleeping
Sleeping
孙振宇 commited on
Commit ·
90bab56
1
Parent(s): d3f7ab4
Add cleanmark.org branding and update app_port to 5344
Browse files
README.md
CHANGED
|
@@ -5,7 +5,7 @@ colorFrom: purple
|
|
| 5 |
colorTo: blue
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
-
app_port:
|
| 9 |
---
|
| 10 |
|
| 11 |
# SoraWatermarkCleaner
|
|
|
|
| 5 |
colorTo: blue
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
+
app_port: 5344
|
| 9 |
---
|
| 10 |
|
| 11 |
# SoraWatermarkCleaner
|
app.py
CHANGED
|
@@ -67,13 +67,32 @@ def main():
|
|
| 67 |
# unsafe_allow_html=True,
|
| 68 |
# )
|
| 69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
# Footer info
|
| 71 |
st.markdown(
|
| 72 |
"""
|
| 73 |
<div style='text-align: center; padding: 1rem 0; margin-top: 1rem;'>
|
| 74 |
<p style='color: #888; font-size: 0.9rem;'>
|
| 75 |
-
Built with ❤️ using Streamlit and AI |
|
| 76 |
-
<a href='https://
|
|
|
|
|
|
|
|
|
|
| 77 |
target='_blank' style='color: #667eea; text-decoration: none;'>
|
| 78 |
⭐ Star on GitHub
|
| 79 |
</a>
|
|
|
|
| 67 |
# unsafe_allow_html=True,
|
| 68 |
# )
|
| 69 |
|
| 70 |
+
# Promo banner
|
| 71 |
+
st.markdown(
|
| 72 |
+
"""
|
| 73 |
+
<div style='text-align: center; padding: 0.8rem 1rem; margin-top: 0.5rem;
|
| 74 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 75 |
+
border-radius: 10px; color: white;'>
|
| 76 |
+
<p style='margin: 0; font-size: 1rem;'>
|
| 77 |
+
🌐 Also try <strong><a href='https://cleanmark.org' target='_blank'
|
| 78 |
+
style='color: #fff; text-decoration: underline;'>CleanMark.org</a></strong>
|
| 79 |
+
— Free online tools to remove AI watermarks from images & videos (Gemini, Doubao, Sora)
|
| 80 |
+
</p>
|
| 81 |
+
</div>
|
| 82 |
+
""",
|
| 83 |
+
unsafe_allow_html=True,
|
| 84 |
+
)
|
| 85 |
+
|
| 86 |
# Footer info
|
| 87 |
st.markdown(
|
| 88 |
"""
|
| 89 |
<div style='text-align: center; padding: 1rem 0; margin-top: 1rem;'>
|
| 90 |
<p style='color: #888; font-size: 0.9rem;'>
|
| 91 |
+
Built with ❤️ using Streamlit and AI |
|
| 92 |
+
<a href='https://cleanmark.org' target='_blank' style='color: #667eea; text-decoration: none;'>
|
| 93 |
+
🌐 CleanMark.org
|
| 94 |
+
</a> |
|
| 95 |
+
<a href='https://github.com/sunzhenyu/CleanMark'
|
| 96 |
target='_blank' style='color: #667eea; text-decoration: none;'>
|
| 97 |
⭐ Star on GitHub
|
| 98 |
</a>
|