avfilters.reverse module

Contents

avfilters.reverse module#

reverse(src, dst)

Reverse a media.

Multimedia files reversing utilities.

reverse(src, dst)[source]#

Reverse a media.

Roughly equivalent to:

ffmpeg -i src -vf reverse -af areverse dst
Parameters:
  • src (str) – The path to the source file. The file must exist and be a valid media.

  • dst (str) – The path to the destination file. Any existing file will be overwritten.

Return type:

None