Commit cf907bb5 authored by Mark Harding's avatar Mark Harding

(fix): do not append with p for legacy support reasons

parent dfd245ab
No related merge requests found
Pipeline #102010088 failed with stages
in 2 minutes and 48 seconds
......@@ -25,5 +25,5 @@ class Webm_1080p extends AbstractTranscodeProfile
protected $proOnly = true;
/** @var string */
protected $storageName = '1080p.webm';
protected $storageName = '1080.webm';
}
......@@ -25,5 +25,5 @@ class Webm_360p extends AbstractTranscodeProfile
protected $proOnly = false;
/** @var string */
protected $storageName = '360p.webm';
protected $storageName = '360.webm';
}
......@@ -25,5 +25,5 @@ class Webm_720p extends AbstractTranscodeProfile
protected $proOnly = false;
/** @var string */
protected $storageName = '720p.webm';
protected $storageName = '720.webm';
}
......@@ -25,5 +25,5 @@ class X264_1080p extends AbstractTranscodeProfile
protected $proOnly = true;
/** @var string */
protected $storageName = '1080p.mp4';
protected $storageName = '1080.mp4';
}
......@@ -25,5 +25,5 @@ class X264_360p extends AbstractTranscodeProfile
protected $proOnly = false;
/** @var string */
protected $storageName = '360p.mp4';
protected $storageName = '360.mp4';
}
......@@ -25,5 +25,5 @@ class X264_720p extends AbstractTranscodeProfile
protected $proOnly = false;
/** @var string */
protected $storageName = '720p.mp4';
protected $storageName = '720.mp4';
}
Please register or to comment