mirror of
https://github.com/YunoHost-Apps/lychee_ynh.git
synced 2024-09-03 19:36:36 +02:00
Fix
This commit is contained in:
parent
f46df9ca36
commit
3f1facf3ec
3 changed files with 16 additions and 18 deletions
|
@ -1,17 +0,0 @@
|
|||
diff --git a/app/Actions/Photo/Extensions/VideoEditing.php b/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
index 1a96769..5842606 100644
|
||||
--- a/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
+++ b/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
@@ -45,7 +45,10 @@ trait VideoEditing
|
||||
/**
|
||||
* ! check if we can use path instead of this ugly thing.
|
||||
*/
|
||||
- $ffmpeg = FFMpeg::create();
|
||||
+ $ffmpeg = FFMpeg::create(array(
|
||||
+ 'ffmpeg.binaries' => '/usr/bin/ffmpeg',
|
||||
+ 'ffprobe.binaries' => '/usr/bin/ffprobe',
|
||||
+ ));
|
||||
/** @var Video */
|
||||
$video = $ffmpeg->open(Storage::path('big/' . $photo->url));
|
||||
if (!($tmp = tempnam(sys_get_temp_dir(), 'lychee')) ||
|
||||
|
|
@ -1,3 +1,19 @@
|
|||
diff --git a/app/Actions/Photo/Extensions/VideoEditing.php b/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
index 1a96769..5842606 100644
|
||||
--- a/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
+++ b/app/Actions/Photo/Extensions/VideoEditing.php
|
||||
@@ -45,7 +45,10 @@ trait VideoEditing
|
||||
/**
|
||||
* ! check if we can use path instead of this ugly thing.
|
||||
*/
|
||||
- $ffmpeg = FFMpeg::create();
|
||||
+ $ffmpeg = FFMpeg::create(array(
|
||||
+ 'ffmpeg.binaries' => '/usr/bin/ffmpeg',
|
||||
+ 'ffprobe.binaries' => '/usr/bin/ffprobe',
|
||||
+ ));
|
||||
/** @var Video */
|
||||
$video = $ffmpeg->open(Storage::path('big/' . $photo->url));
|
||||
if (!($tmp = tempnam(sys_get_temp_dir(), 'lychee')) ||
|
||||
diff --git a/vendor/lychee-org/php-exif/lib/PHPExif/Adapter/FFprobe.php b/vendor/lychee-org/php-exif/lib/PHPExif/Adapter/FFprobe.php
|
||||
index 9ececfe..106eadd 100644
|
||||
--- a/vendor/lychee-org/php-exif/lib/PHPExif/Adapter/FFprobe.php
|
||||
|
|
|
@ -137,7 +137,6 @@ pushd $final_path
|
|||
php$phpversion artisan config:clear -n
|
||||
php$phpversion artisan config:cache -n
|
||||
patch -p1 < "$YNH_CWD/../conf/ffprobe.patch"
|
||||
patch -p1 < "$YNH_CWD/../conf/ffmpeg.patch"
|
||||
popd
|
||||
|
||||
# Setup custom user.css file
|
||||
|
|
Loading…
Add table
Reference in a new issue