Просмотр файла vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Format/AudioInterface.php

Размер файла: 816B
  1. <?php
  2.  
  3. /*
  4. * This file is part of PHP-FFmpeg.
  5. *
  6. * (c) Alchemy <info@alchemy.fr>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace FFMpeg\Format;
  12.  
  13. interface AudioInterface extends FormatInterface
  14. {
  15. /**
  16. * Gets the audio kiloBitrate value.
  17. *
  18. * @return int
  19. */
  20. public function getAudioKiloBitrate();
  21.  
  22. /**
  23. * Gets the audio channels value.
  24. *
  25. * @return int
  26. */
  27. public function getAudioChannels();
  28.  
  29. /**
  30. * Returns the audio codec.
  31. *
  32. * @return string
  33. */
  34. public function getAudioCodec();
  35.  
  36. /**
  37. * Returns the list of available audio codecs for this format.
  38. *
  39. * @return array
  40. */
  41. public function getAvailableAudioCodecs();
  42. }