mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 15:15:51 +03:00
[GH-ISSUE #848] [Feature Request] Smarter default export location & smarter filename #665
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#665
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Garfounkel on GitHub (Apr 26, 2021).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/848
The editor always defaults the exported file location to the last exported folder, which makes sense when using ScreenToGif as a recorder, but I find myself often importing mp4 files directly into the editor instead. In that case, it would make more sense to default the export folder to the location of the imported mp4. This would remove the unnecessary back and forth when working on multiple projects at the same time.
With the same idea in mind, the name of the output file could also be made smarter by allowing the use of the imported file as a special symbol similar to #282. Maybe
%i%for input file.For instance if I import
Somefolder/my_video.mp4into the editor,%i%.gifwould output a file namedmy_video.giflocated inSomefolderby default.If the template name use
%i%while no file was imported (for instance when using the Screen recorder directly), just give a warning that%i%will be blank in that case.@hced commented on GitHub (May 15, 2021):
Adding to this, I (humbly) wish there could be a date/time symbol for filenames, so you don't have to mind your saved filenames at all.
filename_yyyymmddhhmmss.giffor example.@NickeManarin commented on GitHub (May 15, 2021):
This is already implemented, just type the date/time format between ??, like
?yyy-MM-dd?.gif.@hced commented on GitHub (May 15, 2021):
@NickeManarin You’re a god! I’m very thankful for this beautiful piece of app. Thanks, the missing piece was not even missing.
@hced commented on GitHub (May 15, 2021):
@NickeManarin Just a quick question: I'm using this format:
filename_?yyyMMdd_HH_MM_ss?and every digit works except for the minutes, which would always generate a5, likegif_20210515_21_05_17.gif,gif_20210515_21_05_04.gif, etc. Is something wrong with my format? Five minutes past nine was actually correct the first time I saved a file, but as it went past that time, the minutes would not change. Probably same for hours.@NickeManarin commented on GitHub (May 15, 2021):
MM = Month
mm = Minutes
Search for c# date/time format.