search for: audio_device

Displaying 2 results from an estimated 2 matches for "audio_device".

Did you mean: audio_device_t
2009 Jan 29
1
Question on script
...DMI (which I know how to do), then ignore everything upto the device work and take the next field after that? Thanks, Jerry I was doing this but it does not work for both cases. AUDIO_HDMI=`aplay -l | grep -c HDMI` if [ "$AUDIO_HDMI" -ge 1 ] then AUDIO_DEVICE=`aplay -l | grep HDMI | grep " device " | grep -m 1 -v "device 0" | tr -d ':' | cut -d ' ' -f 8` AUDIO_CARD=`aplay -l | grep HDMI | grep " device " | grep -m 1 -v "device 0" | tr -d ':' | cut -d ' ' -f 2`...
2007 Apr 26
6
example sources
Hello all, Very new to Theora so apologies if this sounds elementary ;-) I'm trying to integrate a simple theora video player in my engine. All I need is simple load/unload and play/stop functionality. I'd also like to be able to stream from disk or mem. Other than the API reference I haven't found any example code, e.g. the sources for theora_player_example. Are these available