Rylee George
Rylee George
ffmpeg has a WIP for AC-4 it works but its a way off being implemented https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=451 The work is sponsored by VLC so maybe be the end of the year...
The atmos tracks can be played with Google music app. So I guess the Youtube music app would work also haven't tested. @joseph39 All you need is the "authorization" header...
I too am confused about ``return reply`` being mandatory. Since routes like this still function? ``` fastify.get('/', async (req, reply) => { reply.view('login', { captcha: process.env.CAPTCHA_LOGIN, sitekey: process.env.CAPTCHA_SITE_KEY, token: await...
Excited for this
I will be using playback my project https://github.com/Ortygia/Deaftone is a music server. But I am still looking for a fast tag scanner solution metaflac is currently the fastest and from...
I fixed the indentation error. I am running the WM on when I use the bind ALT+T I see the log show that the terminal has been executed but the...
The API I have currently is here https://deaftone.org/api/ its smaller at the moment. But I do like the having a json response with data instead of just wrapping everything on...
This maybe is used in the future. But currently, I am only working with reading FLAC files. I am not sure about the performance of taglib so it is something...
I would like to use lofty but for Flac, I think I will stick to metaflac since it is just that bit quicker. The benchmark can be found here https://github.com/112RG/tag_lib_bench_rs...
I am guessing you meant to detect FileType like so ```rust let file = std::fs::File::open(&path).unwrap(); let reader = std::io::BufReader::new(file); let mut probe = Probe::new(reader); probe.set_file_type(lofty::FileType::FLAC); let tagged_file = probe.read().expect("ERROR: Failed...