You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have a new install running inside PVE, I currently cannot watch videos after I uploaded them. It's a base install and the only change I made was to swap my MEDIA_ROOT folder to an NFS share (I have RWX permissions to the share) I also see the video and transcoded versions of ti on my server.
TEMP_DIRECTORY = "/tmp" # Don't use a temp directory inside BASE_DIR!!!
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = "/static/" # where js/css files are stored on the filesystem
MEDIA_URL = "/media/" # URL where static files are served from the server
STATIC_ROOT = BASE_DIR + "/static/"
# where uploaded + encoded media are stored
MEDIA_ROOT = "/mnt/media/media_files/"
#MEDIA_ROOT = BASE_DIR + "/media_files/"
# these used to be os.path.join(MEDIA_ROOT, "folder/") but update to
# Django 3.1.9 requires not absolute paths to be utilized...
MEDIA_UPLOAD_DIR = "original/"
MEDIA_ENCODING_DIR = "encoded/"
THUMBNAIL_UPLOAD_DIR = f"{MEDIA_UPLOAD_DIR}/thumbnails/"
SUBTITLES_UPLOAD_DIR = f"{MEDIA_UPLOAD_DIR}/subtitles/"
HLS_DIR = os.path.join(MEDIA_ROOT, "hls/")
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
i have a new install running inside PVE, I currently cannot watch videos after I uploaded them. It's a base install and the only change I made was to swap my MEDIA_ROOT folder to an NFS share (I have RWX permissions to the share) I also see the video and transcoded versions of ti on my server.
Beta Was this translation helpful? Give feedback.
All reactions