當前位置: 首頁>>代碼示例>>PHP>>正文


PHP loader::get_temp方法代碼示例

本文整理匯總了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();
 }
開發者ID:egregor-dev,項目名稱:SatCMS,代碼行數:7,代碼來源:FileConsole.php

示例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;
 }
開發者ID:egregor-dev,項目名稱:SatCMS,代碼行數:25,代碼來源:video_conv.php


注:本文中的loader::get_temp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。