13 lines
926 B
TypeScript
13 lines
926 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_21 = VersionInfo.of({
|
|
version: '0.2.21:0',
|
|
releaseNotes: {
|
|
en_US: 'Hotfix for 0.2.20: ffmpeg chunking failed with "Unable to find a suitable output format for .../chunk_0.bin". The master audio file was being written as audio.bin (extension-less binary), so ffmpeg couldn\'t infer the output container/codec when splitting into chunks. The audio bytes themselves were always fine; only the file extension confused ffmpeg. Fixed by deriving an extension from the mimeType (audio/mpeg → mp3, audio/mp4 → m4a, etc.) so the master file and the chunk outputs have a format ffmpeg understands. Defaults to mp3 for unknown audio/* types since that\'s what yt-dlp + most podcast enclosures produce. All other chunking logic from 0.2.20 unchanged.',
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|