Spaces:
Running
Running
remove rumble from endpoint
Browse files- README.md +1 -0
- endpoints/__init__.py +0 -1
- server.py +0 -1
README.md
CHANGED
@@ -32,6 +32,7 @@ I kept seeing these videos on TikTok and I thought it would be fun to make a web
|
|
32 |
- **Basic**: a video with subtitles underneath
|
33 |
- **Subway Surfers**: a top and bottom video with subtitles for the bottom video and the top video is muted
|
34 |
- **Minecraft Reddit**: a background video with subtitles (provided by you) in the middle and the subtitles are spoken by a text-to-speech voice
|
|
|
35 |
|
36 |
## What technologies are used?
|
37 |
|
|
|
32 |
- **Basic**: a video with subtitles underneath
|
33 |
- **Subway Surfers**: a top and bottom video with subtitles for the bottom video and the top video is muted
|
34 |
- **Minecraft Reddit**: a background video with subtitles (provided by you) in the middle and the subtitles are spoken by a text-to-speech voice
|
35 |
+
- **Video Cutter**: a video with a specific part of the video cut out
|
36 |
|
37 |
## What technologies are used?
|
38 |
|
endpoints/__init__.py
CHANGED
@@ -3,5 +3,4 @@ from fastapi import APIRouter
|
|
3 |
from .subway import router as subway_router
|
4 |
from .minecraft import router as minecraft_router
|
5 |
from .basic import router as basic_router
|
6 |
-
from .rumble import router as rumble_router
|
7 |
from .video_editor_cut import router as video_editor
|
|
|
3 |
from .subway import router as subway_router
|
4 |
from .minecraft import router as minecraft_router
|
5 |
from .basic import router as basic_router
|
|
|
6 |
from .video_editor_cut import router as video_editor
|
server.py
CHANGED
@@ -16,7 +16,6 @@ app.add_middleware(
|
|
16 |
app.include_router(subway_router, prefix="/generate-subtitles")
|
17 |
app.include_router(minecraft_router, prefix="/generate-subtitles")
|
18 |
app.include_router(basic_router, prefix="/generate-subtitles")
|
19 |
-
app.include_router(rumble_router, prefix="/generate-subtitles")
|
20 |
app.include_router(video_editor, prefix="/video-editor")
|
21 |
|
22 |
if __name__ == "__main__":
|
|
|
16 |
app.include_router(subway_router, prefix="/generate-subtitles")
|
17 |
app.include_router(minecraft_router, prefix="/generate-subtitles")
|
18 |
app.include_router(basic_router, prefix="/generate-subtitles")
|
|
|
19 |
app.include_router(video_editor, prefix="/video-editor")
|
20 |
|
21 |
if __name__ == "__main__":
|