本文整理汇总了PHP中loader::get_temp方法的典型用法代码示例。如果您正苦于以下问题:PHP loader::get_temp方法的具体用法?PHP loader::get_temp怎么用?PHP loader::get_temp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类loader
的用法示例。
在下文中一共展示了loader::get_temp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct($params)
{
$file = 'console-' . date(@$params['log'] ?: 'Y-m-d') . '.log';
$this->_file = \loader::get_temp($file);
$this->_uid = substr(\functions::hash(microtime(true)), -5);
$this->_head();
}
示例2: convert_to_mp4
/**
* MP4 h264
*/
function convert_to_mp4($dst_file, $length = false, $dim = false)
{
$source = $this->source;
$tmp_file = loader::get_temp() . microtime(true) . '.mp4';
// -loop 1 -me hex -me_range 16
$options = "-vcodec libx264 -b 512k -flags +loop+mv4 -cmp 256 \\\n -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 \\\n -me_method hex -subq 7 -trellis 1 -refs 5 -bf 3 \\\n -flags2 +bpyramid+wpred+mixed_refs+dct8x8 -coder 1 -me_range 16 \\\n -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 10\\\n -qmax 51 -qdiff 4";
if (!empty($dim)) {
$options .= " -s {$dim[0]}x{$dim[1]}";
}
if (!empty($length)) {
$options .= " -t {$length}";
}
$this->set_params("-y -i \"{$source}\" -an -pass 1 -threads 2 {$options} \"{$tmp_file}\"");
$this->run();
// libmp3lame
$acodec = "-acodec libfaac -ar 44100 -ab 96k";
$this->set_params("-y -i \"{$source}\" {$acodec} -pass 2 -threads 2 {$options} \"{$tmp_file}\"");
$this->run();
$this->run_qt_faststart($tmp_file, $dst_file);
@unlink($tmp_file);
return true;
}