Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently November 1st, 2024, 3:32 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 10 posts ] 
Author Message
 Post subject: Sound recording?
PostPosted: October 19th, 2007, 7:03 pm 
Offline

Joined: July 26th, 2005, 6:02 pm
Posts: 14
Hi all,

I am working on a project which needs to include sound recording capability.

So I need a sound recording software for distribution and having the command-line support.

Any ideas and advices will be appreciated.

Thanks for your assistance.

_________________
Doruk AR
Media Team

Opus Pro XE 5.5;
Windows XP Pro SP2;Intel® Core 2 Duo T5600 1,83 GHz 2 MB Cache ; 2GB RAM


For this message dorukar has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 19th, 2007, 7:39 pm 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 511
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
Have a look at
http://www.snapfiles.com/reviews/Sound_ ... pture.html

_________________
Whoever designed this, never actually used it!


For this message sandyn has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 21st, 2007, 2:29 pm 
Offline

Joined: July 26th, 2005, 6:02 pm
Posts: 14
Thanks for your reply Sandyn,

Actually the software you've sent has all the capabilities that I need. There is only one issue that I need to solve. The program has the capability of command-line option however I need a silent version which does not launch the Command Line screen in front of my publication.

Thanks again.

_________________
Doruk AR
Media Team

Opus Pro XE 5.5;
Windows XP Pro SP2;Intel® Core 2 Duo T5600 1,83 GHz 2 MB Cache ; 2GB RAM


For this message dorukar has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 21st, 2007, 8:55 pm 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 511
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
the only way I can see is to set the publication properties to display in a window, select always on top and force the size to the maximum size of your display. This hides the command window. This is not an ideal solution.


In the past, I've looked at programs which has the capability of hiding any window, unfortunately most virus checkers will assume it's a virus... up to no good and the alarm bells go off!!

I couldn't see a 'stop record' command?? Once you get the sound recorder running...how do you intend stopping it?? or will you just set it to record for a period of time??

A previous post mentioned an application which terminates other applications

viewtopic.php?t=2803&highlight=command+line

_________________
Whoever designed this, never actually used it!


For this message sandyn has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 22nd, 2007, 12:02 am 
Have you thought of contacting the developer of this software?

I download and use a lot of freeware and have usually found the developers to be helpful when I've asked how to do something that isn't obvious. In some cases they have even added in the missing feature and released a new version.

That might be worth a try.


Top
   
 
 Post subject:
PostPosted: October 22nd, 2007, 3:56 am 
Offline

Joined: July 26th, 2005, 6:02 pm
Posts: 14
Thanks for your replies Sandyn and Sentosa.

sandyn,
I am giving a constant time period (5 seconds), so that I do not need any termination. Unfortunately "Always on top" solution is not ideal for me, because my application also should not be in windowed mode.

Sentosa,
I will do what you adviced, however my deadline for project submission is very soon. So that I am also interested in softwares which are not freeware, but I could not find any application that fulfills my requirements.

Thank you again for your time Sandyn and Sentosa.

_________________
Doruk AR
Media Team

Opus Pro XE 5.5;
Windows XP Pro SP2;Intel® Core 2 Duo T5600 1,83 GHz 2 MB Cache ; 2GB RAM


For this message dorukar has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 22nd, 2007, 4:17 am 
I cannot help you by giving you the name of an application that will solve your sound recording problem. I know from experience that stopping a running application from within Opus can be difficult.

It is likely that a resolution exists, but finding it can take a lot of time, and therefore might conflict with your time constraints.

Try a Google search for either (or both) "kill application" or "stop application". The use of the quotes are important. I scored about 700,000 hits for those. :shock:

You will also receive hits if, for your search, you substitute app for application.

If you find something that seems to do what you want under Windows, there is no guarantee that the application will successfully operate when triggered from within Opus.

Sorry I can't be more positive than this for you, but that's the reality as I found it.


Top
   
 
 Post subject:
PostPosted: October 22nd, 2007, 8:26 am 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 511
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
What you need is a sound recording DLL and Opus V6, BUT unfortunately There doesn't seem to be a DLL which will work with Opus.
see
viewtopic.php?t=2768&highlight=sound+recording+dll
I tried to get bass.dll to work, but couldn't, but there is an error in the code I used for running the DLL. I had been using' "false" 'and it should be' false' so I will try it again to see if I can get it to work.

Sandy

_________________
Whoever designed this, never actually used it!


For this message sandyn has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Sound recording DLL
PostPosted: October 23rd, 2007, 10:25 pm 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 511
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
Well, some interesting progress on the sound recorder DLL, but not a great deal yet...haven't had much time to spend on it.
Seems that the "false"/false doesn't seem to make any difference...works with both, but since it should be a boolean I have used false without double quotes.

the code I am using is:-

Code:
function LoadAudio()
       {

   if(MyDLL3=LoadDLL(SYSTEM_WINSYS_DIR+"bass.dll"))
   {
      Debug.trace("BASS loaded"+"\n")
     }

     else
     {
      Debug.trace("Bass not loaded")
     }
}//End LoadAudio



function TestIt()
{         
      GetRev=MyDLL3.CallFn("BASS_GetVersion",false,"ulong")
   Debug.trace("\n"+GetRev+"=Rev"+"\n")
}//End TestIt



function FreeIt()
{
   if(MyDLL3.CallFn("BASS_Free()",false,"none"))
    {
       Debug.trace("\n"+"Free ran"+"\n")
      }
    else
    {
      Debug.trace("\n"+"Bummer free didn't run"+"\n")
   }
    Debug.trace("\n"+"done"+"\n")         
}//End FreeIt


When I ran the TestIt function, the Debug window returned a value 3.3751 E+007. This should return the revision of the DLL, which should be 2.3.03, so obviously not correct, however after looking at the DLL help file, the returned value is a HEX DWORD, the HiByte contains the major revision and the LoByte the minor revision, so I tried using an array and some other things, but I still didn't get the correct answer. Then I tried inserting the returned value into a text box and the actual value was 33751043, so the debug window was truncating and changing to scientific notation.
BUT 33751043 DEC=2030003 HEX and this IS the revision of the DLL, so it works!!!!!

the next step is to figure out the process of recording!! and how to save it to a file??

Sandy

_________________
Whoever designed this, never actually used it!


For this message sandyn has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: October 30th, 2007, 12:07 am 
Offline

Joined: July 26th, 2005, 6:02 pm
Posts: 14
Sandy

Thanks for yout assistance,
I decided to use HarddiskOgg software for my application. I have some performance issues, but the software is fulfilling my requirements.

Anyway thank you very much for your time.

_________________
Doruk AR
Media Team

Opus Pro XE 5.5;
Windows XP Pro SP2;Intel® Core 2 Duo T5600 1,83 GHz 2 MB Cache ; 2GB RAM


For this message dorukar has been thanked by : mackavi


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 10 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 61 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group