Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Reset

Pages: [1]
1
Support and Feedback / 8.1 No Access to NAS
« on: May 14, 2018, 09:21:50 »
With version 8.1, access to my NAS is no longer possible.
It is constantly required a password, where none is needed and if you want to enter one, comes a window, which claims that the server is busy.
This window can also be closed only by Task Manager again.

Access through Windows Explorer works fine.

Please fix.

(Sorry for the bad english, was translated with g Translate)

greeting


2
Support and Feedback / column width of the file extensions
« on: January 16, 2018, 11:52:29 »
Hi Guys!
I am an "old man" and do not see well, which is why I adapted something with the font size. Unfortunately, however, the column width of the file extensions does not automatically adapt to the larger font, so that these are only partially readable or by hand, the column width must be adjusted.

Is there a way to save the column width?

greeting

3
Documentation / design the homepage in two columns?
« on: January 16, 2018, 11:45:41 »
Hi Guys!

Would it be possible to design the homepage in two columns?
So that the previous content (left column, currently gray background) stops.
That would be really helpful, because I often have to book something for scripts.

Many Thanks!

4
Support and Feedback / access a network drive
« on: January 16, 2018, 11:31:46 »
If I want to access a network drive the first time, which requires a login, the MC does not ask for the login data.
I first have to log in via the normal Windows and can then access the release with MC.

Gruß

5
Script / Re: Copy and convert audio. Can I do this as a script?
« on: January 16, 2018, 11:21:30 »
A better way with a batch script:

Code: [Select]
for %%a in ("*.*") do ffmpeg -i "%%a" -acodec libmp3lame -b:a 192k -threads 2 "%%~na.mp3"
@echo "********** All Jobs done ***********"
@pause

Gruß

6
Script / Re: Copy and convert audio. Can I do this as a script?
« on: January 08, 2018, 12:01:29 »
You can speed up the Process, if you add the "-threads x" (where x is the Number of your CPU-Cores) to the ffmpeg Command.

Gruß

7
Script / Re: Get the source/target path based on the active panel
« on: November 06, 2017, 14:02:53 »
A question later: If no file was selected, then counts, over which the mouse pointer is?

Thanks for the answer

8
Script / Re: Copy and convert audio. Can I do this as a script?
« on: November 06, 2017, 08:23:12 »
I know it's an old post but maybe it will help someone else ;-)

It is possible by means of ffmpeg. https://www.ffmpeg.org/download.html
Here is a small script which converts a file from any format supported by ffmpeg from the active window to mp3 and places it in the inactivated window.

You just have to install a loop counter ;-)



Code: [Select]
@var $SourceFile = GetSourceFocusPath();
@var $TargetFile = GetTargetFocusPath();

@var $path = PathGetPathPart($TargetFile);
@var $name = PathGetNamePart($SourceFile, 1);

@var $s =' -i ' + '"' + $SourceFile + '" ' + '"' + $path + $name + '.mp3"';

MC.Run CMD="C:\ffmpeg\bin\ffmpeg.exe" ARG="{$s}"

Gruß

9
Support and Feedback / Re: Active Side every Time 75:25
« on: November 06, 2017, 06:47:19 »
Thank you for your answers.
I meant of course within the MC, the windows for the file display.
So that the active window is always at 75.

There would certainly be a event handler (as in VB) for needed.

But even if it does not work: I'm totally excited about the MC and he has mutated within a few days to the control center ... ;-)

Many Thanks!

10
Support and Feedback / Active Side every Time 75:25
« on: November 05, 2017, 08:24:35 »
Hi!

Is ther a Way to setup that every Time the active windows have the size of 75:25?

Thx

Sorry for my bad english

Pages: [1]