Home
last modified time | relevance | path

Searched refs:commandline (Results 1 – 15 of 15) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.metaflac.php118 $commandline .= ' --import-picture-from='.escapeshellarg($picturecommand);
120 $commandline .= ' '.escapeshellarg($this->filename).' 2>&1';
121 $metaflacError = `$commandline`;
136 …$commandline = 'metaflac --no-utf8-convert --remove-all-tags --import-tags-from='.escapeshellarg(…
138 $commandline .= ' --import-picture-from='.escapeshellarg($picturecommand);
140 $commandline .= ' '.escapeshellarg($this->filename).' 2>&1';
141 $metaflacError = `$commandline`;
179 $commandline = GETID3_HELPERAPPSDIR.'metaflac.exe --remove-all-tags "'.$this->filename.'" 2>&1';
180 $metaflacError = `$commandline`;
195 $commandline = 'metaflac --remove-all-tags "'.$this->filename.'" 2>&1';
[all …]
H A Dwrite.vorbiscomment.php90 …$commandline = GETID3_HELPERAPPSDIR.'vorbiscomment.exe -w --raw -c "'.$tempcommentsfilename.'" "'.…
91 $VorbiscommentError = `$commandline`;
105 … $commandline = 'vorbiscomment -w --raw -c "'.$tempcommentsfilename.'" "'.$this->filename.'" 2>&1';
106 $VorbiscommentError = `$commandline`;
H A Dmodule.audio.shorten.php134 …$commandline = GETID3_HELPERAPPSDIR.'shorten.exe -x "'.$info['filenamepath'].'" - | '.GETID3_HELPE…
135 $commandline = str_replace('/', '\\', $commandline);
147 …$commandline = (file_exists('/usr/local/bin/shorten') ? '/usr/local/bin/' : '' ) . 'shorten -x '.e…
151 $output = `$commandline`;
H A Dgetid3.php350 $commandline = 'dir /x '.escapeshellarg(implode(DIRECTORY_SEPARATOR, $path_so_far));
351 $dir_listing = `$commandline`;
1638 …$commandline = '"'.GETID3_HELPERAPPSDIR.'vorbiscomment.exe" -w -c "'.$empty.'" "'.$file.'" "'.$tem…
1639 $VorbisCommentError = `$commandline`;
1649 …$commandline = 'vorbiscomment -w -c '.escapeshellarg($empty).' '.escapeshellarg($file).' '.escapes…
1650 $VorbisCommentError = `$commandline`;
H A Dgetid3.lib.php1744 $commandline = 'for %I in ('.escapeshellarg($path).') do @echo %~zI';
1747 $commandline = 'ls -l '.escapeshellarg($path).' | awk \'{print $5}\'';
1749 if (isset($commandline)) {
1750 $output = trim(`$commandline`);
/plugin/photogallery/phpThumb/
H A Dphpthumb.class.php1506 static $commandline = null;
1509 $commandline = '';
1510 return $commandline;
1515 return $commandline;
1539 $commandline = '';
1568 $commandline = '';
1577 return $commandline;
1596 $commandline = (null !== $commandline ? $commandline : '');
1597 if ($commandline) {
1657 …$commandline = dirname($commandline).DIRECTORY_SEPARATOR.str_replace('convert', 'identify', basena…
[all …]
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php53 private $commandline; variable in Symfony\\Component\\Process\\Process
135 * @param string|array $commandline The command line to run
150 $this->commandline = $commandline;
284 if (\is_array($commandline = $this->commandline)) {
285 $commandline = implode(' ', array_map([$this, 'escapeArgument'], $commandline));
289 $commandline = 'exec '.$commandline;
311 $commandline = $this->prepareWindowsCommandLine($commandline, $env);
317 $commandline = '{ ('.$commandline.') <&3 3<&- 3>/dev/null & } 3<&0;';
937 …eturn \is_array($this->commandline) ? implode(' ', array_map([$this, 'escapeArgument'], $this->com…
947 public function setCommandLine($commandline) argument
[all …]
/plugin/combo/vendor/symfony/process/
H A DProcess.php56 private $commandline; variable in Symfony\\Component\\Process\\Process
149 $this->commandline = $command;
195 $process->commandline = $command;
315 if (\is_array($commandline = $this->commandline)) {
316 $commandline = implode(' ', array_map([$this, 'escapeArgument'], $commandline));
320 $commandline = 'exec '.$commandline;
323 $commandline
1634 replacePlaceholders(string $commandline, array $env) global() argument
[all...]
/plugin/jukebox/id3/
H A Dgetid3.lib.php532 …$commandline = GETID3_HELPERAPPSDIR.'md5sum.exe "'.str_replace('/', DIRECTORY_SEPARATOR, $file).'"…
533 if (ereg("^[\\]?([0-9a-f]{32})", strtolower(`$commandline`), $r)) {
568 if (ereg("^sha1=([0-9a-f]{40})", strtolower(`$commandline`), $r)) {
574 $commandline = 'sha1sum '.escapeshellarg($file).'';
575 if (ereg("^([0-9a-f]{40})[ \t\n\r]", strtolower(`$commandline`), $r)) {
626 $commandline .= GETID3_HELPERAPPSDIR.'tail.exe -c '.$size.' | ';
627 $commandline .= GETID3_HELPERAPPSDIR.$windows_call;
631 $commandline = 'head -c'.$end.' '.escapeshellarg($file).' | ';
632 $commandline .= 'tail -c'.$size.' | ';
633 $commandline .= $unix_call;
[all …]
H A Dgetid3.php1117 …$commandline = '"'.GETID3_HELPERAPPSDIR.'vorbiscomment.exe" -w -c "'.$empty.'" "'.$file.'" "'.$tem…
1118 $VorbisCommentError = `$commandline`;
1128 $commandline = 'vorbiscomment -w -c "'.$empty.'" "'.$file.'" "'.$temp.'" 2>&1';
1129 …$commandline = 'vorbiscomment -w -c '.escapeshellarg($empty).' '.escapeshellarg($file).' '.escapes…
1130 $VorbisCommentError = `$commandline`;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D322.phpt2 GH-322: group commandline option should override group/exclude setting in phpunit.xml
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md203 * Added `--no-extensions` commandline option to suppress loading of extensions (from configured ext…
210 * The `--log-json` commandline option has been deprecated
211 * The `--tap` and `--log-tap` commandline options have been deprecated
212 * The `--self-update` and `--self-upgrade` commandline options have been deprecated (PHAR binary on…
/plugin/sqlite/
H A DREADME13 can be done through commandline tools. Database files can be found in the data/meta directory.
/plugin/bibtex/OSBib/format/bibtexParse/
H A DCHANGELOG25 2/ Corrections to the example commandline code for PARSECREATORS.
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessTest.php1539 * @param string $commandline
1546 …private function getProcess($commandline, $cwd = null, array $env = null, $input = null, $timeout … argument
1548 $process = new Process($commandline, $cwd, $env, $input, $timeout);