Mikhail Gerasimov
Mikhail Gerasimov
If you'll call `seek` while video is paused, it's `position` and frame (picture) will remain old. This simple code can be used for testing: [main.py](http://pastebin.com/eFzF4E3V) [test.kv](http://pastebin.com/AW209iij) Here's how seeking works...
``` python import asyncio from contextlib import suppress async def main(): task = asyncio.ensure_future(asyncio.sleep(1)) task.cancel() try: raise Exception() except Exception: with suppress(asyncio.CancelledError): await task raise if __name__ == "__main__": loop...
bem.github.io не работает в Firefox. Поля Data и Templates путстые, нет реакции на ввод.
### Issue Summary Subj. ### Steps to Reproduce 1. Enable [Animated GIF support](https://docs.wagtail.io/en/v2.4/advanced_topics/images/animated_gifs.html) and [Feature Detection](https://docs.wagtail.io/en/v2.4/advanced_topics/images/feature_detection.html) 2. Try to upload gif into the gallery (I used [this one](https://media.giphy.com/media/fQfu05qTEXYOI/giphy.gif)) 3. See...
There was an RTX Video Enhancement release recently. https://nvidia.custhelp.com/app/answers/detail/a_id/5448 Basically, it allows real-time AI video upscaling on recent RTX video cards. It would be nice to have this feature available...