过年拍了一些视频和照片,使用的是sony a7iii,在视频拍摄中,我尝试使用了自带的pp10,也就是HLG2伽马曲线,BT2020色彩空间的配置。由于在之前看了一些YouTube视频,很多播主都推荐使用HLG格式,所以我对拍摄的视频还是有很大期待的。

关于HLG

  • HLG 相當於HDR標準Hybrid Log-Gamma、ITU-R BT.2100。
  • HLG1 強調雜訊消除。不過,拍攝會限制在比使用HLG2或HLG3更窄的動態範圍。
  • HLG2 提供動態範圍與雜訊消除的平衡。
  • HLG3 比HLG2更寬的動態範圍。不過,雜訊可能會增加。

HLG1 HLG2 和 HLG3皆以相同特性套用迦瑪曲線,不過每一個所提供的動態範圍與雜訊消除的平衡不一樣。每一個都有不同的視訊輸出等級上限,如下所示:HLG1:大約87%,HLG2:大約95%,HLG3:大約100%。

看看以下圖示,就知道每個HLG的差異特性了!

17-01.png

阅读全文


Telegram是这几年我一直在用的IM软件,虽然连接不是那麽方便,但其本身体验很好。

Instant View是其开发的用来瞬间打开网页的技术,之前了解过其需要网站上做一些适配,今天花了一些时间给我的博客做IV的支持。


浏览器:Chrome

访问:https://instantview.telegram.org/my
输入一篇文章的地址,例如:https://niekun.net/index.php/2019/03/22/143.html 然后进入下一步。

9-01.png

阅读全文


背景

近几年来,自己断断续续的使用了很多VPS,学习了Linux的简单操作,学习了html,css,js,php等网络相关的东西,在进一步的使用远程服务器中,我接触了如何申请域名,如何CDN,如何使用Nginx做代理服务器实现自己编写的html脚本。

随着使用的深入,我想了解目前主流的网站是如何实现的,通过搜索,我发现Dajango的存在,由于之前有学习Python的基础知识,所以我很快学会了Dajango的使用,也在自己VPS上用Nginx,uwsgi托管了Dajango代码,看到网络上自己的网站第一次实现,真的有一种成就感。

有一个自己的blog一直是我的目标,之前想过使用Dajango来做,但是通过查找,发现相应的开源项目很少,所以一直没有去做,此事就一直耽搁了下来,近些天工作上的事情比较轻松,于是我又一次着手查找解决方案,发现了一个比较好的解决方案:PHP-MySQL-Typecho


关于Tpeocho

Typecho是一款免费开源的动态博客系统,运行在PHP环境下,界面简洁干净是他的特点。
文章支持markdown语法,很方便排版。
官网:http://typecho.org/

阅读全文


官网介绍:https://helpguide.sony.net/di/pp/v1/en/contents/TP0000909109.html

Gamma

Movie

Standard gamma curve for video

Still

Standard gamma curve for still images

Cine1

Softens the contrast in darker image areas and emphasizes gradation changes in lighter image areas, producing a subdued tone overall (equivalent to HG4609G33)

Gamma curve that obtains a dynamic range of 460% when the exposure is adjusted to 33% video output with 18% reflectance gray. The maximum value of video output is 109%.

Images shot with this gamma can be used without grading, but since the images have smooth gradation characteristics, this can be used to grade and finalize the viewed image in the post-production process.

阅读全文


打开nginx配置文件nginx.conf
默认路径为:/etc/nginx/nginx.conf

可以使用find指令找到这个文件:find / -name nginx.conf

重定向到外部网站server内加入如下片段:

location /you/path {
    return 301 https://example.com;
}

重定向到内部其他端口server内加入如下片段:

location /ray {
    proxy_redirect off;
    proxy_pass http://127.0.0.1:10000;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header Host $http_host;
}

修改好后重启nginx:service nginx restart