It's not a problem but wanted to see if anyone knew of a possible workaround.
Adding -2 threads works great for processing coversion of videos with 2 cores. That only applies to converting to m4v files. When it's finished converting the m4v, it goes next to converting to webm file but it is only using 1 core for the coversion of webm file.
Is there a way I can get the webm conversion to use more than 1 core?
This is what I have:
$GLOBALS['aConvertTmpls'] = array(
"playX264" => $GLOBALS['sFfmpegPath'] . " -y -i #input# -b:v #bitrate#k -threads 2 -vcodec libx264 -s #size# #audio_options# #output#",
"play" => $GLOBALS['sFfmpegPath'] . " -y -i #input# -r 25 -b:v #bitrate#k -threads 2 -s #size# #audio_options# #output#",
"image" => $GLOBALS['sFfmpegPath'] . " -y -i #input# #size# -ss #second# -vframes 1 -an -f image2 #output#",