Search found 15 matches

by DarKHawK
15 May 2023 20:25
Forum: Tips & Tricks, Questions & Answers
Topic: Visual Filter by selected text or clipboard
Replies: 2
Views: 232

Visual Filter by selected text or clipboard

Hi, Is there an option to apply a visual filter by the selected text (from file name editing) or from the data in the clipboard. Instead of selecting the text > copying it to clipboard > pasting it in the visual filter. Also is there an option to close the visual filter by a keyboard shortcut, or en...
by DarKHawK
12 May 2023 18:27
Forum: Script Exchange
Topic: Send shortcut "link" of selected item to a specific folder
Replies: 2
Views: 323

Send shortcut "link" of selected item to a specific folder

Hi, I need a script to send a shortcut of the selected file/files to a specific folder. This script creates a shortcut of the current selected file in the same folder: foreach($file, "<get SelectedItemsPathNames |>") { if (exists($file) == 1) { new(getpathcomponent($file, "base")...
by DarKHawK
10 May 2023 15:04
Forum: Tips & Tricks, Questions & Answers
Topic: A way to show some video details in the floating preview window?
Replies: 2
Views: 214

Re: A way to show some video details in the floating preview window?

Seems like this is not possible, or will be possible once you reach the "Quick Video Preview" in the roadmap.

Is it possible to add extra information from mediainfo to either the Hoverbox or file info tooltips?
by DarKHawK
09 May 2023 13:13
Forum: Tips & Tricks, Questions & Answers
Topic: A way to show some video details in the floating preview window?
Replies: 2
Views: 214

A way to show some video details in the floating preview window?

Hi,

Is there a way to show some video details in the floating preview window like video length and video bitrate using mediainfo?

Thanks.
by DarKHawK
07 Apr 2023 21:05
Forum: Tips & Tricks, Questions & Answers
Topic: Mediainfo Bitrate number formate
Replies: 3
Views: 181

Mediainfo Bitrate number formate

Hi, Using this script to get the bitrate of video files: $round = 1; $div = "."; $mediaInfo = "C:\MediaInfo\MediaInfo.exe"; $length = regexreplace(runret("$mediaInfo --Inform=Video;%BitRate% ""<cc_item>"""), "\n"); return $length; It return...
by DarKHawK
23 Jun 2017 12:20
Forum: Script Exchange
Topic: Video Aspect Ratio Column
Replies: 2
Views: 1289

Re: Video Aspect Ratio Column

Thank you.
by DarKHawK
23 Jun 2017 01:19
Forum: Script Exchange
Topic: Video Aspect Ratio Column
Replies: 2
Views: 1289

Video Aspect Ratio Column

Hello,

I need help with a script that displays video files aspect ratio, or Width/Height result.

Thanks.
by DarKHawK
27 Apr 2016 00:48
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard shortcut to Jump to Next folder
Replies: 7
Views: 1378

Re: Keyboard shortcut to Jump to Next folder

I found what's wrong. If the root folder had "#" in it I get that strange behavior I described earlier. #newfolder --1 --2 --3 --4 Jumping from 2 to 3 makes a jump back 1. If I removed the "#" from the newfolder the script works fine. Also happens with the next scinario when the ...
by DarKHawK
26 Apr 2016 22:51
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard shortcut to Jump to Next folder
Replies: 7
Views: 1378

Re: Keyboard shortcut to Jump to Next folder

This script jumps to first subfolder in the current main folder. mainfolder ---subfolder1 ---subfolder2 ---subfolder3 ---subfolder4 ---subfolder5 ---subfolder6 If I'm in subfolder 2-6 and I run the script I jump to subfolder1 What I need is that If I'm in subfolder2 for example and ran the script I ...
by DarKHawK
26 Apr 2016 20:09
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard shortcut to Jump to Next folder
Replies: 7
Views: 1378

Re: Keyboard shortcut to Jump to Next folder

Thank you for your reply. I didn't mean it like that. For that I would use the arrow keys. I mean if I'm currently in a folder which contains files. I want to jump directly to the next folder and open it. mainfolder subfolder1 subfolder2 subfolder3 If I'm current in subfolder2 viewing those files, I...
by DarKHawK
26 Apr 2016 18:06
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard shortcut to Jump to Next folder
Replies: 7
Views: 1378

Keyboard shortcut to Jump to Next folder

Hi,

Is there any hidden to jump to the next inline folder?

Thanks.
by DarKHawK
25 Nov 2012 04:57
Forum: Tips & Tricks, Questions & Answers
Topic: Rename Files with folder name.
Replies: 1
Views: 733

Rename Files with folder name.

Hello,

How do I rename files in a folder with the folder name?
Example:
Folder name AAA, files names are 111.x 222.x 333.x.

What's the pattern to use with batch rename to make it look like :
AAA - 111.x
AAA - 222.x
AAA - 333.x

Thank you.