Kyle Polley
Kyle Polley
@viveksanagari after lots of trial and error I came to the conclusion it was something wrong with picam and it's attempt to sync the audio and video. I actually ditched...
Perhaps your initializing it incorrectly? Below is how I use it; ``` import { AuthenticationDetails, CognitoUser, CognitoUserPool, CognitoUserAttribute } from 'react-native-aws-cognito-js'; ... const authenticationDetails = new AuthenticationDetails({ Username: username, Password:...
Hi! Sorry for the late reply...python2 and python3 are somewhat similar in syntax. I'd suggest just try running and fix whichever errors pop up as you go. That being said,...
Hi, Try these steps: 1. Clone the repository `git clone https://github.com/kpolley/Python_AVrecorder.git` 2. change your directory `cd Python_AVrecorder` 3. Install requirements `pip install -r requirements.txt` 3. Run picam.py `python3 picam.py` You...
I would take a look at the ffmpeg command that is running to further debug...could be that your hardware requires additional parameters. https://github.com/kpolley/Python_AVrecorder/blob/10134a84fdaeaadcfb1832d35d68e6bf9a58bff3/picam.py#L28
Hi! Sorry for the late reply...are you running this on Python3 or 2? I think for Python2 you need to import the file differently like so `from .AudioRecorder import AudioRecorder`...