@BenKatz88: For legal reasons, I cannot include a so-called multiplexer into LectureVideos (multiplexing is the process by which the video and audio stream are combined into one single so-called container file such as MP4, AVI, or MKV). LectureVideos only uses what is provided by Android, and Android does not provide a multiplexer (this has changed with the latest version Android 4.3 which got published a few weeks ago, I will soon provide a LectureVideos version for devices running Android 4.3 that allows multiplexing within LectureVideos). Hence, LectureVideos produces two files per session, an encoded video file with extension `h264´ and an encoded audio file with extension `3gp´. To produce a container file, you need to use a tool such as FFmpeg which is available for all OS. Lets say you have video1.h264 (the video stream) and video1.3gp (the audio stream), you can produce an MP4 file using the command
where `-r 12´ states the frame rate (12 frames per second) and `-b 1.5M´ sets the output bit rate to 1.5Mbits per second. The resulting MP4 container file video1.mp4 can be viewed with all video viewers and uploaded to YouTube and other video platforms. There are graphical user interfaces available for essentially all OS, so that you do not need to worry about command line options.
There are FFmpeg ports for Android available in Google Play and other app stores, but I would rather recommend to perform the multiplexing on a `normal´ computer.
There are alternatives to ffmpeg such as mkvmerge (which produces an MKV container file), one LectureNotes user published a short video on that, http://www.youtube.com/watch?v=kTTc-2EtPAw.
Code:
ffmpeg -r 12 -i video1.h264 -i video1.3gp -b 1.5M video1.mp4
There are FFmpeg ports for Android available in Google Play and other app stores, but I would rather recommend to perform the multiplexing on a `normal´ computer.
There are alternatives to ffmpeg such as mkvmerge (which produces an MKV container file), one LectureNotes user published a short video on that, http://www.youtube.com/watch?v=kTTc-2EtPAw.