Add DASH MPD parsing and MP4 to FLAC conversion functionality

This commit is contained in:
Seth 2025-04-20 04:53:40 -04:00
parent 34e6265cae
commit bb570387fd
4 changed files with 64 additions and 9 deletions

12
tmp.ts Normal file
View file

@ -0,0 +1,12 @@
Bun.serve({
routes: {
"/test.mpd": async () => {
return new Response(Bun.file("tmp/fpwp4o.mpd"), {
headers: {
// cors allow all
"Access-Control-Allow-Origin": "*",
}
})
},
}
})