
视频技术
睡觉学习三餐
睡觉学习三餐,生活如此简单
个人网站 https://ojbk.life
展开
-
VVC 算法描述 R2002(VTM 9) IBC部分 机器翻译
3.9 Screen content coding tools3.9.1 Intra block copy (IBC)Intra block copy (IBC) is a tool adopted in HEVC extensions on SCC. It is well known that it significantly improves the coding efficiency of screen content materials. Since IBC mode is implemente原创 2020-11-04 20:03:39 · 1199 阅读 · 0 评论 -
VVC IBC 提案机器翻译 O1170 Bitstream conformance with a virtual IBC buffer concept
AbstractDuring discussion of IBC conformance, it is agreed that it is better targeting a bitstream constraint without imposing a mandatory check at the decoder and a simple solution is preferred to d...原创 2020-11-04 19:02:18 · 1022 阅读 · 0 评论 -
C++基础-文件读取fread和文件指针和内存查看和_Placeholder
这里使用Visual Studio来写C++代码,使用UltraEdit来查看二进制文件。(用Visual Studio也能以二进制形式打开文件,能满足大部分需求了,只是无法打开大文件,实测无法打开这里的300M的yuv文件)下面的代码从yuv文件中读取一帧Y分量并保存起来。#include <iostream>int main(){ FILE* file_in; fopen_s(&file_in, "C:\\Users\\vid\\Documents\\Working\\原创 2020-09-11 14:06:42 · 2426 阅读 · 0 评论 -
VVC/VTM 可视化
打开代码doc目录software-manual.pdf,可以看到里面有Block statistics extension的部分,说的还挺详细,不过这里还是再描述一下。参考:VTM中的编码单元信息扩展:CU信息的可视化分析和统计分析 - Aidoneus_y - 优快云博客首先把 ENABLE_TRACING 和 K0149_BLOCK_STATISTICS 设置为 1然后编码端配置文件...原创 2020-09-01 21:42:41 · 3267 阅读 · 13 评论 -
Youtube-dl 使用
看这里:【备份】youtube-dl使用介绍 - 简书下面是我常用的几句命令youtube-dl -F https://www.youtube.com/watch?v=q0hyYWKXF0Q --proxy "https://127.0.0.1:1080"youtube-dl -f 400+140 https://www.youtube.com/watch?v=q0hyYWKXF0Q --...原创 2019-12-05 11:05:14 · 4502 阅读 · 0 评论 -
PYUV Packed YUV
在VTM代码目录中有pyuv_format.pdf 题为 A Packed Planar RGB and YUV Format for Uncompressed Storage of High Dynamic Range Still Images and VideosPACKED RGB OR YUV DATA WITH 10 BIT PER SAMPLE0xff = 1111 11110...原创 2019-12-01 21:03:28 · 289 阅读 · 0 评论 -
VVC/VTM 读取配置文件EncAppCfg.cpp
source\App\EncoderApp\encmain.cpp // parse configuration try { if(!pcEncApp->parseCfg( argc, argv )) //解析cfg { pcEncApp->destroy(); return 1; } }source\App\Enco...原创 2019-12-01 19:38:24 · 2514 阅读 · 0 评论 -
VS2019 代码图使用
代码图:(需要企业版VS)原创 2019-11-27 13:17:26 · 6016 阅读 · 1 评论 -
H264AVC参考软件JM代码运行
下载JM8.6代码双击打开tml.sln右键把lencod设为启动项目配置属性 - 常规 - 输出目录:$(ProjectDir)bin配置属性 - 调试 - 工作目录:$(ProjectDir)bin(bin目录里放了配置文件)右键 - 生成 lencod 项目...原创 2019-11-27 12:42:41 · 3592 阅读 · 1 评论 -
H266VVC参考软件VTM H265HEVC/HM 代码运行
下载提案:Welcome to Joint Video Experts TeamJVET-O2000 Meeting Report of the 15th JVET Meeting (Gothenburg, SE, 3–12 July 2019)JVET-O2002 Algorithm description for Versatile Video Coding and Test Model ...原创 2019-10-25 19:20:07 · 1703 阅读 · 2 评论 -
VLC电脑串流视频到手机播放
条件:手机和电脑处在同一局域网知道电脑和手机的IP地址注:本例中,电脑192.168.1.102,手机192.168.1.107(查看手机IP地址有两种方法:在手机WiFi的信息里,也可在路由器后台查看)目标:电脑把本地的视频文件串流出去,手机上接收播放。(可以先在同一台电脑上开两个VLC,一个当串流服务器,一个当接收,测试成功以后再搞手机)目标设置写的是播放设备的IP地...原创 2020-09-10 17:24:27 · 12911 阅读 · 2 评论