mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-24 14:08:00 +01:00
Switch aac codec to modern alternative
This prevents a buffer overrun that crashes ffmpeg.
This commit is contained in:
parent
80146696f3
commit
6e60aa55ca
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ class Track extends Model implements Searchable, Commentable, Favouritable
|
||||||
'tag_format' => 'AtomicParsley',
|
'tag_format' => 'AtomicParsley',
|
||||||
'tag_method' => 'updateTagsWithAtomicParsley',
|
'tag_method' => 'updateTagsWithAtomicParsley',
|
||||||
'mime_type' => 'audio/mp4',
|
'mime_type' => 'audio/mp4',
|
||||||
'command' => 'ffmpeg 2>&1 -y -i {$source} -map 0:a -map_metadata -1 -codec:a libfaac -ab 256k -f mp4 {$target}'
|
'command' => 'ffmpeg 2>&1 -y -i {$source} -map 0:a -map_metadata -1 -codec:a libfdk_aac -ab 256k -f mp4 {$target}'
|
||||||
],
|
],
|
||||||
'ALAC' => [
|
'ALAC' => [
|
||||||
'index' => 4,
|
'index' => 4,
|
||||||
|
|
Loading…
Reference in a new issue