bug in 'cutout' transformation

This page summarizes the projects mentioned and recommended in the original post on /r/moviepy

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • moviepy

    Video editing with Python

  • For those of you who will try to figure this out, I have a couple notes. First, this doesn’t appear to be the only bug in cutout. If one tries to cut out X length of video, then the new rendered video will have X length of audio removed from the end. In other words, if I remove 3 seconds of film somewhere in the media, the resulting movie will have 3 seconds of silence at the end, although the video at the end is still intact. Thankfully, this can be fixed by going into the moviepy library, into “decorators”, and on line 43 under “def apply_to_audio(f, clip, *a, **k):”, change it from “newclip.audio = f(newclip.audio, *a, **k)” to “newclip.audio = f(clip.audio, *a, **k)”. By the way, I didn’t come up with this fix, these guys did.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts