-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathVideoCropping.java
139 lines (101 loc) · 4.23 KB
/
VideoCropping.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.rizwan.fastestvideotrimmer;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;
import com.rizwan.videocropper.interfaces.interfaces.interfaces.OnCropVideoListener;
import com.rizwan.videocropper.interfaces.interfaces.interfaces.OnTrimVideoListener;
import com.rizwan.videocropper.interfaces.interfaces.videoCropper;
public class VideoCropping extends AppCompatActivity implements OnTrimVideoListener, OnCropVideoListener {
private ProgressDialog progressDialog;
private videoCropper videoCropper;
private Context context = VideoCropping.this;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video_cropping);
//setting progressbar
progressDialog = new ProgressDialog(this);
progressDialog.setCancelable(false);
progressDialog.setMessage("Cropping Video.. Please Wait!!");
videoCropper = (videoCropper) findViewById(R.id.croppingactivity);
if (videoCropper != null) {
videoCropper.setMaxDuration(204); //3.40 Min
videoCropper.setOnTrimVideoListener(this);
videoCropper.setOnK4LVideoListener(this);
videoCropper.setDestinationPath("/storage/emulated/0/Download"); //custom path = /storage/emulated/0/
videoCropper.setVideoURI(Uri.parse(helper.Path));
videoCropper.setVideoInformationVisibility(true);
}
}
@Override
public void onVideoPrepared() {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(VideoCropping.this, "Perparing video", Toast.LENGTH_SHORT).show();
}
});
}
@Override
public void onTrimStarted() {
progressDialog.show();
}
@Override
public void getResult(final Uri uri) {
progressDialog.cancel();
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(VideoCropping.this, "Video Saved At: " + uri.getPath(), Toast.LENGTH_SHORT).show();
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Choose The Player")
.setItems(R.array.menu, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (which == 0){
Intent intent = new Intent(VideoCropping.this, VideoPlayer.class);
helper.Path = uri.getPath();
startActivity(intent);
finish();
}else if (which == 1){
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setDataAndType(uri, "video/mp4");
startActivity(intent);
finish();
}else {
Toast.makeText(VideoCropping.this, "select it", Toast.LENGTH_SHORT).show();
}
}
});
builder.show();
}
});
}
@Override
public void cancelAction() {
}
@Override
public void onError(final String message) {
progressDialog.cancel();
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(VideoCropping.this, message, Toast.LENGTH_SHORT).show();
}
});
}
/**
* Called when pointer capture is enabled or disabled for the current window.
*
* @param hasCapture True if the window has pointer capture.
*/
@Override
public void onPointerCaptureChanged(boolean hasCapture) {
}
}