Skip to content
Reid Ransom edited this page Aug 21, 2013 · 6 revisions

Here's a sample presets config ~/.encloader/presets.js file:

[
  {
    "name": "My Presets",
    "presets": [
      {
        "name": "720p h.264",
        "cmd": ["ffmbc", "-i", "{{infile}}", "-vcodec", "libx264", "-b", "3M", "-bf", "0", "-refs", "1", "-weightb", "0", "-8x8dct", "0", "-level", "30", "-acodec", "libfaac", "-ab", "128k", "-ac", "2", "-ar", "48k", "-aspect", "16:9", "-vf", "yadif,scale=1280:720", "-faststart", "auto", "{{outfile}}-720p-h264.mov"]
      },
      {
        "name": "DNxHD 220 -deinterlace",
        "cmd": ["ffmbc", "-i", "{{infile}}", "-vcodec", "dnxhd", "-vb", "220M", "-pix_fmt", "yuv422p", "-acodec", "pcm_s16le", "-ar", "48000", "-threads", "{{threads}}", "-vf", "yadif", "{{outfile}}-dnx220-deinterlace.mov"]
      },
      {
        "name": "OGV",
        "cmd": ["ffmbc", "-i", "{{infile}}", "-vcodec", "libtheora", "-vb", "1.5M", "-s", "640x360", "-acodec", "libvorbis", "-threads", "{{threads}}", "{{outfile}}-ogv.ogv"]
      }
    ]
  }
]

To use these presets, copy the text above, then in a terminal type the following commands:

$ mkdir ~/.encloader
$ pbpaste > ~/.encloader/presets.js

The next time you open up Encloader, you should see your new presets listed.

To create your own presets, edit the presets.js file with the following command:

$ open ~/.encloader/presets.js

For a full list of options, check out the following pages:

I also take requests - email [email protected].

Clone this wiki locally