We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Goal: Implement a feature allowing users to add additional attachment files to medias (subtitles, thumbnails...).
After #36
Attachments would allow user to upload additional content (e.g: preview images, subtitles...) for a particular media.
GET/POST/DELETE/PATCH /medias/:id/attachments/:key
MediaAttachment entity
uuid
media
key
filename
content_type
root/ <media_uuid>/ - playlist.m3u8 - source.m3u8 attachments/ - thumbnail.webp # generated video thumbnail - preview.webm # generated video preview
The text was updated successfully, but these errors were encountered:
sundowndev
No branches or pull requests
Goal: Implement a feature allowing users to add additional attachment files to medias (subtitles, thumbnails...).
After #36
Attachments would allow user to upload additional content (e.g: preview images, subtitles...) for a particular media.
Routes
GET/POST/DELETE/PATCH /medias/:id/attachments/:key
Manage media's attachmentsMediaAttachment entity
uuid
(uuid)media
(1:1 - Media)key
(string)filename
(string)content_type
(string)Directory structure
The text was updated successfully, but these errors were encountered: