DEV Community

rahul d
rahul d

Posted on

models

Globalizing Productions with Netflix’s Media Production Suite

The journey from script to screen is full of challenges in the ever-evolving world of film and television. The industry has always innovated, and over the last decade, it started moving towards cloud-based workflows. However, unlocking cloud innovation and all its benefits on a global scale has proven to be difficult. The opportunity is clear: streamline complex media management logistics, eliminate tedious, non-creative task-based work and enable productions to focus on what matters most–creative storytelling. With these challenges in mind, Netflix
has developed a suite of tools by filmmakers for filmmakers: the Media Production Suite

What are we solving for?

  • Significant time and resources are devoted
  • workflows are fully digital
  • Moving media into the cloud introduces

The challenge of building a global technology to solve this

class Tag(models.Model):
    name = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=50, unique=True, blank=True)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def save(self, *args, **kwargs):
        if not self.slug:
            self.slug = slugify(self.name)  
        super().save(*args, **kwargs)

    def __str__(self):
        return self.name
Enter fullscreen mode Exit fullscreen mode

Top comments (0)