- 001
- 002
- 003
- 004
- 005
- 006
- 007
- 008
- 009
- 010
- 011
- 012
- 013
- 014
- 015
- 016
- 017
- 018
- 019
- 020
- 021
- 022
- 023
- 024
- 025
- 026
- 027
- 028
- 029
- 030
- 031
- 032
- 033
- 034
- 035
- 036
- 037
- 038
- 039
- 040
- 041
- 042
- 043
- 044
- 045
- 046
- 047
- 048
- 049
- 050
- 051
- 052
- 053
- 054
- 055
- 056
- 057
- 058
- 059
- 060
- 061
- 062
- 063
- 064
- 065
- 066
- 067
- 068
- 069
- 070
- 071
- 072
- 073
- 074
- 075
- 076
- 077
- 078
- 079
- 080
- 081
- 082
- 083
- 084
- 085
- 086
- 087
- 088
- 089
- 090
- 091
- 092
- 093
- 094
- 095
- 096
- 097
- 098
- 099
- 100
protected function retrieveData($url) {
Yii::log('Retrieving Youtube video: '.$url);
$data = array(
'name'=>null,
'description'=>null,
'thumbnail'=>null,
'formats'=>array(),
);
//@TODO: вот это хак :@
$page = str_replace('\u0026', '&', @file_get_contents($url));
if ($page==FALSE)
throw new RuntimeException('Возникла ошибка во время получения данных от сервера. Возможно видео не существует.');
if (!preg_match('~\<meta property\="og\:title" content\="([^"]+)"\>~smu', $page, $temp)) {
Yii::log($page);
throw new RuntimeException('Возникла ошибка при обработке данных.');
}
$data['name'] = $temp[1];
if (!preg_match('~\<meta property\="og\:description" content\="([^"]+)"\>~smu', $page, $temp)) {
Yii::log($page);
throw new RuntimeException('Возникла ошибка при обработке данных.');
}
$data['description'] = $temp[1];
$data['thumbnail'] = 'http://i2.ytimg.com/vi/'.$this->id.'/default.jpg';
if (!preg_match('~"url_encoded_fmt_stream_map"\: "([^"]+)"~msu', $page, $links)) {
Yii::log($page);
throw new RuntimeException('Возникла ошибка при обработке данных.');
}
foreach (explode(',', $links[1]) as $format) {
parse_str($format, $format_data);
$data['formats'][$format_data['itag']] = $format_data;
}
return $data;
}
<?php
class EncoderCommand extends CConsoleCommand {
public function actionStart()
{
if (file_exists($this->getLockFile())) {
throw new RuntimeException('Encoder already started!');
return false;
}
if (!touch($this->getLockFile())) {
throw new RuntimeException('Can not create lock file '.$this->getLockFile());
return false;
}
Yii::setPathOfAlias('webroot', dirname(dirname(dirname(__FILE__))));
if (file_exists($this->getLogFile()))
unlink($this->getLogFile());
foreach (EncodingQueue::model()->findAll('phase != :lastPhase', array(':lastPhase' => EncodingQueue::ENCODED)) as $task) {
// exec('php '.Yii::getPathOfAlias('application').'/yiic.php encoder process '.$task->id, $output);
// echo implode(PHP_EOL, $output);
$this->process($task);
}
unlink($this->getLockFile());
}
public function process(EncodingQueue $task) {
// ещё не скачано
if ($task->phase < EncodingQueue::DOWNLOADED) {
$task->phase = EncodingQueue::DOWNLOADING;
$task->save();
if (!empty($task->remote_source_file) && !file_exists(Yii::getPathOfAlias('webroot').$task->source_file)) {
echo 'Downloading to '.$task->source_file.' ...'.PHP_EOL;
file_put_contents($this->getLogFile(), null);
$cmd = 'curl -o '.escapeshellarg(Yii::getPathOfAlias('webroot').$task->source_file).' '.escapeshellarg($task->remote_source_file).' 1>'.$this->getLogFile().' 2>&1 &';
exec($cmd, $output);
echo implode(PHP_EOL, $output);
$i = 0;
while (true) {
$c = file_get_contents($this->getLogFile());
$f = explode("\r", $c);
if (count($f) > 0) {
$s = trim($f[count($f) - 1]);
if (substr($c, -1) == "\n")
break;
sscanf($s, '%3d', $progress);
$task->progress = $progress;
$task->save();
echo '...'.$progress.'%'.PHP_EOL;
}
sleep(1);
ОТкопал старый сайт, который скачивал видео с ютуба и конвертировал в мобильные форматы видео.
Вот это хак)
Комментарии (0) RSS
Добавить комментарий