├── .gitignore ├── CREDITS ├── ChangeLog ├── EXPERIMENTAL ├── INSTALL ├── LICENSE ├── README ├── TODO ├── config.m4 ├── ffmpeg-php.c ├── ffmpeg-phpinfo.php ├── ffmpeg_errorhandler.c ├── ffmpeg_errorhandler.h ├── ffmpeg_frame.c ├── ffmpeg_frame.h ├── ffmpeg_movie.c ├── ffmpeg_movie.h ├── ffmpeg_tools.c ├── ffmpeg_tools.h ├── gd.h ├── gd_io.h ├── php_ffmpeg.h ├── run-tests.php ├── test_ffmpeg.php └── tests ├── .gitignore ├── getAudioBitRate.phpt ├── getAudioChannels.phpt ├── getAudioCodec.phpt ├── getAudioSampleRate.phpt ├── getAudioStreamId.phpt ├── getBitRate.phpt ├── getDuration.phpt ├── getFileName.phpt ├── getFrame.phpt ├── getFrameCount.phpt ├── getFrameHeight.phpt ├── getFrameNumber.phpt ├── getFrameRate.phpt ├── getFrameResampled.phpt ├── getFrameWidth.phpt ├── getFramesForward.phpt ├── getFramesForwardPassedEnd.phpt ├── getFramesInReverseOrder.phpt ├── getFramesNoArg.phpt ├── getID3Info.phpt ├── getNextKeyFrame.phpt ├── getPTS.phpt ├── getPixelAspectRatio.phpt ├── getPixelFormat.phpt ├── getVideoBitRate.phpt ├── getVideoCodec.phpt ├── getVideoStreamId.phpt ├── hasAudio.phpt ├── isKeyFrame.phpt ├── persistentMovie.phpt └── test_media ├── 16Hz-20kHz-Exp-1f-5sec.mp3 └── robot.avi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ChangeLog -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/EXPERIMENTAL -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/TODO -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/config.m4 -------------------------------------------------------------------------------- /ffmpeg-php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg-php.c -------------------------------------------------------------------------------- /ffmpeg-phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg-phpinfo.php -------------------------------------------------------------------------------- /ffmpeg_errorhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_errorhandler.c -------------------------------------------------------------------------------- /ffmpeg_errorhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_errorhandler.h -------------------------------------------------------------------------------- /ffmpeg_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_frame.c -------------------------------------------------------------------------------- /ffmpeg_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_frame.h -------------------------------------------------------------------------------- /ffmpeg_movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_movie.c -------------------------------------------------------------------------------- /ffmpeg_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_movie.h -------------------------------------------------------------------------------- /ffmpeg_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_tools.c -------------------------------------------------------------------------------- /ffmpeg_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/ffmpeg_tools.h -------------------------------------------------------------------------------- /gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/gd.h -------------------------------------------------------------------------------- /gd_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/gd_io.h -------------------------------------------------------------------------------- /php_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/php_ffmpeg.h -------------------------------------------------------------------------------- /run-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/run-tests.php -------------------------------------------------------------------------------- /test_ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/test_ffmpeg.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/getAudioBitRate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getAudioBitRate.phpt -------------------------------------------------------------------------------- /tests/getAudioChannels.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getAudioChannels.phpt -------------------------------------------------------------------------------- /tests/getAudioCodec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getAudioCodec.phpt -------------------------------------------------------------------------------- /tests/getAudioSampleRate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getAudioSampleRate.phpt -------------------------------------------------------------------------------- /tests/getAudioStreamId.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getAudioStreamId.phpt -------------------------------------------------------------------------------- /tests/getBitRate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getBitRate.phpt -------------------------------------------------------------------------------- /tests/getDuration.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getDuration.phpt -------------------------------------------------------------------------------- /tests/getFileName.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFileName.phpt -------------------------------------------------------------------------------- /tests/getFrame.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrame.phpt -------------------------------------------------------------------------------- /tests/getFrameCount.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameCount.phpt -------------------------------------------------------------------------------- /tests/getFrameHeight.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameHeight.phpt -------------------------------------------------------------------------------- /tests/getFrameNumber.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameNumber.phpt -------------------------------------------------------------------------------- /tests/getFrameRate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameRate.phpt -------------------------------------------------------------------------------- /tests/getFrameResampled.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameResampled.phpt -------------------------------------------------------------------------------- /tests/getFrameWidth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFrameWidth.phpt -------------------------------------------------------------------------------- /tests/getFramesForward.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFramesForward.phpt -------------------------------------------------------------------------------- /tests/getFramesForwardPassedEnd.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFramesForwardPassedEnd.phpt -------------------------------------------------------------------------------- /tests/getFramesInReverseOrder.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFramesInReverseOrder.phpt -------------------------------------------------------------------------------- /tests/getFramesNoArg.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getFramesNoArg.phpt -------------------------------------------------------------------------------- /tests/getID3Info.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getID3Info.phpt -------------------------------------------------------------------------------- /tests/getNextKeyFrame.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getNextKeyFrame.phpt -------------------------------------------------------------------------------- /tests/getPTS.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getPTS.phpt -------------------------------------------------------------------------------- /tests/getPixelAspectRatio.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getPixelAspectRatio.phpt -------------------------------------------------------------------------------- /tests/getPixelFormat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getPixelFormat.phpt -------------------------------------------------------------------------------- /tests/getVideoBitRate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getVideoBitRate.phpt -------------------------------------------------------------------------------- /tests/getVideoCodec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getVideoCodec.phpt -------------------------------------------------------------------------------- /tests/getVideoStreamId.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/getVideoStreamId.phpt -------------------------------------------------------------------------------- /tests/hasAudio.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/hasAudio.phpt -------------------------------------------------------------------------------- /tests/isKeyFrame.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/isKeyFrame.phpt -------------------------------------------------------------------------------- /tests/persistentMovie.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/persistentMovie.phpt -------------------------------------------------------------------------------- /tests/test_media/16Hz-20kHz-Exp-1f-5sec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/test_media/16Hz-20kHz-Exp-1f-5sec.mp3 -------------------------------------------------------------------------------- /tests/test_media/robot.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony2001/ffmpeg-php/HEAD/tests/test_media/robot.avi --------------------------------------------------------------------------------