MegaMind
MegaMind
An update on this. Due to dolby vision support in MKV . `SL DV` and `DL DV` are no longer being used. We can detect dolby vision by checking for...
```python from guessit import guessit import sys def main(): filename = sys.argv[1] print(guessit(filename)) if __name__ == "__main__": main() ``` It can be replicated by making this simple program a executable...
@Pfuenzle you'll need to use follow-imports and use the include `package-dir` and `data-dir` more more info read their entire documentation `--follow-imports` ```bash --include-plugin-directory=~/venv_path/lib/python3.8/site-packages/babelfish/ --include-data-dir=~/venv_path/lib/python3.8/site-packages/babelfish/data=babelfish/data --include-data-dir=~/venv_path/lib/python3.8/site-packages/guessit/data=guessit/data --include-data-dir=~/venv_path/lib/python3.8/site-packages/guessit/config=guessit/config --include-plugin-directory=~/venv_path/lib/python3.8/site-packages/guessit ```
> Why not using official binaries available in release page ? Hey, this is for a package I built, which uses guessit to get the Title from file names. Since...
Oh yeah for many that would be the best solution but since I'm using the python guessit api that wouldn't work for me.
Just gave https://github.com/ktosiek/streamlit-cookies-manager a try. everything works as expected. Cookies get saved when login button is pressed (code for saving the jwt cookie is in the LoginApp). Cookies get deleted...
> I see ... I don't see how it's possible. It seems args is empty, or wordlist are empty too and we don't get into loop that initialize the string....