Skip to content

Instantly share code, notes, and snippets.

@csparker247
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csparker247/e6e83471c501838baf76 to your computer and use it in GitHub Desktop.
Save csparker247/e6e83471c501838baf76 to your computer and use it in GitHub Desktop.
How to Optimize for Streaming for Plex Media Server
Plex Media Server pulls the Optimized for Streaming setting from the MOOV atom of the MP4/MOV itself. There are two good options for optimizing your media:
1) Use a program built to move the MOOV atom. I like qtfaststart: https://github.com/danielgtaylor/qtfaststart
2) Use ffmpeg:
ffmpeg -i "input.mp4" -map 0 -c copy -movflags faststart "output.mp4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment