MKUltra wrote:Raptor399 thanx for the effort in creating the "soup-to-nuts" build script. What is the difference if I use the build script versus the svn checkout from the project hosting site?
Raptor399 wrote:it contains very old precompiled libraries and tools for OSX, compared to the same for Windows and Linux.
chocolateboy wrote:Ideally*, the same should also be done for ffmpeg.
private static final String KEY_FFMPEG_AC3_FIXED = "ffmpeg_ac3_fixed";
public boolean isFFMpegAc3Fixed() {
return configuration.getBoolean(KEY_FFMPEG_AC3_FIXED, Platform.isMac());
}protected String [] getDefaultArgs() {
return new String [] { "-vcodec", "mpeg2video", "-f", "vob", "-acodec", (PMS.getConfiguration().isFFMpegAc3Fixed ? "ac3_fixed" : "ac3") }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
}Raptor399 wrote:Note: web video will still get distorted and skewed audio if you use chocolateboy's PMSencoder plugin, because that still calls mencoder with "acodec=ac3" instead of "acodec=ac3_fixed".
init {
def acodec = $PMS.getConfiguration().isMencoderAc3Fixed() ? 'ac3_fixed' : 'ac3'
def threads = $PMS.getConfiguration().getMencoderMaxThreads()
$MENCODER = [
'MENCODER',
'-msglevel', 'all=2',
'-quiet',
'-prefer-ipv4',
'-oac', 'lavc',
'-of', 'lavf',
'-lavfopts', 'format=dvd',
'-ovc', 'lavc',
'-lavcopts', "vcodec=mpeg2video:vbitrate=4096:threads=${threads}:acodec=${acodec}:abitrate=128",
'-ofps', '25',
'-cache', '16384', // default cache size; default minimum percentage is 20%
'-vf', 'harddup'
]
}
The patch is to use the older buildsMKUltra wrote:Is there a patch for the ASS and VOBSUB subtitles that is broken in the newer MEncoder builds?
Return to Mac OS X Specific Support
Users browsing this forum: Bing [Bot] and 6 guests