Skip to content

Instantly share code, notes, and snippets.

@gre
Forked from playxamplez-admin/CODE
Last active December 20, 2015 01:59
Show Gist options
  • Save gre/6053242 to your computer and use it in GitHub Desktop.
Save gre/6053242 to your computer and use it in GitHub Desktop.
retrieve, process and re-encode a video with #PlayCLI and #Iteratees
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
val videoStream: Enumerator[Array[Byte]]
val scaleVideoHalf = CLI.pipe("ffmpeg -i pipe:0 -vf scale=iw/2:-1 -f avi pipe:1")
Ok.stream(videoStream &> scaleVideoHalf).withHeaders(CONTENT_TYPE -> "video/avi")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment