antoniozhou的Blog

流媒体技术,服务器技术,多媒体网络应用

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

摘要: 随着Adobe公司的Flash播放器的普及(根据Adobe官方数据,Flash播放器装机量已高达99%以上),越来越多的网络视频开始采用Flash播放器作为播放前端,因此,越来越多的企业开始采用兼容Flash播放器的流媒体服务器,而开始淘汰其他类型的流媒体服务器。Ultrant Media Server(简称UMS)是一款可免费使用的支持Adobe Flash RTMP协议的高性能流媒体服务器软件系统。下面介绍如何使用免费版的Ultrant Media Server 1.8.8架设Flash直播、点播服务系统。 阅读全文
posted @ 2011-12-18 12:26 antoniozhou 阅读(6825) 评论(7) 推荐(2) 编辑

2008年10月23日

摘要: 本文讲述了NASM和MASM在导入导出外部库函数上的不同用法,并通过代码演示了如何合并目标程序段以达到缩小程序大小的目的,以及如何通过伪指令给连接器传参数等相关知识。要读懂该文章,需要具备读懂汇编语言的能力,并且已经了解PE文件格式、COFF文件格式、OMF文件格式相关信息,以及具备相关汇编器支持的语法特性,相关连接器的使用方法等知识。 阅读全文
posted @ 2008-10-23 22:49 antoniozhou 阅读(7372) 评论(2) 推荐(1) 编辑

2008年10月22日

摘要: SUMMARY A good understanding of the Portable Executable (PE) file format leads to a good understanding of the operating system. If you know what's in your DLLs and EXEs, you'll be a more knowledgeable programmer. This article, the first of a two-part series, looks at the changes to the PE format that have occurred over the last few years, along with an overview of the format itself. After this update, the author discusses how the PE format fits into applications written for .NET, PE file 阅读全文
posted @ 2008-10-22 23:46 antoniozhou 阅读(465) 评论(0) 推荐(0) 编辑

摘要: Matt Pietrek March 1994 Matt Pietrek is the author of Windows Internals (Addison-Wesley, 1993). He works at Nu-Mega Technologies Inc., and can be reached via CompuServe: 71774,362 This article is reproduced from the March 1994 issue of Microsoft Systems Journal. Copyright © 1994 by Miller Freeman, Inc. All rights are reserved. No part of this article may be reproduced in any fashion (except in brief quotations used in critical articles and reviews) without the prior consent of Miller 阅读全文
posted @ 2008-10-22 23:36 antoniozhou 阅读(824) 评论(0) 推荐(0) 编辑

2006年8月17日

摘要: 通常情况下,辅助工作线程被用来进行后台打印、运算及操作。这里,我们将用辅助工作线程实现文档的自动保存。如何使用辅助工作线程呢?使用过程中要注意哪些问题呢?而定时保存中要用到的Timer计时器是怎样使用的呢?本文将努力给初学者一个清晰明确的答案。 阅读全文
posted @ 2006-08-17 20:51 antoniozhou 阅读(2714) 评论(2) 推荐(0) 编辑

2006年8月15日

摘要: 在文档处理类型的软件的开发过程中,通常要添加文档自动保存功能。如何给这样的软件添加一个高效而合理的文档自动保存功能,是程序员所要关心的事情。一般情况下,通过在主线程中调用CDocument::OnSaveDocument()函数来添加自动保存功能是一个比较简单的方法,然而这种方法却存在很多弊端;使用辅助工作线程实现文档自动保存与操作分离的方法,确实比较高效,但也面临很多实现上的问题,这其中究竟会遇到哪些意想不到的问题呢? 阅读全文
posted @ 2006-08-15 11:32 antoniozhou 阅读(3740) 评论(5) 推荐(0) 编辑