Skip to content

Commit

Permalink
Android application for video editing
Browse files Browse the repository at this point in the history
My first android project, so any forking is good. You are welcome to
use/edit the project.

Basically you can edit/convert/format any kind of video right on your
android device.
You can do the same with your songs.

FFMPEG engine is used at the core to perform my functions.

I would be uploading screenshots in short time.

My first Commit.. So any suggestions are  welcome
  • Loading branch information
Jay Sardhara committed Nov 3, 2015
1 parent f702699 commit 5a97f7e
Show file tree
Hide file tree
Showing 307 changed files with 17,069 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="lib" path="C:/Users/Jay/workspace/DraggableGridViewSample/libs/DraggableGridView.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>VideoMixer</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
4 changes: 4 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6
57 changes: 57 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.videomixer"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>


<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme" >

<activity android:name="com.welcome.pkg.Base" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name="com.video.pkg.Slide_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidSndEdit_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_SndEdit" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidMerge_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidMerge_SngAdd" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Aud_Convert" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidConvert_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_Convert" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Custom_Draggable_Gridview" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.CustomGallery_Pics" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidRotate_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.welcome.pkg.Gallery_Intiator" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_Rotater" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Welcome" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.vid_arranger" android:label="@string/app_name" android:screenOrientation="landscape" ></activity>
<activity android:name="com.video.pkg.CustomGallery_VidMerge" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VMixer" android:label="@string/app_name" android:screenOrientation="landscape" ></activity>
<activity android:name="com.video.pkg.MergeSelector" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.AudioScrapper" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Combiner" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Editor" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Aud_Vid_Merger" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Initiator" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.After_edit_snd" android:label="@string/app_name"></activity>

</application>

</manifest>
57 changes: 57 additions & 0 deletions bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.videomixer"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>


<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme" >

<activity android:name="com.welcome.pkg.Base" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name="com.video.pkg.Slide_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidSndEdit_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_SndEdit" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidMerge_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidMerge_SngAdd" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Aud_Convert" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidConvert_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_Convert" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Custom_Draggable_Gridview" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.CustomGallery_Pics" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VidRotate_Engine" android:label="@string/app_name"></activity>
<activity android:name="com.welcome.pkg.Gallery_Intiator" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Vid_Rotater" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.Welcome" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.vid_arranger" android:label="@string/app_name" android:screenOrientation="landscape" ></activity>
<activity android:name="com.video.pkg.CustomGallery_VidMerge" android:label="@string/app_name"></activity>
<activity android:name="com.video.pkg.VMixer" android:label="@string/app_name" android:screenOrientation="landscape" ></activity>
<activity android:name="com.video.pkg.MergeSelector" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.AudioScrapper" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Combiner" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Editor" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Aud_Vid_Merger" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.Initiator" android:label="@string/app_name"></activity>
<activity android:name="com.soundedit.pkg.After_edit_snd" android:label="@string/app_name"></activity>

</application>

</manifest>
Loading

0 comments on commit 5a97f7e

Please sign in to comment.