/// /// 获取当前时间戳 /// /// 为真时获取10位时间戳,为假时获取13位时间戳. /// public static string GetTimeStamp(bool bflag = true) { TimeSpan ts = DateTime.UtcNo...
javascript就是可用的typescript代码.例外:with()函数和火狐的const关键字.变量类型不可以动态变化变量 js中不使用var的变量就是全局变量 ts里面这样做会报错.ts全局变量需要在程序的最高层宣告 var myvar = 0;类型 ts中有可选的类型检测: 主类型,数组...
分类:
编程语言 时间:
2015-05-23 18:22:37
阅读次数:
493
父类packagecom.yjm.Tes;
publicabstractclassTs{
protectedvoidTest(Stringstr,Strings){
System.out.println("ts...");
}
}子类packagecom.yjm.Tes;
publicclassTestextendsTs{
protectedfinalvoidTest(Stringstr,Strings){
System.out.println("test...");
}
pu..
分类:
编程语言 时间:
2015-05-20 15:00:22
阅读次数:
148
IP数据报有首部和数据两部分组成的,首部的前一部分是固定长度20字节,是所有IP数据报必须具有的。首部包括:总长度、标识、MF、DF、片偏移。 数字信号实际传送的是数据流,一般数据流包括以下三种: (1)ES流(Elementary Stream):也叫基本码流,包含视频、音频或数据的连续码流...
分类:
其他好文 时间:
2015-05-20 13:09:40
阅读次数:
201
一、基本概念1)ESES--Elementary Streams (原始流)是直接从编码器出来的数据流,可以是编码过的视频数据流(H.264,MJPEG等),音频数据流(AAC),或其他编码数据流的统称。ES流经过PES打包器之后,被转换成PES包。 ES是只包含一种内容的数据流,如只含视频或只含音...
分类:
其他好文 时间:
2015-05-20 13:00:22
阅读次数:
220
在使用ffmpeg解码播放TS流的时候(例如之前写过的UDP组播流),在连接时往往需要耗费大量时间。经过debug发现是av_find_stream_info(已抛弃,现在使用的是avformat_find_stream_info)这个方法十分耗时,而且是阻塞的。av_find_stream_inf...
分类:
其他好文 时间:
2015-05-19 18:05:40
阅读次数:
340
WIKI: https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream 注意,必须要使用SRS自带的Http Server 一、HTTP FLV Live Stream http_server?{
????enabled?????????on;
???...
分类:
Web程序 时间:
2015-05-19 16:59:43
阅读次数:
665
set nu ru mouse=a sw=4 ts=4 sts=4 nobk cindent autoindent incsearch hlsearch t_Co=256syntax oncolorscheme molokai " 考场就用 koehlermap : !./%map : !./%.....
分类:
系统相关 时间:
2015-05-15 19:40:33
阅读次数:
172
1、创建表空间 create tablespace ts_aw logging datafile 'd:\app\Administrator\product\tablespace\ts_aw.dbf' size 10M autoextend on next 5M maxsize 20...
分类:
数据库 时间:
2015-05-13 10:12:22
阅读次数:
138
#include
#include
using std::endl;
using std::vector;
using std::cin;
using std::cout;
struct treeNode
{
int value;
treeNode*left;
treeNode*right;
};
void Path(treeNode * root ,int exceptSum,int ¤tS...
分类:
其他好文 时间:
2015-05-12 13:41:48
阅读次数:
100