Displaying 11 results from an estimated 11 matches for "getencod".
Did you mean:
getencoder
2004 Aug 06
3
Mixing audio
Is There any intension to deal with mixing two or more streams encoded with "speex".
Most voice wise applications (such as conference) need this feature.
Oded Rephael
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'speex-dev-request@xiph.org'
2004 Aug 06
2
q about jspeex
...tStream(t.input), format, AudioSystem.NOT_SPECIFIED);
> System.out.println("Speex encoder constructed.");
> System.out.println("*** Speex info: ");
> System.out.println("Bitrate:
> "+pcm2speex.getEncoder().getBitRate());
> System.out.println("Frame size:
> "+pcm2speex.getEncoder().getFrameSize());
> System.out.println("Complexity:
> "+pcm2speex.getEncoder().getComplexity());
> System.out.println("Mo...
2006 Jul 18
1
SpeexEncoder requires 320 samples to process a Frame, not 160
...nt complexity = 3;
int bitrate =-1;
float vbr_quality = -1;
boolean vbr = false;
boolean vad = false;
boolean dtx = false;
// construct a new decoder
SpeexEncoder speexEncoder = new SpeexEncoder();
speexEncoder.init(1, 8, 8000, 1);
if (complexity > 0)
{
speexEncoder.getEncoder().setComplexity(complexity);
}
if (bitrate > 0)
{
speexEncoder.getEncoder().setBitRate(bitrate);
}
if (vbr)
{
speexEncoder.getEncoder().setVbr(vbr);
if (vbr_quality > 0)
{
speexEncoder.getEncoder().setVbrQuality(vbr_quality);
}
}
if (vad)
{
speexEncoder.g...
2004 Aug 06
0
q about jspeex
...am(new
AudioInputStream(t.input), format, AudioSystem.NOT_SPECIFIED);
System.out.println("Speex encoder constructed.");
System.out.println("*** Speex info: ");
System.out.println("Bitrate:
"+pcm2speex.getEncoder().getBitRate());
System.out.println("Frame size:
"+pcm2speex.getEncoder().getFrameSize());
System.out.println("Complexity:
"+pcm2speex.getEncoder().getComplexity());
System.out.println("Mode:
"+pcm2speex....
2004 Aug 06
0
q about jspeex
..., format, AudioSystem.NOT_SPECIFIED);
>> System.out.println("Speex encoder constructed.");
>> System.out.println("*** Speex info: ");
>> System.out.println("Bitrate:
>> "+pcm2speex.getEncoder().getBitRate());
>> System.out.println("Frame size:
>> "+pcm2speex.getEncoder().getFrameSize());
>> System.out.println("Complexity:
>> "+pcm2speex.getEncoder().getComplexity());
>> System....
2004 Aug 06
0
Lost ogg sync using jspeex
..."Writing into piped output stream done...");
System.out.println("Constructing speex encoder.");
System.out.println("Speex encoder constructed.");
System.out.println("Speex info: ");
System.out.println("Bitrate: "+pcm2speex.getEncoder().getBitRate());
System.out.println("Frame size: "+pcm2speex.getEncoder().getFrameSize());
System.out.println("Complexity: "+pcm2speex.getEncoder().getComplexity());
System.out.println("Mode: "+pcm2speex.getEncoder().getMode());
System.out.println...
2004 Aug 06
0
Lost ogg sync using jspeex
..."Writing into piped output stream done...");
System.out.println("Constructing speex encoder.");
System.out.println("Speex encoder constructed.");
System.out.println("Speex info: ");
System.out.println("Bitrate: "+pcm2speex.getEncoder().getBitRate());
System.out.println("Frame size: "+pcm2speex.getEncoder().getFrameSize());
System.out.println("Complexity: "+pcm2speex.getEncoder().getComplexity());
System.out.println("Mode: "+pcm2speex.getEncoder().getMode());
System.out.println...
2004 Aug 06
0
Please Help, Lost ogg sync using jspeex
....");<BR> System.out.println("Constructing speex encoder.");<BR> <BR> System.out.println("Speex encoder constructed.");<BR> System.out.println("Speex info: ");<BR> System.out.println("Bitrate: "+pcm2speex.getEncoder().getBitRate());<BR> System.out.println("Frame size: "+pcm2speex.getEncoder().getFrameSize());<BR> System.out.println("Complexity: "+pcm2speex.getEncoder().getComplexity());<BR> System.out.println("Mode: "+pcm2speex.getEncoder().getMode(...
2004 Aug 06
3
q about jspeex
Hi Marc,
thanks for the quick reply.
Marc Gimpel wrote:
> It would appear the the 'pcm2speex.read(frame, 0, frame.length)' is
> blocking which means that it is waiting for data from the underlying
> inputstream (i.e.AudioInputStream(t.input)). If it could read
> sufficient data it would transcode it. If it recieved an EOF, it
> should do some zero padding and then
2017 May 22
2
DebugInfo, Metadata usage
...IT : DIFinder.types())
{
if(DIBasicType* DIBT = dyn_cast<DIBasicType>(DIT))
{
llvm::outs() << "DIBasicType in Module : " << DIT->getName()
<< "\n";
StringRef Encoding =
dwarf::AttributeEncodingString(DIBT->getEncoding());
if(!Encoding.empty())
{
llvm::outs() << "Encoding : " << Encoding.str() << "\n";
}
}
}
llvm::outs() << "\n\nPrint All Strings Declarations: \n";
for(GlobalVariable&...
2013 Sep 30
1
[LLVMdev] [patch] Prototype/proof-of-concept for DWARF type units
This isn't a realistic/viable implementation, just a hacked up "can I make
it produce the right output" kind of thing, but while I hammer out a few
more details (like fixing MC to allow multiple sections with the same name
but different comdat groups) I figured I'd throw it out there to have a bit
of a chat about it.
I've tested simple cases of a single type and they seem to