Four image qualities of H.264 (BP, EP, MP, HP) and Profile, Level, Encoder

Introduction ~~~~~~~        First of all, it is necessary to clarify that the so-called AVC is actually the H.264 standard, which was developed by the Joint Video Team (JVT) composed of ITU-T and ISO/IEC. ITU-T named this standard H.264 ( Formerly called H.26L), while ISO/IEC calls it MPEG-4 Advanced Video Coding (AVC) It is positioned to […]

Four image qualities of H.264 (BP, EP, MP, HP) and Profile, Level, Encoder Read More »

The process of npm install and npm run

what is npm npm ( node ​​pakage manage) is a third-party package manager and is the default package management tool for the Node.js platform. what npm does Through npm, you can install, share, distribute code, and manage project dependencies. example: When configuring webpack, many third-party modules (modules occupy a pit) need to be installed through

The process of npm install and npm run Read More »

Linux common commands-64: locate

locate command is similar in function to find -name , but much faster than find . Syntax format: locate [parameter] [file] Common parameters: Example locate /etc/em This article is reprinted from https://xugaoxiang.com/2022/06/19/linux-cmds-64-locate/ This site is for inclusion only, and the copyright belongs to the original author.

Linux common commands-64: locate Read More »

Linux common commands -63: date

The date command is used to display or set the system date and time. Syntax format: date [options] [+output form] Common parameters: Example # 显示当前系统时间date # 设置系统时间date -s “20220320 12:00:00” # 只设置日期date -s 03/20/2022 # 只修改时间date -s 12:00:00 This article is reprinted from https://xugaoxiang.com/2022/06/19/linux-cmds-63-date/ This site is for inclusion only, and the copyright belongs to

Linux common commands -63: date Read More »

Linux common commands-62: wc

The wc command counts the number of bytes, words, and lines in the specified file, and displays the statistics for output. Syntax format: wc [parameter] [file] Common parameters: Example # 统计文件test.txt中的字数wc -w test.txt # 统计文件test.txt中的字节数wc -c test.txt # 统计文件test.txt中的行数wc -l test.txt This article is reprinted from https://xugaoxiang.com/2022/06/19/linux-cmds-62-wc/ This site is for inclusion only, and the

Linux common commands-62: wc Read More »

Design configuration items like UI

Original link: https://www.kawabangga.com/posts/4545 When I was working at Ant Financial, I saw and used a lot of poorly designed systems, including the worst thing called an AntX, and I still shudder when I think about it now. The specific implementation has not been remembered clearly, because I have never really mastered it. Just remember that

Design configuration items like UI Read More »