码迷,mamicode.com
首页 > 其他好文 > 详细

office文档、图片、音/视频格式转换工具

时间:2014-11-19 12:37:46      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:文档   office   视频   imagemagick   图片   

 1、音频/视屏转换工具VLC

VLC supported video format to MP4 (H.264)

In MacOS

$ vlc -I dummy -q i.flv --sout=#transcode{vcodec=h264, acodec=mp4a, aenc=ffmpeg{strict=-2}}:std{access=file, mux=mp4,dst=o.mp4} vlc://quit

In Windows

vlc -I dummy -q -vvv a.avi --sout=#transcode{vcodec=h264,acodec=mp4a,aenc=ffmpeg{strict=-2}}:standard{access=file,mux=mp4,dst=b.mp4} vlc://quit

VLC supported audio format to MP3

In MacOS

$ vlc -I dummy -q i.wav --sout=#transcode{acodec=mp3}:std{access=file,mux=raw,dst=o.mp3} vlc://quit

In Windows

vlc -I dummy -q -vvv a.wav --sout=#transcode{acodec=mp3}:standard{access=file,mux=raw,dst=b.mp3} vlc://quit

2、 
 文档转换:OfficeToPDF     officetopdf.exe %1 %2 /bookmarks /readonly /print /markup /pdfa 

3、图片转换:ImageMagick       convert -auto-orient input.jpg output.png 

PS:VLC和OfficeToPDF需要配置环境变量PATH,代码都写到bat文件中,然后再C#程序中直接调用。

office文档、图片、音/视频格式转换工具

标签:文档   office   视频   imagemagick   图片   

原文地址:http://blog.csdn.net/gua_381091614/article/details/41279687

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!