Office document, image, audio/video format conversion tools, office conversion tools
1. Audio/Video Conversion Tool VLC
- 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. 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=} '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. Document conversion: OfficeToPDF
- Http://officetopdf.codeplex.com/documentation
Officetow..exe % 1% 2/bookmarks/readonly/print/markup/pdfa
3. Image conversion: ImageMagick
- Http://www.imagemagick.org/script/convert.php
Convert-auto-orient input.jpg output.png
PS: For VLC and OfficeToPDF, You need to configure the environment variable PATH. The code is written to the bat file and then called directly in the C # program.