Search found 234 matches

by 40k
15 Jul 2013 11:21
Forum: Bug Reports
Topic: Global variable not resolved in foreach() loops
Replies: 29
Views: 3885

Re: Global variable not resolved in foreach() loops

PeterH wrote:
klownboy wrote: ... and I had also used up my quota of questions for the month ...
:lol: very fine :lol:

Could you give me that value :whistle:
So to clear any confusion, is the official word from Don that parameters inside a function should be quoted either with double or single quotes?
by 40k
15 Jul 2013 11:15
Forum: Script Exchange
Topic: YouTube.com 0.7 - GUI for youtube-dl
Replies: 94
Views: 29407

Re: Youtube.com 0.6.5 - More Batch download improvement

New feature coming up in 0.7 will be "Play in <insert your media player>". The script will allow you to play your chosen video directly in your favorite media playe, as long as it supports streaming video via http. VLC, MPC, Windows Media Player, Quicktime, ... are just a few popular playe...
by 40k
14 Jul 2013 17:03
Forum: Wishes
Topic: return output from cmd console
Replies: 7
Views: 2313

Re: return output from cmd console

I got problem in this step: "AHK execute the cmd and retrieve the output" It is possible here: http://www.autohotkey.com/board/topic/3489-cmdret-return-output-from-console-progs-dll-version/ but works only in AHK_Basic (ANSI version) while I use AHK_L (Unicode version). I'm in Vietnam, so...
by 40k
14 Jul 2013 17:01
Forum: Bug Reports
Topic: Global variable not resolved in foreach() loops
Replies: 29
Views: 3885

Re: Global variable not resolved in foreach() loops

PeterH wrote:Sad to say: this seems to be a bug :(

By the way: you should also quote a string like | - but this isn't the reason for the current problem.
Don doesn't quote any function parameters in the Help file so I just followed his lead there.
by 40k
14 Jul 2013 16:28
Forum: Script Exchange
Topic: FFmpeg 0.5 14/07/13 GUI, Batch converting, Metadata analysis
Replies: 5
Views: 6901

Re: FFmpeg 0.5 14/07/13 GUI, Batch converting, Metadata anal

Discovered a small error in the way audio bitrate is formatted. The values are correct but audio bitrate should obviously read 192 kb/s and not 192,000 kb/s I've updated the code on pastebin and in the attachment so all is well :) Also please note that the Bit Rate indication for files in variable b...
by 40k
14 Jul 2013 14:49
Forum: Script Exchange
Topic: FFmpeg 0.5 14/07/13 GUI, Batch converting, Metadata analysis
Replies: 5
Views: 6901

Re: FFmpeg 0.5 14/07/13 GUI, Batch converting, Metadata anal

Full meta data analysis through the new "List selection Metadata" feature.
The script uses ffprobe, included in the ffmpeg package, to show you meta data. Even the most obscure formats can be analyzed!
by 40k
13 Jul 2013 15:33
Forum: Script Exchange
Topic: FFmpeg 0.5 14/07/13 GUI, Batch converting, Metadata analysis
Replies: 5
Views: 6901

Re: FFmpeg 0.4 - Xyplorer GUI + Batch converting

Here is a small sneak peek at one of the new features I am developing: fully customizable media file analysis through ffprobe (included with the free ffmpeg package):

Image
by 40k
13 Jul 2013 14:25
Forum: Bug Reports
Topic: Global variable not resolved in foreach() loops
Replies: 29
Views: 3885

Global variable not resolved in foreach() loops

{ global $g_FFprobe; global $g_ExecutionFile; global $g_DumpFileFFprobe; delete (0, 0, $g_DumpFileFFprobe); global $g_Files = get ('selecteditemspathnames', |, a); global $g_File; global $g_FileMeta; foreach ($g_File, $g_Files, |){ msg $g_File; sub "_ReadMetaData"; text $g_FileMeta; } } I...
by 40k
13 Jul 2013 13:18
Forum: Script Exchange
Topic: YouTube.com 0.7 - GUI for youtube-dl
Replies: 94
Views: 29407

Re: Youtube.com 0.6.5 - More Batch download improvement

Because of the way the script currently handles batch downloading through VLC I have discovered there are some limitations imposed by windows. Before Windows XP the maximum command line length was 2000 characters. Windows XP increased that to 8191 characters. Windows 7 reportedly improved to over 32...
by 40k
13 Jul 2013 13:00
Forum: Script Exchange
Topic: 7zip basic script
Replies: 37
Views: 10004

Re: 7zip basic script

From experience I would avoid using triple quoting. In general I have found the following modus operandi to work very well. Use single quotes when your string does not include variables. $ZipExe = 'c:\Program Files\7-zip\7zip.exe'; Use single quotes in combination with double quotes to quote command...
by 40k
12 Jul 2013 13:09
Forum: Script Exchange
Topic: Twitch.tv VLC 2.0 06/1/14: Twitch.tv HLS revamp
Replies: 29
Views: 16126

Re: Twitch.tv VLC 1.2 05/07/13 - Followed Streams update!

Some tweaks: To automatically hide the rtmpdump command console window adjust the code in the script as follows: //Original 1.2 code: //run ($g_ExecutionFile, , 0, 1); //Modified code: run ($g_ExecutionFile, , 0, 0); The script will not work if you already have an instance of rtmpdump or VLC running...
by 40k
05 Jul 2013 19:12
Forum: Script Exchange
Topic: Twitch.tv VLC 2.0 06/1/14: Twitch.tv HLS revamp
Replies: 29
Views: 16126

Re: Twitch.tv VLC 1.2 05/07/13 - Followed Streams update!

Major update on this one. New code now checks which streams you Follow or have Recently Watched and that are currently online, then shows them to you in a list :)
by 40k
05 Jul 2013 18:12
Forum: Script Exchange
Topic: SC: Formatlist "dedupe" of lists not in alphabetical order
Replies: 7
Views: 1395

Re: SC: Formatlist "dedupe" of lists not in alphabetical ord

admin wrote:As advertised in help:
"Removing duplicates only works on adjacent items, so if the list is not sorted non-adjacent duplicates remain in the list."
Oh. :whistle:
by 40k
05 Jul 2013 17:46
Forum: Script Exchange
Topic: SC: Formatlist "dedupe" of lists not in alphabetical order
Replies: 7
Views: 1395

SC: Formatlist "dedupe" of lists not in alphabetical order

For example:

a|b|d|e|b|a does not dedupe "b" or "a".
by 40k
04 Jul 2013 19:28
Forum: Script Exchange
Topic: Script: Send files to Android device over USB
Replies: 6
Views: 2447

Re: Script: Send files to Android device over USB

Just wondering...what advantages does this have over http://www.airdroid.com/ which I and others use all the time for this type function? I presume you're aware of AirDroid? If not, why not? This works when you need it to work. Air droid needs a WiFi connection. Aside from that, you should not need...