convert flacs to aac for streaming
This commit is contained in:
@@ -7,6 +7,9 @@ export const createMusicInputSchema = z.object({
|
||||
fileUrl: z.string(),
|
||||
fileKey: z.string(),
|
||||
fileName: z.string(),
|
||||
streamUrl: z.string().optional().nullable(),
|
||||
streamKey: z.string().optional().nullable(),
|
||||
streamName: z.string().optional().nullable(),
|
||||
})
|
||||
export const updateMusicInputSchema = z.object({
|
||||
id: z.string().uuid(),
|
||||
@@ -15,4 +18,14 @@ export const updateMusicInputSchema = z.object({
|
||||
fileUrl: z.string().optional(),
|
||||
fileKey: z.string().optional(),
|
||||
fileName: z.string().optional(),
|
||||
streamUrl: z.string().optional().nullable(),
|
||||
streamKey: z.string().optional().nullable(),
|
||||
streamName: z.string().optional().nullable(),
|
||||
})
|
||||
|
||||
export const setStreamInputSchema = z.object({
|
||||
id: z.string().uuid(),
|
||||
streamUrl: z.string(),
|
||||
streamKey: z.string(),
|
||||
streamName: z.string(),
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user