Skip to content

Instantly share code, notes, and snippets.

@quink-black
quink-black / H.264参数集处理.md
Last active June 13, 2025 04:00
H.264参数集处理

H.264参数集处理

[toc]

摘要

介绍H.264参数集与几种字节流格式的关系,以及in-band/out-of-band传递参数集的方式与容器格式、传输协议的关系,描述MP4格式、FLV格式处理参数集的一些兼容性问题。

@justincbagley
justincbagley / How_to_Convert_Markdown_to_PDF.md
Last active November 25, 2025 16:55
How To Convert Markdown to PDF

How to convert markdown to PDF:

This post reviews several methods for converting a Markdown (.md) formatted file to PDF, from UNIX or Linux machines.

Using Pandoc:

$ pandoc How_I_got_svg-resizer_working_on_Mac_OSX.md -s -o test1.pdf
local redis_c = require "resty.redis"
local ok, new_tab = pcall(require, "table.new")
if not ok or type(new_tab) ~= "function" then
new_tab = function (narr, nrec) return {} end
end
local _M = new_tab(0, 155)