You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate video from Bitmaps or a Canvas in Android.
2
+

3
+
4
+
Generate video from a Bitmap, Canvas, or resource drawable in Android.
3
5
4
6
Create mp4 video from Bitmaps or anything you can draw to a hardware accelerated Canvas. Pure, simple Android MediaCodec implementation. Requires no third party libs or NDK.
5
7
6
-
Currently supports the MP4 container and both AVC/H264 and HEVC/H265. Easily extensable to other supported formats.
8
+
Currently supports the MP4 container and both AVC/H264 and HEVC/H265. Easily extensible to other
9
+
supported formats.
7
10
8
-
Run the sample app or check out [CreateRunnable](app/src/main/java/com/homesoft/bitmap2video/CreateRunnable.java) for an example.
11
+
Run the sample app or check out
12
+
and [MainActivity](app/src/main/java/com/homesoft/bitmap2video/MainActivity.java)
13
+
for an example.
9
14
15
+
# Dependencies
10
16
Add it in your root build.gradle at the end of repositories:
11
17
12
18
allprojects {
@@ -16,8 +22,113 @@ Add it in your root build.gradle at the end of repositories:
0 commit comments