mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
38 lines
957 B
PHP
38 lines
957 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace Test\Preview;
|
|
|
|
/**
|
|
* Class MovieTest
|
|
*
|
|
* @group DB
|
|
*
|
|
* @package Test\Preview
|
|
*/
|
|
class MovieTest extends Provider {
|
|
protected function setUp(): void {
|
|
$avconvBinary = \OC_Helper::findBinaryPath('avconv');
|
|
$ffmpegBinary = ($avconvBinary) ? null : \OC_Helper::findBinaryPath('ffmpeg');
|
|
|
|
if ($avconvBinary || $ffmpegBinary) {
|
|
parent::setUp();
|
|
|
|
\OC\Preview\Movie::$avconvBinary = $avconvBinary;
|
|
\OC\Preview\Movie::$ffmpegBinary = $ffmpegBinary;
|
|
|
|
$fileName = 'testimage.mp4';
|
|
$this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName);
|
|
$this->width = 560;
|
|
$this->height = 320;
|
|
$this->provider = new \OC\Preview\Movie;
|
|
} else {
|
|
$this->markTestSkipped('No Movie provider present');
|
|
}
|
|
}
|
|
}
|