From: José Fonseca Date: Wed, 29 May 2013 22:40:44 +0000 (+0100) Subject: Mention both ffmpeg & libav. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=097f9c6cf19c8eec6f9bc93e82bad9235c7c827c;p=apitrace Mention both ffmpeg & libav. --- diff --git a/README.markdown b/README.markdown index e22527e..c6eced5 100644 --- a/README.markdown +++ b/README.markdown @@ -269,10 +269,15 @@ This works only on Unices, and it will truncate the traces due to performance limitations. -Recording a video with FFmpeg ------------------------------ +Recording a video with FFmpeg/Libav +----------------------------------- -You can make a video of the output by doing +You can make a video of the output with FFmpeg by doing + + apitrace dump-images -o - application.trace \ + | ffmpeg -r 30 -f image2pipe -vcodec ppm -i pipe: -vcodec mpeg4 -y output.mp4 + +or Libav (which replaces FFmpeg on recent Debian/Ubuntu distros) doing apitrace dump-images -o - application.trace \ | avconv -r 30 -f image2pipe -vcodec ppm -i - -vcodec mpeg4 -y output.mp4