10월, 2023의 게시물 표시

Recorded video compression and conversion methods

File conversion requires ffmpeg . ( https://ffmpeg.org/download.html ) The installation method for ffmpeg is different depending on the operating system, and if you search on Google, you will find a lot of information on how to install it, so I will not cover it here. After ffmpeg is installed, the commands below must be entered and executed directly at the Command Prompt in Windows operating systems or in the Terminal in the case of macOS and Linux, and it takes time to complete execution. You must use the name of the file you want to convert in the “input file name” and “output file name” parts used within the command. If the "input file name" and "output file name" are the same, the input file (original) will be damaged, so be careful. If it is an important file, I recommend making a copy first before converting. 1. How to convert MOV file to MP4 file      ffmpeg  -i  "input file name.mov"  -vcodec  copy  -loglevel  error  "output file name.mp4&quo

녹화영상 압축 및 변환 방법들

파일 변환에는 ffmpeg 이 필요합니다. ( https://ffmpeg.org/download.html ) ffmpeg은 운영체제에 따라 설치하는 방법이 다르고 구글에 검색하면 설치 방법에 관한 자료가 아주 많으므로 여기서는 다루지 않겠습니다. 아래 명령들은 ffmpeg이 설치된 후에 Windows 운영체제의 명령 프롬프트, macOS와 Linux의 경우에는 터미널에서 직접 입력하여 실행해야 하고, 실행이 완료되는데 시간이 걸립니다. 명령 내에서 사용된 "입력파일이름"과 "출력파일이름" 부분에는 변환하려고 하는 파일의 이름을 사용해야 합니다. 만약 "입력파일이름"과 "출력파일이름"이 같으면 입력 파일(원본)이 손상되므로 주의해야 하고, 중요한 파일인 경우에는 변환하기 전에 먼저 복사본을 만들기를 권장합니다. 1. MOV 파일을 MP4 파일로 변환하는 방법      ffmpeg  -i   "입력파일이름.mov"  -vcodec copy  -loglevel  error  "출력파일이름.mp4" 2. 녹화 영상 해상도를 유지한 상태로 압축하여 용량을 줄이는 방법      ffmpeg  -i  "입력파일이름.mp4"  -qscale  200  -loglevel  error  "출력파일이름-cmp.mp4" 3. 4K 해상도를 2K (2560 x 1440) 로 변환하여 압축하는 방법      ffmpeg  -i  "입력파일이름.mp4"  -qscale  200  -s  2560x1440  -loglevel  error  "출력파일이름-2K.mp4" 4. 4K 해상도를 1080p (1920 x 1080) 로 변환하여 압축하는 방법      ffmpeg  -i  "입력파일이름.mp4"  -qscale  200  -s  1920x1080  -loglevel  error  "

Themis 블랙박스 FAQ

➡  Themis 블랙박스에 녹화된 영상을 맥 또는 PC로 복사하는 방법 ➡  HEVC 코덱이 설치되지 않은 PC에서 녹화영상을 재생하는 방법 ➡  Themis 블랙박스로 녹화한 영상을 편집하는 방법 ➡ 단축어 앱을 사용하여 아이폰 전원 연결 시 Themis 블랙박스를 자동으로 실행하는 방법 ➡  아이폰, 맥 또는 PC의 화면을 확대하는 방법 ➡  녹화영상 압축 및 변환 방법들

Themis Black Box FAQs

➡  How to copy recorded videos on Themis black box to Mac or PC ➡  How to play recorded video on a PC without HEVC codec installed ➡  How to edit video recorded with Themis black box ➡  How to zoom in the screen of your iPhone, Mac, or PC ➡ Recorded video compression and conversion methods