'2021/02/22'에 해당되는 글 3건

  1. 2021.02.22 grep regexp match list
  2. 2021.02.22 tensorflow 1.15 설치가 힘들군
  3. 2021.02.22 ffmpeg 재생 어렵다 -_ㅠ
Linux2021. 2. 22. 19:46

grep 을 쓰면 파일명 등의 자질구레한(?) 정보가 나오는데

그런거 빼고 순수하게 매칭되는 부분만 추출해 낼 때 쓰는 옵션

 

grep  -Op "regexp"

[링크 : https://unix.stackexchange.com/questions/13466/can-grep-output-only-specified-groupings-that-match]

'Linux' 카테고리의 다른 글

'xterm': unknown terminal type.  (0) 2021.02.25
tar with pigz  (0) 2021.02.23
리눅스 스마트 카드 api  (0) 2021.02.02
linux smart card  (0) 2021.02.02
linux shared memory 확인 및 삭제  (0) 2021.01.22
Posted by 구차니

 

$ python3
Python 3.8.5 (default, Jul 28 2020, 12:59:40) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.

 

$ pip3 install tensorflow==1.15.5
ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.5 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.2.2, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1, 2.3.2, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3, 2.4.0rc4, 2.4.0, 2.4.1)
ERROR: No matching distribution found for tensorflow==1.15.5

[링크 : https://pypi.org/project/tensorflow/1.15.5/]

 

[링크 : https://stackoverflow.com/questions/61491893/i-cannot-install-tensorflow-version-1-15-through-pip]

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

tflite convert  (0) 2021.02.24
tensorflow flex ops  (0) 2021.02.23
tensorflow2 학습 해보기 어렵네..  (0) 2021.02.20
tensorflow 객체 탐지 디렉토리 구조  (0) 2021.02.19
tensorflow model 학습 시작지점  (0) 2021.02.18
Posted by 구차니

재생하려니 안되고...

Pixel format yuv420p is not supported, use bgr24

 

pix_fmt 로 바꾸려고 하니 안되네.. -_-

Incompatible pixel format 'bgr24' for codec 'mpeg4', auto-selecting format 'yuv420p'

 

오잉?

-pix_fmts           show available pixel formats
-sample_fmts        show available audio sample formats
-f fmt              force format

 

 

+

하드웨어 가속을 못 받아서 그런가 무지 힘들어 하네

 

$ ffmpeg -re -i INPUT -c:v rawvideo -pix_fmt bgra -f fbdev /dev/fb0

[swscaler @ 0x2020050] No accelerated colorspace conversion found from yuv420p to rgb24.

[링크 : https://ffmpeg.org/ffmpeg-devices.html#Examples-12]

'프로그램 사용 > ffmpeg & ffserver' 카테고리의 다른 글

mp4 복구 시도  (0) 2022.01.24
ffmpeg을 이용한 rgb565 to bmp  (0) 2021.10.18
ffmpeg fbdev  (0) 2021.02.09
ffmpeg build  (0) 2020.11.25
webm을 mp3로 변환하기  (0) 2020.04.01
Posted by 구차니