Final Cut Pro: Creating an Easy Setup for capturing DV with 32 kHz audio


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Final Cut Pro: Creating an Easy Setup for capturing DV with 32 kHz audio
# 1  
Old 11-17-2008
Final Cut Pro: Creating an Easy Setup for capturing DV with 32 kHz audio

If you often need to capture DV (digital video) that has an audio sample rate of 32 kHz, you may want to create an Easy Setup in Final Cut Pro with all the necessary settings.Note: the typical reason to set your DV camcorder to record at 32 kHz is for 4-channel audio. In most circumstances, you'll get best results by setting the camcorder to record audio at the standard sample rate of 48 kHz (2-channel). Follow this procedure for capturing material already recorded at 32 kHz.

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

Previous Thread | Next Thread
Login or Register to Ask a Question
get_sound_input_cap_bits(3alleg4)				  Allegro manual				 get_sound_input_cap_bits(3alleg4)

NAME
get_sound_input_cap_bits - Checks which audio input sample formats are supported. Allegro game programming library. SYNOPSIS
#include <allegro.h> int get_sound_input_cap_bits(); DESCRIPTION
Checks which sample formats are supported by the current audio input driver, returning one of the bitfield values: 0 = audio input not supported 8 = eight bit audio input is supported 16 = sixteen bit audio input is supported 24 = both eight and sixteen bit audio input are supported Example: cap = get_sound_input_cap_bits(); if (cap == 0) { /* Ugh, no audio input supported? */ } else { if (cap & 8) { /* We have eight bit audio input. */ } if (cap & 16) { /* We have sixteen bit audio input. */ } } SEE ALSO
start_sound_input(3alleg4), get_sound_input_cap_parm(3alleg4), get_sound_input_cap_rate(3alleg4), get_sound_input_cap_stereo(3alleg4) Allegro version 4.4.2 get_sound_input_cap_bits(3alleg4)