下面的文本是如何转换成这个十六进制输出的?
How is the following text transposed into this hex output?
输入:
00:00:00:00 a
b
c
d
// NEWLINE separating each letter
输出:
Scenarist_SCC V1.0
00:00:00:00 9420 13d6 9723 6180 1376 9723 6280 94d6 9723 e380 9476 9723 6480 9420 942c 942f
00:00:01:00 942c
这里有一些关于 the format 的信息,但我很难理解这种文本转换是如何完成的。
您使用什么将文本转换为十六进制字符串?不管怎样,Hex 输出似乎充满了各种 CC 命令。只需查看您链接到的格式文档中的代码,我就会得到以下信息:
Timecode 00:00:00:00: start pop-on caption (9420), move cursor to row 12, column 12 (13d6), move over three columns (9723), character "a" (6180), move cursor to row 13, column 12 (1376), move over three columns (9723), character "b" (6280), move cursor to row 14, column 12 (94d6), move over three columns (9723), character "c" (e380), move cursor to row 15, column 12 (9476), move over three columns (9723), character "d" (6480), start pop-on caption (9420), clear screen (942c), display caption (942f).
Timecode 00:00:01:00: clear screen (942c)
因此,无论您使用什么程序生成输出,都会将 CC 格式、定位和其他命令添加到 Hex 流中。
输入:
00:00:00:00 a
b
c
d
// NEWLINE separating each letter
输出:
Scenarist_SCC V1.0
00:00:00:00 9420 13d6 9723 6180 1376 9723 6280 94d6 9723 e380 9476 9723 6480 9420 942c 942f
00:00:01:00 942c
这里有一些关于 the format 的信息,但我很难理解这种文本转换是如何完成的。
您使用什么将文本转换为十六进制字符串?不管怎样,Hex 输出似乎充满了各种 CC 命令。只需查看您链接到的格式文档中的代码,我就会得到以下信息:
Timecode 00:00:00:00: start pop-on caption (9420), move cursor to row 12, column 12 (13d6), move over three columns (9723), character "a" (6180), move cursor to row 13, column 12 (1376), move over three columns (9723), character "b" (6280), move cursor to row 14, column 12 (94d6), move over three columns (9723), character "c" (e380), move cursor to row 15, column 12 (9476), move over three columns (9723), character "d" (6480), start pop-on caption (9420), clear screen (942c), display caption (942f).
Timecode 00:00:01:00: clear screen (942c)
因此,无论您使用什么程序生成输出,都会将 CC 格式、定位和其他命令添加到 Hex 流中。