This blog has moved! Redirecting...
You should be automatically redirected. If not, visit http://scrolls.mafgani.net/ and update your bookmarks.
You should be automatically redirected. If not, visit http://scrolls.mafgani.net/ and update your bookmarks.
Monday, December 03, 2007
Saturday, December 01, 2007
Embedded multimedia in LateX/Prosper
The movie15 package by Alexander Grahn is useful for this purpose. The movies embedded, however, cannot be viewed with any PDF reader on Linux.
Extracting Audio/Video
It's really easy to extract either audio or video from a multimedia file using 'ffmpeg'. To extract audio only:
And for video only, replace '-vn' with '-an' and '-acodec' with '-vcodec'.
ffmpeg is also commonly used as a transcoding tool.
$ ffmpeg -i inputfile -vn -acodec copy outputfile
And for video only, replace '-vn' with '-an' and '-acodec' with '-vcodec'.
ffmpeg is also commonly used as a transcoding tool.