@ -1,3 +1,4 @@
instance/*
__pycache__/
tags
*.swp
@ -13,7 +13,7 @@ bp = Blueprint('file_listing', __name__)
class path_entry:
def __init__(self):
self.base_name = ''
self.rel_path = ''
self.rel_path = '' # NOTE: fs path relative to config['MOVIE_DIR']
self.file_extension = ''
self.is_dir = False
self.depth = 0
@ -0,0 +1,6 @@
#!/bin/python
import video_metadata
app = video_metadata.create_app()