Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
dmongeau committed Jul 13, 2011
1 parent 84fd0e8 commit 5af7b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FFMPEG =====================Use FFMPEG from PHP**Examples**Verify if this is a valid file > $ffmpeg = new FFMPEG('/path/to/your/video.mp4'); > echo $ffmpeg->isValid(); //true; > echo $ffmpeg->isVideo(); //true; > echo $ffmpeg->isAudio(); //false;
FFMPEG =====================Use FFMPEG from PHP**Examples**Verify if this is a valid file > $ffmpeg = new FFMPEG('/path/to/your/video.mp4'); > echo $ffmpeg->isValid(); //true; > echo $ffmpeg->isVideo(); //true; > echo $ffmpeg->isAudio(); //false; Get metadata> $ffmpeg = new FFMPEG('/path/to/your/video.mp4'); > $metadata = $ffmpeg->getMetadata();> echo $metadata['width']; // 1920> echo $metadata['height']; // 1080
Expand Down

0 comments on commit 5af7b4c

Please sign in to comment.