greeting everyone ..
i have a question, it's a little bit niche but i sometimes need this during my personal files management ..
can "everything" display the total duration "sum of" the selected video files from results list in the status bar
the picture below show an example..
thanks alot for all ur efforts
[question] total duration of selected videos in status bar !!
Re: [question] total duration of selected videos in status bar !!
Showing the sum of the length is on my TODO list.
Thank you for the suggestion.
Thank you for the suggestion.
Re: [question] total duration of selected videos in status bar !!
Disclaimer: This works for me, but backup your Everything-1.5a.ini (just in case). You will need to use Everything v1327a as well.
If you add [iflen:$length:," Length: "[formatduration:$length:] after your statusbar_selected_item_format= line, video file duration times will appear in the status bar. My entire line looks like this:
statusbar_selected_item_format=$f [iflen:$length:," Length: "[formatduration:$length:]
Note: I added a couple of extra spaces after the =$f part so the Length displayed won't be too crowded.
BTW: I asked @void a few days ago how to prevent Everything from showing leading zeros in duration times, because they're kind of annoying to me. He pulled through just a few days later (he's awesome like that). To disable leading zeros, perform the following 3 steps (you will need to wait a few seconds between each of the following steps):
1. Copy and paste /duration_format= in the Search Edit field, then press Enter.
2. Copy and paste /duration_auto_format_hours=h:mm:ss in the Search Edit field, then press Enter.
3. Copy and paste /duration_auto_format_minutes=m:ss in the Search Edit field, then press Enter.
Now, whenever you select a video file in the Result List, the duration (Length) of that video will be shown in the status bar. I like to know what resolution video files are (for example, 1920 x 1080), so this is my complete command:
statusbar_selected_item_format=$f [iflen:$dimensions:," Dimensions: "$dimensions:] [iflen:$length:," Length: "[formatduration:$length:]
Hope this helps!
If you add [iflen:$length:," Length: "[formatduration:$length:] after your statusbar_selected_item_format= line, video file duration times will appear in the status bar. My entire line looks like this:
statusbar_selected_item_format=$f [iflen:$length:," Length: "[formatduration:$length:]
Note: I added a couple of extra spaces after the =$f part so the Length displayed won't be too crowded.
BTW: I asked @void a few days ago how to prevent Everything from showing leading zeros in duration times, because they're kind of annoying to me. He pulled through just a few days later (he's awesome like that). To disable leading zeros, perform the following 3 steps (you will need to wait a few seconds between each of the following steps):
1. Copy and paste /duration_format= in the Search Edit field, then press Enter.
2. Copy and paste /duration_auto_format_hours=h:mm:ss in the Search Edit field, then press Enter.
3. Copy and paste /duration_auto_format_minutes=m:ss in the Search Edit field, then press Enter.
Now, whenever you select a video file in the Result List, the duration (Length) of that video will be shown in the status bar. I like to know what resolution video files are (for example, 1920 x 1080), so this is my complete command:
statusbar_selected_item_format=$f [iflen:$dimensions:," Dimensions: "$dimensions:] [iflen:$length:," Length: "[formatduration:$length:]
Hope this helps!
Re: [question] total duration of selected videos in status bar !!
I'm sorry, but doesn't $total-result-length: (requires length indexing) and $total-selection-length: (requires length indexing) already do this? As per Custom status bar formatting
Re: [question] total duration of selected videos in status bar !!
I had forgotten about $total-result-length: and $total-selection-length:!
These statusbar formats are a little hacky.
I'm looking into an option to show the total length on the right in its own statusbar part to make this easier.
Ideally, this would be enabled by default.
Showing the total length will most likely require length indexing.
These statusbar formats are a little hacky.
I'm looking into an option to show the total length on the right in its own statusbar part to make this easier.
Ideally, this would be enabled by default.
Showing the total length will most likely require length indexing.