Agile Bean
Agile Bean
Hi @tomwenseleers, any chance you can update your awesome package and bring it back to CRAN any time soon? I think it's the best in the R world, so I...
I can confirm what @ricardostary and @prokulski said: getPost() returns this error no matter which arguments are given. Would be wonderful if someone could have a look!
@prokulski thanks, just did it and it works.
> @erogol following your suggestion to remove mecab-python3 from requirements.txt, this throws the error `mecab not found`: `tts --text "Text for TTS" --out_path output/path/speech.wav` I understand this is because the...
@kundanshrivastava I was able to make the whole installation work with the following: ``` # install arm64 dependency before installing mecab-python3 arch -arm64e /opt/homebrew/bin/brew install mecab # install dependency python...
> Hey, I'm the `mecab-python3` maintainer. I am unable to provide M1 wheels because `mecab-python3` needs to compile native extensions and I have no M1 hardware and Github Actions doesn't...
@peterlazzarino yes i did all that. in the line `import jukebox`, is jukebox referring to the folder jukebox or to a module that is installed during the pip install steps?
> Did you remember to use the command `pip install -e .` as the last step of the installation? I was having this same issue until I realized that I...
It is 854 * 480. But I get both measurements by video.get() as in ``` width = int(video.get(cv2.CAP_PROP_FRAME_WIDTH)) height = int(video.get(cv2.CAP_PROP_FRAME_HEIGHT)) ``` so it shouldn't matter, should it?
@letmaik OMG you were right! You are a genius!!! The 1280x720 is correctly received in Zoom! But why??? I initialize pyvirtualcam with the video dimensions, not hardcoded. What do I...