首页 > 代码库 > office文档、图片、音/视频格式转换工具
office文档、图片、音/视频格式转换工具
1、音频/视屏转换工具VLC
2、 文档转换:OfficeToPDF
3、图片转换:ImageMagick
PS:VLC和OfficeToPDF须要配置环境变量PATH。代码都写到bat文件里,然后再C#程序中直接调用。
- https://wiki.videolan.org/Mp3/#Container_formats
- http://wenku.baidu.com/view/ba73ac5c804d2b160b4ec05a.html?re=view
- https://wiki.videolan.org/How_to_Batch_Encode/
- https://wiki.videolan.org/Transcode/
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://quit2、 文档转换:OfficeToPDF
- http://officetopdf.codeplex.com/documentation
3、图片转换:ImageMagick
- http://www.imagemagick.org/script/convert.php
PS:VLC和OfficeToPDF须要配置环境变量PATH。代码都写到bat文件里,然后再C#程序中直接调用。
office文档、图片、音/视频格式转换工具
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。