A CloudFlare Stream Field for Django with admin integration.
Project description
Django Cloudflare Stream Field
This app provides integration with Cloudflare Stream, where you can upload directly to Cloudflare using TUS protocol.
Install the package
Add to requirements/base.txt
:
baseapp-cloudflare-stream-field @ git+https://github.com/silverlogic/baseapp-backend.git@v0.1#subdirectory=baseapp-cloudflare-stream-field
Add the following to your settings/base.py
:
# Cloudflare
CLOUDFLARE_ACCOUNT_ID = env("CLOUDFLARE_ACCOUNT_ID")
CLOUDFLARE_API_TOKEN = env("CLOUDFLARE_API_TOKEN")
CLOUDFLARE_AUTH_EMAIL = env("CLOUDFLARE_AUTH_EMAIL")
# Make sure to add the task routing for refresh_from_cloudflare and generate_download_url
CELERY_TASK_ROUTES = {
"baseapp_cloudflare_stream_field.tasks.refresh_from_cloudflare": {
"exchange": "default",
"routing_key": "default",
},
"baseapp_cloudflare_stream_field.tasks.generate_download_url": {
"exchange": "default",
"routing_key": "default",
},
}
This package offers the option to post-process the original video by trimming it to a predefined duration. This process creates a new trimmed video and then deletes the original one. To enable this behavior, you should add the following configurations:
CLOUDFLARE_VIDEO_MAX_DURATION_SECONDS = Integer number
CLOUDFLARE_VIDEO_AUTOMATIC_TRIM = True/False
If you set CLOUDFLARE_VIDEO_AUTOMATIC_TRIM = True
, you must also specify a value for CLOUDFLARE_VIDEO_MAX_DURATION_SECONDS
. This will trim the video to create a clip starting from the beginning and lasting up to your defined maximum duration. For example:
CLOUDFLARE_VIDEO_MAX_DURATION_SECONDS = 30
CLOUDFLARE_VIDEO_AUTOMATIC_TRIM = True
# Will create a new video from 0s to 30s
If CLOUDFLARE_VIDEO_AUTOMATIC_TRIM
is not set to True, the package will create a request to Cloudflare with the maxDurationSeconds parameter. This means that it will attempt to fail uploads where the video's duration exceeds the set value. However, this feature is not fully implemented yet, so its use is not recommended at this time. Contributions to enhance this feature in our package are welcome.
Include the URLs in your main urls.py
file:
re_path(r"^cloudflare-stream-upload/", include("baseapp_cloudflare_stream_field.urls")),
And if you use Django REST Framework, add the following to your router:
# Cloudflare Stream Upload
from baseapp_cloudflare_stream_field.rest_framework import CloudflareStreamUploadViewSet
router.register(
r"cloudflare-stream-upload", CloudflareStreamUploadViewSet, basename="cloudflare-stream-upload"
)
Allow CORS Headers
You need to add tus-resumable, upload-length, upload-metadata, upload-creator
to your CORS header. Add the following to settings/base.py
:
CORS_ALLOW_HEADERS = [
"accept",
"accept-encoding",
"authorization",
"content-type",
"dnt",
"origin",
"user-agent",
"x-csrftoken",
"x-requested-with",
"tus-resumable",
"upload-length",
"upload-metadata",
"upload-creator"
]
Usage
Import and use the field in your models file:
from baseapp_cloudflare_stream_field import CloudflareStreamField
class Post(models.Model):
video = CloudflareStreamField(null=True, blank=True, downloadable=False)
If you set downloadable
to True
it will automatically trigger a task to generate and save the download url at obj.video['meta']['download_url']
.
CloudflareStreamField
inherits from JSONField
so you can use any look it provides, like filter only for videos fully processed by Cloudflare:
Post.objects.filter(video__status__state="ready")
This package manages the video upload flow as follows:
- The client starts by creating a TUS (resumable upload protocol) request to your backend.
- Your server functions as a middleware, receiving this request and forwarding it to Cloudflare's endpoint.
- Upon receipt, Cloudflare provides a unique, one-time upload URL. TUS then manages the upload to this URL.
- Once the upload is complete, the client gets a response with the 'Stream-Media-ID' header, which contains a unique identifier for the video in Cloudflare.
- You then need to send this identifier (uid) back to your backend to create a new instance with the CloudflareStreamField. For example:
Example:
Model.objects.create(video=uid)
This step ensures that your server's records are updated and in sync with the video's status on Cloudflare.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file baseapp-cloudflare-stream-field-0.8.3.tar.gz
.
File metadata
- Download URL: baseapp-cloudflare-stream-field-0.8.3.tar.gz
- Upload date:
- Size: 140.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 021b8360d1016430c1bbdeb70e087863b4ffd1a6149c3b2458a79a4b81b24ca6 |
|
MD5 | 06486c2157eebc7ee8e45f70ea6a8835 |
|
BLAKE2b-256 | accac3f88d1132abc13d2045d35b089e6da45516917cf397515637c1264290bf |