Vadim Kantorov
Vadim Kantorov
Hi @mark4o! In https://stackoverflow.com/a/40699361/445810 you suggest to benefit from DTX-enabled smaller output size by omitting 2-byte-or-less packets from `opusenc` output as they encode exact silence. I propose to graduate this...
Hi! Is there an option for `opusenc` to reset to exact zero the frames without detected speech during encoding (leveraging this built-in VAD)? Is it possible to control the used...
https://github.com/xiph/opus-tools/blob/master/src/opusenc.c#L1116-L1119 : ```python /*Main encoding loop (one frame per iteration)*/ while (1) { nb_samples = inopt.read_samples(inopt.readdata,input,frame_size); ret = ope_encoder_write_float(enc, input, nb_samples); ``` Currently `read_samples` would do an `fread(...)` call for...
cc @mark4o Essentially, this is a repro follow-up for: - https://github.com/xiph/opus-tools/issues/85 It first downloads a `test.opus` file from the part-files attached to this issue, then it prepares a 8khz-sampled `test.8000.wav`....
In various testing scenarios, it's useful to have the final runtime/stats printout but suppress the progress stats. Is it possible to instruct opusenc to print no progress, but still print...
Could be sth like: ```yaml name: buildopusenc on: workflow_dispatch jobs: buildopusenc: runs-on: ubuntu-22.04 steps: - name: Install Prerequisites run: sudo apt-get update && sudo apt-get install -y git autoconf gcc...
Hi! How in practice do you retrieve the final discrete masks given the refined embeddings? Do you also somehow randomly sample a high-scoring instance seed pixel and then mark all...
From https://github.com/metacpan/metacpan-api/blob/master/docs/API-docs.md#download_urlmodule it is not clear if there is a way to retrieve a `download_url` for a bit older version of Perl. Even if there is no way, it would...
Apparently because of server hangs at some variable formatting: I waited a few dozen seconds and then hit Ctrl+C and got somehow this stack trace: ``` File "/usr/lib/python3.10/bdb.py", line 90,...
Based on your GH Action https://github.com/plk/biber/blob/dev/.github/workflows/main.yml, I wrote the following one which I run in my own repo. I am getting the following test error. How can I fix this?...