Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Android App to Append Mp4 Videos or Merge Audio files with video files on your Android device.

Notifications You must be signed in to change notification settings

umair13adil/mp4parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

5 Commits

Repository files navigation

Android Mp4 Parser Audio and Video Merger

Android App to Append Mp4 Videos or Merge Audio files with video files on your Android device. Code is written in kotlin and supports RxJava2.

It has two basic features:

  • Append multiple Mp4 Videos into single video file
  • Mp4 Video Audio Overlay (Mux/Merge)

Note: Only Mp4 and AAC format files are supported.

Append Usage:

 val videoPaths = arrayListOf<String>(video.path, video2.path)
 val appendExample = AppendExample(videoPaths)
 
 //This will append video files together in a sequence they were added. Output will be a single video file.
 appendExample.append()
 .subscribeOn(Schedulers.io())
 .observeOn(AndroidSchedulers.mainThread())
 .subscribeBy(
 onNext = {
 if (TextUtils.isEmpty(it)) {
 showToast(getString(R.string.message_error))
 } else {
 Log.i(TAG, "Output Path: $it")
 showToast(getString(R.string.message_appended) + " " + it)
 }
 },
 onError = {
 it.printStackTrace()
 },
 onComplete = {}
 )

Merge Usage

 val mergeExample = MergeExample(video.path, audio2.path)
 
 //This will merge audio and video files together in a single video file.
 mergeExample.merge()
 .subscribeOn(Schedulers.io())
 .observeOn(AndroidSchedulers.mainThread())
 .subscribeBy(
 onNext = {
 if (TextUtils.isEmpty(it)) {
 showToast(getString(R.string.message_error))
 } else {
 Log.i(TAG, "Output Path: $it")
 showToast(getString(R.string.message_appended) + " " + it)
 }
 },
 onError = {
 it.printStackTrace()
 },
 onComplete = {}
 )

Library Used: Mp4Parser

About

Android App to Append Mp4 Videos or Merge Audio files with video files on your Android device.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /