mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Show the file path of the exported output video.
PiperOrigin-RevId: 535233266
(cherry picked from commit 86515f8683)
This commit is contained in:
parent
7047f44564
commit
d7e5c1bb0b
2 changed files with 2 additions and 2 deletions
|
|
@ -659,7 +659,7 @@ public final class TransformerActivity extends AppCompatActivity {
|
||||||
private void onCompleted(Uri inputUri, String filePath) {
|
private void onCompleted(Uri inputUri, String filePath) {
|
||||||
exportStopwatch.stop();
|
exportStopwatch.stop();
|
||||||
informationTextView.setText(
|
informationTextView.setText(
|
||||||
getString(R.string.export_completed, exportStopwatch.elapsed(TimeUnit.SECONDS)));
|
getString(R.string.export_completed, exportStopwatch.elapsed(TimeUnit.SECONDS), filePath));
|
||||||
progressViewGroup.setVisibility(View.GONE);
|
progressViewGroup.setVisibility(View.GONE);
|
||||||
debugFrame.removeAllViews();
|
debugFrame.removeAllViews();
|
||||||
inputCardView.setVisibility(View.VISIBLE);
|
inputCardView.setVisibility(View.VISIBLE);
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
<string name="debug_preview_not_available" translatable="false">No debug preview available.</string>
|
<string name="debug_preview_not_available" translatable="false">No debug preview available.</string>
|
||||||
<string name="export_started" translatable="false">Export started</string>
|
<string name="export_started" translatable="false">Export started</string>
|
||||||
<string name="export_timer" translatable="false">Export started %d seconds ago.</string>
|
<string name="export_timer" translatable="false">Export started %d seconds ago.</string>
|
||||||
<string name="export_completed" translatable="false">Export completed in %d seconds.</string>
|
<string name="export_completed" translatable="false">Export completed in %d seconds.\nOutput: %s</string>
|
||||||
<string name="export_error" translatable="false">Export error</string>
|
<string name="export_error" translatable="false">Export error</string>
|
||||||
<string name="trim_range">Bounds in seconds</string>
|
<string name="trim_range">Bounds in seconds</string>
|
||||||
<string-array name="color_filter_options">
|
<string-array name="color_filter_options">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue