-
Listening to some SNDH some sound distorted. The output level does seem quite high.
for example
http://modstream.exotica.org.uk/modstream/?id=322461.
2009-06-21 10:41:34 UTC in sc68 - Atari ST and Amiga music player
-
Silence detection would be really useful, so that it skips to the next track if x amount of seconds of silence are detected. UADE has a similar feature and it is very useful!
2009-06-20 23:25:55 UTC in sc68 - Atari ST and Amiga music player
-
I have compiled sc68 on linux. It works with sndh files but not those
which are of type sndh_ice.
it gives the output
jools@aero:~/temp$ sc68 There_Are_No_Sheep.sndh
Track : 0/1
Title : Ooh Crikey - No Sheep
Author : Mad Max
Composer : Mad Max
Replay : built-in
Hardware : Yamaha-2149
Start time : 0:00
Duration : 01 00:00
Track : 1/1
Title : Ooh...
2009-05-18 16:34:12 UTC in sc68 - Atari ST and Amiga music player
-
I found the source of the problem. Debian ships with a custom patch (patch 2001) that adds a "configuration" option to not display the chart. The patch is broken as it breaks the average display. I fixed it by
apt-get source awstats
and then reversing the patch in
debian/patches/2001_hide_days_charts.patch
the broken patch is
Index: awstats-6.9/wwwroot/cgi-bin/awstats.pl.
2009-04-03 22:40:15 UTC in AWStats
-
I don't see any graphic above the days of month section?
http://www.exotica.org.uk/~buzz/awstats.png.
2009-04-03 22:09:01 UTC in AWStats
-
Hi,
I just upgraded from awstats 6.7 to awstast 6.9 (debian package).
I am running it in cgi mode generating the html in realtime.
I noticed that the average display is wrong in the days on month. (or at least it looks wrong to me).
for example:
20 Mar 2009 1868 11012 35594 321.02 MB
21 Mar 2009 2084 15180 39300 331.64 MB
22 Mar 2009 952 7367 21609 196.90 MB
Average...
2009-03-22 14:04:20 UTC in AWStats
-
I am getting errors in ParseBlockVars function on the line
p_regexp.Replace(inText, p_variables_list.Item(aSubMatch))
in some cases where I have
Set oTpl=New ASPTemplate
...
oTpl.SetVariable "whatever", oRS("something")
and the error is
"Wrong number of arguments or invalid property assignment"
If the line above is changed to
oTpl.SetVariable "whatever", "" &...
2008-11-28 15:00:05 UTC in ASP Template
-
Adding a custom drag gadget (GTYP_WDRAGGING) to a window does not get the dimensions correct.
See the attached code.
Simple window with close gadget and square where you can drag the window around. However, on aros the drag area is wider than the width of the window and not only in the square (as it should be).
This bug breaks the functionality of Hivelytracker for example, as the "drag...
2007-07-17 20:49:19 UTC in AROS Research Operating System
-
I added a new function "Parsetofile" which is useful
to pregenerate html from a script.
public sub ParseToFile(sFile)
Dim sParsed,oFSO,oFile
sParsed=GetOutput
sFile=Server.MapPath(sFile)
Set oFSO=Server.CreateObject("Scripting.FileSystemObject")
Set oFile=oFSO.CreateTextFile(sFile,True)
oFile.Write(sParsed)
oFile.Close
end sub
Also there are a few places where a...
2007-05-07 18:47:43 UTC in ASP Template