Sudipta Nayak commited on
Commit
4fc145a
·
1 Parent(s): 5152137

video file changes

Browse files
Files changed (2) hide show
  1. app/main.py +0 -3
  2. app/templates/index.html +1 -1
app/main.py CHANGED
@@ -19,9 +19,6 @@ app = FastAPI(
19
  app.mount("/static", StaticFiles(directory="app/static"), name="static")
20
  templates = Jinja2Templates(directory="app/templates")
21
 
22
- class Item(BaseModel):
23
- file: UploadFile
24
-
25
 
26
  @app.get("/", response_class=HTMLResponse)
27
  async def root(request: Request):
 
19
  app.mount("/static", StaticFiles(directory="app/static"), name="static")
20
  templates = Jinja2Templates(directory="app/templates")
21
 
 
 
 
22
 
23
  @app.get("/", response_class=HTMLResponse)
24
  async def root(request: Request):
app/templates/index.html CHANGED
@@ -41,7 +41,7 @@
41
  <h1>Object Detection App</h1>
42
  <form action="/detect/" method="post" enctype="multipart/form-data" onsubmit="showLoading();">
43
  <label for="file">Upload an Image or Video :</label>
44
- <input type="file" id="file" name="file" accept=".jpg, .jpeg, .png, .mp4" required>
45
  <button type="submit">Detect</button>
46
  </form>
47
  <div id="loading">Loading...</div>
 
41
  <h1>Object Detection App</h1>
42
  <form action="/detect/" method="post" enctype="multipart/form-data" onsubmit="showLoading();">
43
  <label for="file">Upload an Image or Video :</label>
44
+ <input type="file" id="file" name="file" accept=".jpg, .jpeg, .png, .mp4, .mov" required>
45
  <button type="submit">Detect</button>
46
  </form>
47
  <div id="loading">Loading...</div>