2013年8月2日

asp.net(C#)服务器绝对路径与URL相对路径互转

摘要: //服务器绝对路径转换成URL相对路径 private string urlconvertor(string imagesurl1){ //获取程序根目录 string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //转换成URL相对路径 string imagesurl2 = imagesurl1.Replace(tmpRootDir, ""); imagesurl2 = imagesurl2.Replace(@". 阅读全文

posted @ 2013-08-02 15:15 大音希声-大象无形 阅读(1014) 评论(0) 推荐(0) 编辑

C#通过FFmpeg获得视频文件参数

摘要: C#通过FFmpeg获得视频参数FFmpeg简介FFmpegis a complete, cross-platform solution to record, convert and stream audio and video(录制、转换 、音/视频,并可将其转换为音/视频流的完整的,跨平台的j解决方案).FFmpeg的开发是基于Linux操作系统,但是可以在大多数操作系统中编译和使用。官网:http://ffmpeg.org/在windows环境下,需要用到其Windows Builds。下载地址:http://ffmpeg.zeranoe.com/builds/可根据自己的环境(32位或 阅读全文

posted @ 2013-08-02 13:49 大音希声-大象无形 阅读(1223) 评论(1) 推荐(0) 编辑

FFmpeg的C#.Net封装

摘要: After reading below article do not forget to checkoutImportant Update to Another Simple C# Wrapper For FFmpegWhen you want to encode uploaded videos to your website you are in luck if you use PHP, encoding uploaded videos to your web site on the fly quite easy on Linux based servers. Install FFmpeg 阅读全文

posted @ 2013-08-02 13:02 大音希声-大象无形 阅读(4698) 评论(2) 推荐(2) 编辑

导航