Skip to content

Commit 8c4583a

Browse files
committed
asd
0 parents  commit 8c4583a

File tree

146 files changed

+2954
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+2954
-0
lines changed

.gitignore

+198
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
.gradle
9+
bin/
10+
tmp/
11+
target/
12+
*.tmp
13+
*.bak
14+
*.swp
15+
*~.nib
16+
local.properties
17+
.classpath
18+
.settings/
19+
.loadpath
20+
21+
.DS_Store
22+
23+
# External tool builders
24+
.externalToolBuilders/
25+
26+
# Locally stored "Eclipse launch configurations"
27+
*.launch
28+
29+
# CDT-specific
30+
.cproject
31+
32+
# PDT-specific
33+
.buildpath
34+
35+
36+
#################
37+
## Visual Studio
38+
#################
39+
40+
## Ignore Visual Studio temporary files, build results, and
41+
## files generated by popular Visual Studio add-ons.
42+
43+
# User-specific files
44+
*.suo
45+
*.user
46+
*.sln.docstates
47+
48+
# Build results
49+
50+
[Dd]ebug/
51+
[Rr]elease/
52+
x64/
53+
build/
54+
[Bb]in/
55+
[Oo]bj/
56+
57+
# MSTest test Results
58+
[Tt]est[Rr]esult*/
59+
[Bb]uild[Ll]og.*
60+
61+
*_i.c
62+
*_p.c
63+
*.ilk
64+
*.meta
65+
*.obj
66+
*.pch
67+
*.pdb
68+
*.pgc
69+
*.pgd
70+
*.rsp
71+
*.sbr
72+
*.tlb
73+
*.tli
74+
*.tlh
75+
*.tmp
76+
*.tmp_proj
77+
*.log
78+
*.vspscc
79+
*.vssscc
80+
.builds
81+
*.pidb
82+
*.log
83+
*.scc
84+
85+
# Visual C++ cache files
86+
ipch/
87+
*.aps
88+
*.ncb
89+
*.opensdf
90+
*.sdf
91+
*.cachefile
92+
93+
# Visual Studio profiler
94+
*.psess
95+
*.vsp
96+
*.vspx
97+
98+
# Guidance Automation Toolkit
99+
*.gpState
100+
101+
# ReSharper is a .NET coding add-in
102+
_ReSharper*/
103+
*.[Rr]e[Ss]harper
104+
105+
# TeamCity is a build add-in
106+
_TeamCity*
107+
108+
# DotCover is a Code Coverage Tool
109+
*.dotCover
110+
111+
# NCrunch
112+
*.ncrunch*
113+
.*crunch*.local.xml
114+
115+
# Installshield output folder
116+
[Ee]xpress/
117+
118+
# DocProject is a documentation generator add-in
119+
DocProject/buildhelp/
120+
DocProject/Help/*.HxT
121+
DocProject/Help/*.HxC
122+
DocProject/Help/*.hhc
123+
DocProject/Help/*.hhk
124+
DocProject/Help/*.hhp
125+
DocProject/Help/Html2
126+
DocProject/Help/html
127+
128+
# Click-Once directory
129+
publish/
130+
131+
# Publish Web Output
132+
*.Publish.xml
133+
*.pubxml
134+
# built application files
135+
*.apk
136+
*.ap_
137+
138+
# files for the dex VM
139+
*.dex
140+
141+
# Java class files
142+
*.class
143+
144+
# generated files
145+
bin/
146+
gen/
147+
148+
# Local configuration file (sdk path, etc)
149+
local.properties
150+
*.pydevproject
151+
.project
152+
.metadata
153+
bin/**
154+
tmp/**
155+
tmp/**/*
156+
*.tmp
157+
*.bak
158+
*.swp
159+
*~.nib
160+
local.properties
161+
.classpath
162+
.settings/
163+
.loadpath
164+
165+
# External tool builders
166+
.externalToolBuilders/
167+
168+
# Locally stored "Eclipse launch configurations"
169+
*.launch
170+
171+
# CDT-specific
172+
.cproject
173+
174+
# PDT-specific
175+
.buildpath
176+
177+
# NuGet Packages Directory
178+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
179+
#packages/
180+
181+
# Windows Azure Build Output
182+
csx
183+
*.build.csdef
184+
185+
# Windows Store app package directory
186+
AppPackages/
187+
188+
# Others
189+
sql/
190+
*.Cache
191+
ClientBin/
192+
[Ss]tyle[Cc]op.*
193+
~$*
194+
*~
195+
*.dbmdl
196+
*.[Pp]ublish.xml
197+
*.pfx
198+
*.publishsettings

README.txt

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
AppName: ViVideo
2+
3+
Target Platform: Android min sdk version:9
4+
5+
Description: Vivideo is an entertaining app for creating videos with support of realtime effects.
6+
User can choose music to play, set timer, start recording and change effect to apply while recording.
7+
Pause/resume can be done during recording. The camera flash can be used for back camera.
8+
Moreover user can make a list of effects and choose a duration
9+
for changing effects to apply before start recording and enjoy recording with different effects without holding device.
10+
If it is available user can use the front camera for recording.
11+
Recorded vivideos can be watched via application.
12+
13+
Libraries:
14+
Beside android api, some other libraries such as javacv, javacpp, ffmpeg for android are used in the development of the app.
15+
Since these libraries are embeded in the app, Vivideo is an independent app and needs no external file or application to run.
16+
(There are some .so files under /lib/armeabi which are basically c++ code and other libraries are wrapper for these code to run on java)
17+
18+
Instructions for install:
19+
1- To use the source code after importing the project in eclipse or android studio, running the application on an android device
20+
with a suitable system will be sufficient.
21+
22+
2- Another way can be exporting .apk file first, sending to device via mail or with usb and installing on device using
23+
offered managers by device.
24+
25+
3- Vivideo is not on android market yet. Since there is another application for ios pc with the same name
26+
it will be available with a different name. Until it is available, here is a link to download directly:
27+
https://www.dropbox.com/s/63fpr55hlf1hq48/ViVideo.apk

Vivideo/.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/compiler.xml

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/copyright/profiles_settings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/dictionaries/okan.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/encodings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/libraries/dexedLibs.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/libraries/libs.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vivideo/.idea/libraries/libs2.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)