SenseHu 最近的时间轴更新
SenseHu's repos on GitHub
C++ · 8 人关注
CodingPractice
collection of questions came across in daily
1 人关注
akshare
AkShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Python · 1 人关注
facenet
Face recognition using Tensorflow
Go · 0 人关注
23333
草 我要被爆破叻
0 人关注
booklist
追书清单 --- 与其在群里听大佬们零碎地吹水,不如畅饮精致的大块知识
C++ · 0 人关注
caffe
Caffe: a fast open framework for deep learning.
0 人关注
cat-face
中大猫谱猫脸识别后端代码
Shell · 0 人关注
chinaip
0 人关注
EchoPal
EchoPal 是一个创新的开源项目,旨在开发一款集成了录音、摄像头和头戴式耳机功能的智能可穿戴设备。这款设备不仅能够记录声音和图像,还能实时处理并回应用户的需求,成为您的日常生活和工作的智能伴侣。
JavaScript · 0 人关注
FreeGPT35
Utilize the unlimited free GPT-3.5-Turbo API service provided by the login-free ChatGPT Web.
Go · 0 人关注
go-stun
A go implementation of the STUN client (RFC 3489 and RFC 5389)
Go · 0 人关注
hellogo
0 人关注
internet-industry-terms-generator
互联网黑话生成器,一款能熟练应用“赋能、抓手、闭环、沉淀、打通”等词汇的文章生成器
0 人关注
Interview-Notebook
:books: 技术面试需要掌握的基础知识,持续更新中~
Java · 0 人关注
JAVA_SSM_practice
my first SSM project
0 人关注
jd-assistant
京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能
0 人关注
jd_seckill
京东秒杀商品抢购,目前只支持茅台抢购,不支持其他商品!
Go · 0 人关注
lal
🔥 Golang audio/video live streaming library/client/server. support RTMP, RTSP(RTP/RTCP), HLS, HTTP[S]/WebSocket-FLV/TS, GB28181, H264/H265/AAC/G711, relay, cluster, record, HTTP Notify/API/UI. 直播
0 人关注
landing-page-boilerplate
A versatile landing page boilerplate, ideal for various projects and marketing campaigns.
C++ · 0 人关注
leveldb
LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.
0 人关注
leveldb-pmdk
Shell · 0 人关注
leveldbjni
A Java Native Interface to LevelDB
C++ · 0 人关注
libquic
QUIC, a multiplexed stream transport over UDP
C++ · 0 人关注
lsm_nvm
NoveLSM
0 人关注
MediaCrawler
小红书笔记 | 评论爬虫、抖音视频 | 评论爬虫、快手视频 | 评论爬虫、B 站视频 | 评论爬虫、微博帖子 | 评论爬虫
0 人关注
metamask_related
提取metamask核心逻辑做成小工具
TypeScript · 0 人关注
min_to_report_bug
C++ · 0 人关注
mkl-dnn
Intel(R) Math Kernel Library for Deep Neural Networks (Intel(R) MKL-DNN)
Python · 0 人关注
models
Models and examples built with TensorFlow
0 人关注
MosaicFacesInVideos
make faces in videos unvisible with the help of tensorflow
SenseHu

SenseHu

🏢  HUYA - CVTE - 创业中
V2EX 第 523269 号会员,加入于 2020-12-10 19:15:26 +08:00
前某知名直播平台 流媒体后端组, 熟悉直播架构, c++&go&python | 对 AI 感兴趣, 用 huggingface diffusers 做过视频图像处理的东西 | 学习前端开发, 营销, 商业化领域知识 ing
创业中.
------
有个490+人数的睡眠呼吸暂停和呼吸机的交流群, 有需求的发我邮件 [email protected]
react-native webview 广告屏蔽
程序员  •  SenseHu  •  17 天前  •  最后回复来自 SenseHu
4
家用呼吸机交流群(非盈利性)
硬件  •  SenseHu  •  2023-12-06 18:08:19 PM  •  最后回复来自 SenseHu
14
出 3 根 笔记本 ddr4 内存
二手交易  •  SenseHu  •  2023-05-03 14:28:47 PM  •  最后回复来自 Fxshiny
1
如何看待 potplayer 开始收费
软件  •  SenseHu  •  2023-03-08 18:46:54 PM  •  最后回复来自 SenseHu
17
SenseHu 最近回复了
从几个角度分析这个问题
1. 画面内容
是真实世界高频信号多的画面,还是动画那些低频信号多的,
后者优先考虑降低分辨率,对压缩贡献很大,大概率也不会影响观感, -ss 参数截一小段转码试试,
前者不太好搞, 高频信号 + 频繁运动的画面, 你眼睛跟不上他的细节, 降低点编码质量你也看不出 (前东家编解码组大佬同事的真实落地方案)
2. 码率 & 质量控制
VBR, ABR, CBR. 上面有朋友给的 -b:v 2000k 和 -crf 参数可以自己测试下看哪个好.
3. 帧比例
I 帧, P 帧, B 帧 这些概念在 h265 和 h264 都有体现, 减少低压缩率的 I 帧有利于减小最终文件大小, 对应 ffmpeg 参数
-keyint_min , -sc_threshold
4. 编码器.
要求质量的话, 优先考虑 软编( 用 CPU 编码 ), 对应 x264, x265 这些工具 ( ffmpeg -c:v 指定 ), 缺点就是慢.
这样的质量还不满意就考虑商业化方案吧, 比如 微帧 (前东家就是用的这家, 大规模用
16 天前
回复了 UTC0700 创建的主题 Android 2025 年了,安卓换机怎么选
oxygen 自带的 app 没几个吧, 我的一加 11 刚刷了 eu 的 oos, 挺干净的
17 天前
回复了 SenseHu 创建的主题 程序员 react-native webview 广告屏蔽
@Mistsink 换 native 开发了。。。
调研过一段时间海外服务器, 可私聊 sense_hu, 这个是 v
奇数版本的 win 都是残废, 要用就用偶数版本
既然男的少, 那把有能力的男性当成商品 也是一种模式 ?
supabase 不是可以 self host 么
有个开源的 vscode 插件, Continue.dev, 自己接 deepseek coder 模型 api key ,token 便宜放开手用
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2647 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 21ms · UTC 04:53 · PVG 12:53 · LAX 20:53 · JFK 23:53
Developed with CodeLauncher
♥ Do have faith in what you're doing.