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

 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#程序中直接调用。

原文地址:https://www.cnblogs.com/jzssuanfa/p/6848992.html