Template:Decoding with Daala: Difference between revisions

From XiphWiki
Jump to navigation Jump to search
(Created page with "== Decoding/Playing a Video == Play the video in a window: ./examples/player_example video.ogv For information on the controls available while playing, run ./examples...")
 
 
Line 12: Line 12:


     ./examples/dump_video video.ogv -o decoded_video.y4m
     ./examples/dump_video video.ogv -o decoded_video.y4m
Or you can pipe the raw video stream directly to the player of your choice:
    ./examples/dump_video video.ogv | mpv -


Many other players can play back these .y4m files, and other tools can convert them to various other formats.
Many other players can play back these .y4m files, and other tools can convert them to various other formats.

Latest revision as of 21:06, 17 April 2015

Decoding/Playing a Video

Play the video in a window:

   ./examples/player_example video.ogv

For information on the controls available while playing, run

   ./examples/player_example --help

If you want to use a different player, you can decode the video back to .y4m with

   ./examples/dump_video video.ogv -o decoded_video.y4m

Or you can pipe the raw video stream directly to the player of your choice:

   ./examples/dump_video video.ogv | mpv -

Many other players can play back these .y4m files, and other tools can convert them to various other formats.