Andrey

Results 6 comments of Andrey

That would be really awesome.

https://ahooks.js.org/hooks/use-latest this helped as a workaround. And a bit of weird stuff made it work :) ``` const latestCountRef = useLatest(input); const inputChange = (new_text) => { setInput(new_text) console.log('just set...

@dust333 solution still seems to be the only way at the moment.

``` class FFprobeFixed(FFprobe): def probe(self): self.logger.info('Inside probe') self.logger.info(f'Probing file: "{self.file_name}"') # randomize the filename to avoid overwrite prompt commands = f"{self._ffmpeg} -y -i {self.file_name} -f null {os.devnull}" self.logger.info(f"Issuing commads {str(commands)}")...