View file vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/AdvancedMedia/ComplexFilterInterface.php

File size: 350B
  1. <?php
  2.  
  3. namespace FFMpeg\Filters\AdvancedMedia;
  4.  
  5. /**
  6. * A filter that is completely ready to use inside "-filter_complex" option.
  7. */
  8. interface ComplexFilterInterface extends ComplexCompatibleFilter
  9. {
  10. /**
  11. * @return string
  12. */
  13. public function getInLabels();
  14.  
  15. /**
  16. * @return string
  17. */
  18. public function getOutLabels();
  19. }