Soundtrack: About Recording Latency


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Soundtrack: About Recording Latency
# 1  
Old 11-18-2008
Soundtrack: About Recording Latency

Audio recorded with Soundtrack may not be in sync with existing tracks in the project. After recording an audio clip, the clip is slightly out of sync with the other tracks in the project. Typically, this occurs on computers with a single microprocessor. The latency may be more pronounced on computers with slower microprocessors.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Solaris

Latency Test

Hi every one, we have a set up in solaris 8 and 9 and running many cshell scripts.. we are migrate to AIX . Now, i want to know the latency difference between two boxes(Solaris and AIX). Kindly help me to , how to do Latency test.. (2 Replies)
Discussion started by: Madhu Siddula
2 Replies

2. AIX

Latency Test

Hi every one, we have a set up in solaris 8 and 9 and running many cshell scripts.. we are migrate to AIX . Now, i want to know the latency difference between two boxes(Solaris and AIX). Kindly help me to , how to do Latency test.. (0 Replies)
Discussion started by: Madhu Siddula
0 Replies

3. Cybersecurity

iptables latency evaluation

Hello guys, I'm actually working on my master thesis which has for subject the evaluation of virtual firewall in a cloud environment. To do so, I installed my own cloud using OpenNebula (as a frontend) and Xen (as a Node) on two different machines. The Xen machine is my virtual firewall thanks... (2 Replies)
Discussion started by: Slaughterman
2 Replies

4. UNIX for Advanced & Expert Users

Determining typing latency

Hi all, When I use an editor (vi) that is spawned in a remote server, visually I could see the latency between typing a character/word and being displayed on the terminal. I could see this visually but how do I get a metric on this or how to quantify this? As expected, when I type in a editor... (6 Replies)
Discussion started by: matrixmadhan
6 Replies
Login or Register to Ask a Question
AuCreateBucket(3)					     Library Functions Manual						 AuCreateBucket(3)

Name
       AuCreateBucket - create a bucket

Synopsis
       #include <audio/audiolib.h>

       AuBucketID AuCreateBucket(server, format, tracks, access, sample_rate, nsamples, description, status)
	   AuServer *server;
	   AuUint32 format;
	   AuUint32 tracks;
	   AuUint32 access;
	   AuUint32 sample_rate;
	   AuUint32 num_samples;
	   AuString *description;
	   AuStatus *status; /* RETURN */

Arguments
       server	 Specifies the connection to the audio server.

       format	 Specifies  the  data  format  of  the audio data.  Currently, the following formats are defined: AuFormatULAW8, AuFormatLinearUn-
		 signed8, AuFormatLinearSigned8, AuFormatLinearSigned16MSB, AuFormatLinearUnsigned16MSB, AuFormatSignedLinear16LSB, and  AuFormat-
		 LinearUnsigned16LSB.

       tracks	 Specifies the number of tracks of the audio data.

       access	 Specifies  the  types	of operations permitted on this bucket.  This must be a bitwise inclusive OR of zero or more of these con-
		 stants: AuAccessImportMask, AuAccessExportMask, AuAccessDestroyMask, and AuAccessListMask.

       sample_rate
		 Specifies the sample rate of the audio data.

       num_samples
		 Specifies the number of samples the bucket will contain.

       description
		 Specifies a textual description of the bucket.  This may be NULL.

       status	 If non-NULL, flush the output buffer and return the status from the server.

Description
       AuCreateBucket creates a bucket with the specified attributes, and returns the bucket ID, or AuNone if there was  an  error.   The  initial
       contents of the bucket are undefined.

Errors
       AuBadValue, AuBadLength, AuBadAlloc.

See Also
       AuDestroyBucket, AuSetBucketAttributes, AuListBuckets, AuFreeBucketAttributes.

       audiolib - Network Audio System C Language Interface

audiolib - bucket existence					       1.9.3							 AuCreateBucket(3)