similar to: Audio format for announcements

Displaying 20 results from an estimated 4000 matches similar to: "Audio format for announcements"

2003 Dec 30
3
SIP phone as intercom
(new asterisk user - currently setting up Polycom IP600 phones) Does anyone know if it's possible to make a sip phone instantly pick up on speakerphone when a particular call comes in? Eg so that you can quickly bother someone across the office without making them reach for their phone?
2016 Apr 02
0
p values from GLM
On 4/2/2016 11:07 AM, David Winsemius wrote: >> On Apr 1, 2016, at 5:01 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: >> >> On 01/04/2016 6:46 PM, Bert Gunter wrote: >>> ... of course, whether one **should** get them is questionable... >> They're just statistics. How could it hurt to look at them? > Like Rolf, I thought that this utterance
2020 Apr 29
1
identical audio but not identical unrecognized chunks
Dear all, I've converted a wav file to flac but during the process three wrnings were casted. One of them I recall, it said that a BEXT chunk is unrecognized and thus ignored. Wouldn't it be posible to keep the unrecognized information as is when decoding the file? In general the extra chunks are located before or after the audio content, and represents a tiny part of the whole
2004 Sep 10
6
command-line: AIFF writer advice
The patch I submitted only reads AIFF files. I'm about to start the patch to write AIFF files. To do so, we need a command-line option to specify AIFF. My inclination is to add an option: -ff { raw | wav | aif } In some sense, "-ff" is silly since it probably stands for "format format". Still, I think it's better than just "-f", since the first
2006 May 26
2
question about coding
John Miles wrote: > You'll definitely have to encode in little-endian form. PCM audio is always > little-endian, to the best of my knowledge. I have never seen any > big-endian audio data files. Try AIFF, AU and IFF just for starters. They are definietly not the only ones. Erik -- +-----------------------------------------------------------+ Erik de Castro Lopo
2009 Oct 06
2
1.43 GB FLAC with 8-Hour Audio Inside... Decoding?
Ok, so here's the deal... I've been having a lot of trouble sleeping, so I've done some research and discovered this program called "Hemi-Sync". I decided to torrent it from the Pirate Bay to try it out before spending my money. What I torrented worked incredibly, so bought it, then torrented another Hemi-Sync program: Lucid Dreaming. It's a DVD-Audio program. What I
2004 Jun 14
4
<<< GSM Audio Files >>>
Hello: Thanks for the input so far. Heres the issue-- This is a production environment-- where many people "touch" the files. ie-- The audio engineer is a freelancer who wants to master the files at the highest quality TO HIS EAR and experience-- He knows NADA, Not a thing about SOX-- but is a ProTools GURU. The SOX resampled files work on our asterisk box-- but I gotta put someone
2001 Jun 23
3
gcc 2.95.2/irix/Laguerre_With_Deflation/inifinte loop
I built ogg vorbis from the rc1 cvs source on Irix 6.5.12 with gcc 2.95.2. Using oggenc I encoded about 8,000 aiff files but found about a dozen where oggenc would go into an infinite loop. I tracked the problem with Laguerre_With_Deflation() as far back as logmask being Inf in floor0_forward. I'm now building gcc 3.0 with the expectation this is a compiler issue. If not, I'll back
2007 May 06
2
96k/24-bit BWF encoding
Hi, I am attempting to use flac to encode 96k/24-bit broadcast wav (BWF) files. BWFs are wav files with some extra meta-data chunks, and is the favoured archival format for many institutions around the world. These files are encoded successfully by flac, however the resulting flac file is not playable on all flac players - it plays successfully in foobar2000 but is silent in winamp, and when
2000 Sep 10
3
Adding oggenc support for files other than WAV?
Is anyone working on making oggenc use some nice library that reads lots of different audio file formats so that people can encode from files other than WAV? For example, the 'AudioFile' library (just found it via a search on freshmeat) reads wav, aiff, aiff-c, .au, and .snd. Maybe there are other better libraries (OpenAL, maybe), but this library does what I want (read AIFF). -tim ---
2015 Sep 21
2
Problem with 90MB Initrd
On 18.09.2015 16:35, Gene Cumm wrote: > 1) This is actually a critical cusp size. Watch what tftpd you use or > you'll never get it all. The tftpd needs to support rollover. > Consider HTTP as it should be more capable and much faster. The used TFTPD works fine with BIOS machines. I have two Initrd images. One is 64bit and almost 90MB and the 32bit is 85MB. I know that some tftpd
2000 Jun 25
2
Encoding the wrong Endian and AIFF
I know this is probably blindingly obvious, but I can't find it anywhere. Is there a way to tell the Vorbis codec what endian your samples are or do I have to do my own byte reversal. AIFF is Be's 'standard' audio file format, and its encoded big endian, not little endian even on Intel boxes. I know for decoding ov_read has an endian option, but I can't see an equaivalent for
2006 May 31
13
What are controller modules *for*?
I am aware that controllers can be placed in modules: ruby script/generate controller modulename/controllername But what does this buy me? Is it just a way of ensuring that my source code is nicely arranged, or can I use the fact that a set of controllers are all within a particular model to implement functionality common to all of those controllers? Why am I asking? The app
2015 Sep 18
2
Problem with 90MB Initrd
Hi, I am currently trying to replace our companies elilo UEFI PXE boot with syslinux. I compiled all the needed files and the DHCP distributes them fine to the requesting client. However when I try to boot our companies miniroot the DHCP serves the file, but it seems like it never finishes. The image is generated with the following command: find . | grep -v 'name'.bz2 | cpio -o -H newc
2022 Oct 30
3
Looking for users of --keep-foreign-metadata
Hi all, Currently I'm looking for users of the --keep-foreign-metadata feature of FLAC. There has been some improvement of this feature in FLAC 1.4.0. Since 2007 there has been a warning in FLAC that --keep-foreign-metadata is a new feature. I think removal of this warning is long overdue, but there are still some issues surrounding it. So, if there are users of this feature on the mailing
2014 Jul 24
2
1.21 vs 1.3 encoding speed
Hello, I'm on a Mac and I'm noticing that encoding via the flac command line is significantly slower with version 1.3.0 than 1.2.1. I'm encoding a 24/96 file to flac, both from wav and aiff and both formats are showing the same speed decrease when using 1.3.0. Also, 1.2.1 will not encode an aiff-c file, but 1.3.0 will. Is this change documented anywhere? Thanks, Scott --------------
2006 Aug 14
14
A mock which extends rather than replaces a class?
While running tests, we would like to instrument some of the classes under test. We still want the classes to do exactly what they currently do, but we would like them to do more when running in the test environment. Clearly we can (and currently do) just extend the objects "on the fly" where necessary, but this is a bit messy - we''d like some centralised way to always
2005 Dec 28
9
Idiom question - assertions which aren''t in tests
All, Although I''ve been keeping an eye on Ruby for several years now, I don''t have a huge amount of experience with it. So please forgive me if I''m missing something obvious. I''m in the process of writing my first really "serious" Rails app and would appreciate your advice. I am wondering if there is a standard idiom for including assertions in
2012 Apr 12
3
FLAC QUESTION
Hello, I'm using flac for an application. The fact is that i'm trying to encode a file that is not necessary a wav file. So, at first, i would like to know if it's possible to encode a file different from the wav file with the flac encoder ? When i put my data into : ok = FLAC__stream_encoder_process_interleaved(encoder, pcm, need); after some rounds in my boucl i get : encoding:
2006 May 26
4
question about coding
Thanks for the answer. So data are stored in little-endian format on the WAVE file. But have I to encode in big endian format or little endian is ok?! Thanks ---------- Original Message ---------------------------------- From: "John Miles" <jmiles@pop.net> Date: Tue, 23 May 2006 12:15:05 -0700 >You are probably reading little-endian samples on a big-endian platform, and