mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-05 23:18:53 -05:00
changes
This commit is contained in:
parent
aa94ae5b89
commit
b6a197a00f
@ -446,6 +446,10 @@ def edit_video(request):
|
||||
messages.add_message(request, messages.INFO, "Media processing has not finished yet")
|
||||
return HttpResponseRedirect(media.get_absolute_url())
|
||||
|
||||
if media.encoding_status in ["pending", "running"]:
|
||||
video_msg = "Media encoding hasn't finished yet. Attempting to show the original video file"
|
||||
messages.add_message(request, messages.INFO, video_msg)
|
||||
|
||||
return render(
|
||||
request,
|
||||
"cms/edit_video.html",
|
||||
|
||||
@ -3939,9 +3939,6 @@ const TimelineControls = ({
|
||||
<p className="modal-message">
|
||||
You're about to replace the original video with this trimmed version. This can't be undone.
|
||||
</p>
|
||||
<p className="modal-message">
|
||||
The original video will be replaced with this trimmed version.
|
||||
</p>
|
||||
</Modal>
|
||||
|
||||
{/* Save As Copy Modal */}
|
||||
@ -3973,9 +3970,6 @@ const TimelineControls = ({
|
||||
<p className="modal-message">
|
||||
You're about to save a new copy with your edits. The original video will stay the same. Find the new file in your My Media folder - named after the original file.
|
||||
</p>
|
||||
<p className="modal-message">
|
||||
A new copy of the video will be created with your trimmed segments.
|
||||
</p>
|
||||
</Modal>
|
||||
|
||||
{/* Processing Modal */}
|
||||
@ -4021,9 +4015,6 @@ const TimelineControls = ({
|
||||
<p className="modal-message">
|
||||
You're about to save each segment as a separate video. Find the new files in your My Media folder - named after the original file.
|
||||
</p>
|
||||
<p className="modal-message">
|
||||
Each segment will be saved with its name as the filename.
|
||||
</p>
|
||||
</Modal>
|
||||
|
||||
{/* Success Modal */}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user