python334 주피터 노트북 영상 불러오기(사이즈조절/소리없애기) 주피터 노트북 영상 불러오기(사이즈조절/소리없애기) 사이즈 조절해서 영상 불러오기 from IPython.display import Video video_path = "record_test.mov" # width, height 지정을 통한 사이즈 조절 width = 640 height = 480 video = Video(video_path, width=width, height=height) video 소리를 제거 하고 영상 불러오기 1. 터미널에서 영상 소리를 제거할 수 있는 프로그래 ffmpeg 설치 !echo 'password' | sudo -S apt-get -y install ffmpeg 2. ffmpeg를 이용하여 record_test.mov 파일 영상 소리제거 후 record_test_mute.. 2023. 10. 3. TypeError: 'module' object is not callable tqdm TypeError: 'module' object is not callable tqdm¶ tqdm 패키지를 잘못 불러오면 아래와 같은 에러가 나타납니다¶ In [1]: import tqdm n = 0 for i in tqdm(range(0, 100)): n+=1 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_2393713/1156647607.py in 2 3 n = 0 ----> 4 for i in tqdm(range(0, 100)): 5 n+=1 TypeError: 'module' object is.. 2023. 9. 20. TypeError: randint(): argument 'size' (position 2) must be tuple of ints, not int TypeError: randint(): argument 'size' (position 2) must be tuple of ints, not int¶ randint 메서드를 사용할때 rand메서드와 같이 텐서의 사이즈를 입력하면 아래와 같은 에러가 발생합니다.¶ In [1]: import torch torch.randint(1,2) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_2374966/3186067014.py in 1 import torch ----> 2 torch.randint(1,2) TypeError:.. 2023. 9. 19. OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory.¶ nlp = spacy.load('en_core_web_sm')을 실행하면 아래와 같은 에러가 나타날 수 있습니다¶ In [1]: import spacy nlp = spacy.load('en_core_web_sm') 2023-09-19 20:03:35.425924: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT /home/jin/anaconda.. 2023. 9. 19. UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte¶ In [1]: # 바이트 타입 지정 에러 입니다 import pandas as pd pd.read_csv("tempdata.csv") --------------------------------------------------------------------------- UnicodeDecodeError Traceback (most recent call last) /tmp/ipykernel_2337038/2525476890.py in 1 # 바이트 타입 지정 에러 입니다 2 import pandas as pd ----> 3 pd.read_csv.. 2023. 9. 18. TypeError: unsupported operand type(s) for +: 'int' and 'str' TypeError: unsupported operand type(s) for +: 'int' and 'str'¶ In [1]: # 타입이 다른 두 변수간 연산이 일어날때 발생한는 에러이며 예시는 아래와 같습니다. 1 + "name" --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /tmp/ipykernel_2336008/3257371006.py in 1 # 타입이 다른 두 변수간 연산이 일어날때 발생한는 에러이며 예시는 아래와 같습니다. ----> 2 1 + "name" TypeError: unsupported operand type(s) .. 2023. 9. 18. 이전 1 ··· 11 12 13 14 15 16 17 ··· 56 다음