본문 바로가기
SMALL

Issue11

Web) Web Audio API 사용 시 다른 크롬 탭에서 재생하는 소리가 녹음이 안되는 현상 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.Web Audio API 사용 시 다른 크롬 탭에서 재생하는 소리가 녹음이 안되는 현상Web Audio API를 이용하여 마이크 음성을 텍스트로 실시간으로 변환하는 작업을 하던 중,크롬의 다른 탭에서 재생하는 소리를 녹음하지 못하는 현상을 발견하였다. 보안 및 개인 정보 보호의 이유로 크롬에서 막아두었다고 한다.  그래서 어디까지 녹음이 가능한지 테스트를 해보았다.다른 크롬 탭에서 나오는 소리를 인식하는가?불가 🙅🏻‍♀️크롬 시크릿 모드에서 재생되는 소리를 일반 크롬 창의 마이크에서 인식 가능한가?불가 🙅🏻‍♀️Safari에서 재생되는 소리를 일반 크롬 창의 마이크에서 인식 가능한가?가.. 2024. 12. 12.
Python) ERROR: Failed to build installable wheels for some pyproject.toml based projects (pyaudio) 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.실행 환경MacOSpython 3.11pyaudio 설치 시 ERROR: Failed to build installable wheels for some pyproject.toml based projects (pyaudio) 오류가 발생하였다. MacOS의 경우 portaudio를 먼저 설치한 후 pyaudio를 설치해줘야 한다.$ brew install portaudio$ pip install pyaudio  참고사이트https://github.com/ardha27/AI-Waifu-Vtuber/issues/49 Failed building wheel for PyAudio · Issue #49 .. 2024. 11. 27.
React) 자동 번역 기능 활성화 시 Failed to execute 'removeChild' on 'Node' 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황React 18ChatGPT 채팅 웹사이트Naver Whale에서 영어 → 한국어 자동 번역 기능을 키고영어로 대화가 이루어진 A 채팅방 → B 채팅방 → A 채팅방 내용을 클릭 시 아래와 같은 오류가 발생했다.🐛 오류 메세지Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.💡 해결방안채팅 메세지를 보여줄 때 react-markdown 패키지를 이용하였고, p 태그인 경우 아래와 같이 p 태그로 감싸 리턴해주었다.p({ children }) { useEffect.. 2024. 11. 4.
HuggingFace) Error(s) in loading state_dict for '' Missing key(s) in state_dict 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
HuggingFace) TypeError: _get_model_file() got an unexpected keyword argument 'resume_download' 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
HuggingFace) Torch not compiled with CUDA enabled 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
LIST