Displaying 20 results from an estimated 5000 matches similar to: "Behaviour of server-side stream dump"
2007 Oct 23
2
Vorbis granule position
I have a technical question about the vorbis granule position,
but I would like to put the question into context.
When a ogg vorbis stream is ripped using wget, fetch, or
streamripper under Linux or FreeBSD, the resulting file has
problems both with granule position and with a missing EOS. I
think I can figure out how to add an EOS, but is there a way
to determine the granule position in a stream
2002 Oct 20
3
Corrupt Files
('binary' encoding is not supported, stored as-is)
Hello,
I recently noticed that some of my vorbis-files are corrupt, and I'm sure they
weren't before. I have no idea how this could happen.
Now my question is: is this vorbis' fault or is it more likely that my (still
present) Windows-Installation destroyed the data? (Or even worse: my harddisk's
corrupt) The files are on
2018 Nov 15
4
How to concatenate Ogg in the browser JS?
Thank you, ogginfo returned:
-----
Note: Stream 1 has serial number 0, which is legal but may cause problems with some tools.
New logical stream (#1, serial: 00000000): type vorbis
Vorbis headers parsed for stream 1, information follows...
Version: 0
Vendor: ffmpeg
Channels: 1
Rate: 22050
Nominal bitrate: 35.333000 kb/s
Upper bitrate not set
Lower bitrate not set
Vorbis stream 1:
Total data
2004 Oct 01
2
Newbie seeking directions
Hello everybody,
I'm developing the www.polyxmass.org (GNU polyxmass) program that is a
polymer sequence editor (a polymer is a thread made of concatenated
monomers).
I would like to code a "self-speak-out" feature for that sequence
editor: the user would select a sequence region and ask that the
program would "dictate" the sequence.
For example, the following could be
2005 Sep 26
2
encoder_example.c Questions
I've been trying to piece my way through the encoder_example.c program
to better understand how to encode files as ogg/vorbis. I'm stuck on
two sections of the code.
This is the first
/* uninterleave samples */
for(i=0;i<bytes/4;i++){
buffer[0][i]=((readbuffer[i*4+1]<<8)|
(0x00ff&(int)readbuffer[i*4]))/32768.f;
2004 Jun 18
5
Patch to stop vcut from generating broken streams
Skipped content of type multipart/mixed-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
Url : http://westfish.xiph.org/pipermail/vorbis-dev/attachments/20040618/e7bee431/attachment.pgp
2005 Jun 23
1
smbclient fails to list directory >36 entries
Hi all,
I have a problem with smbclient from the samba-client-3.0.14a-2 package
supplied with Fedora Core 2. It hangs when listing any directory with
over 36 items in it on one particular Windows XP Professional box I'm
trying to back up. If I run smbclient -d 3, I get the following output
over and over when listing the directory:
received 36 entries (eos=0)
received 36 entries (eos=0)
2008 Feb 25
3
eos on continued page
On 25-Feb-08, at 9:34 AM, xiphmont@xiph.org wrote:
> I'd say both; libogg should ignore the incomplete packet or flag a
> structural error, and the spec should be clarified.
I guess libogg should return -1 if you try to ogg_stream_packetout()
after the eos packet.
The eos flag pretty clearly applies to the *page* not the packet, so
I think how that gets translated into the
2018 Nov 15
2
How to concatenate Ogg in the browser JS?
Good day, no answers in Google about that. I asked https://stackoverflow.com/questions/53290693/how-to-alter-duration-of-ogg-with-js - in short I have Ogg Vorbis files on the client side (webapp) and I need to concatenate them in one file for downloading. I did concatenation with this line of code:
const blob = new Blob(listOfChunksBlobs, {'type': 'audio/ogg'});
And I play the
2005 Sep 26
4
ices2 metadata update causes gaps
On Mon, Sep 26, 2005 at 05:30:11PM +0200, Michael Smith wrote:
> > Assuming this is correct, the next question that arises is "Is Vorbis
> > when used this way truly gapless?"
>
> Yes, it is.
... and I can confirm this. No gaps were perceivable decoding in ogg123.
However, an interesting effect can be had if all the parts have the same
serial number. You get a bump
2001 Dec 02
2
bug report for oggenc in CVS: vorbis-tools/oggenc/encode.c
I was wondering why my CD ripping was producing short files from some tracks.
A superficial examination of the code shows this piece of code in vorbis-tools/oggenc/encode.c:
Line 120:
/* Main encode loop - continue until end of file */
while(!eos)
{
[...]
/* While we can get enough data from the library to analyse, one
2008 Nov 23
2
ogg dirac granulepos in oggz tools
2008/11/24 David Flynn <davidf+nntp at woaf.net>:
> On a slightly unrelated note, i keep hitting the following error in
> liboggz when using the oggz tools on an ogg dirac stream:
>
> /home/davidf/project/liboggz/src/liboggz/oggz.c:202: oggz_close:
> Assertion `oggz_dlist_is_empty(oggz->packet_buffer)' failed.
>
> I'll supply an example file tomorrow if that
2004 Jun 06
2
vorbisfile timestamp oddity
I'm seeing some inconsistency in returned timestamps using vorbisfile.
I open a file, read some data (grabbing timestamps with ov_pcm_tell),
then seek back with ov_pcm_seek(vf, 0) and read it again.
The seek lands back on 0, but on the second read through, there's a gap
in the timestamps: they jumps up by 2112 frames. This causes my vorbisfile
code to insert silence to maintain sync (as
2008 Feb 25
2
eos on continued page
On 25-Feb-08, at 3:42 PM, Conrad Parker wrote:
> ok. If the correct behaviour should be to ignore the incomplete
> packet, that should also be clarified in the spec.
Fair enough. What if no packet ends on the eos page? What about
additional pages after the eos page?
> I'd find it useful if it was not considered a structural error, as it
> allows us to very simply chop files
2008 Jul 21
2
sftp needs a long time for sending a filelist
Hello all
Im using sftp 1:4.7p1-8ubuntu1.2
in a batchjob
Ive noticed that sftp needs a long time for sending a filelist.
The timespan increases exponential if many files are on the
remoteserver.
for example "ls -la *.txt" needs 10 seconds for 2000 files
but needs 50 seconds for 4000 files.
For 150.000 Files i have to wait 15 minutes for example
but the
2008 Feb 24
2
eos on continued page
Hi,
I'm working on a new ogg file chopper (porting 'hogg chop' to C).
These work pagewise, ie. they just copy the pages that are needed from
the input to the output bitstream.
I'm modifying the last page in the output bitstream so that it has the
eos flag set. The last page is always one that has a granulepos set
(that of the last packet finishing on that page). But let's say
2008 Feb 25
1
eos on continued page
On 26/02/2008, Silvia Pfeiffer <silviapfeiffer1@gmail.com> wrote:
>
> Hmm, good point. Maybe it requires a MUST specification... But then, it
> would not be conformant to have a partial packet on the last page....
I'd definitely prefer that the recommendation to not have an
incomplete packet on a page marked eos is a SHOULD not a MUST, so that
eos pages don't need to be
2004 Mar 29
11
New IMQ device implementation supporting device EOS
Hello All
Its first time i posting to this mail list :). I have done something
(maybe) important. I write new IMQ device driver based from Martin
Devera and Patrick McHardy implementation with device EOS support. My
current implementation supporting only egress trafic shaping and kernel
2.4.25. For more details, source and examples have look at my page
http://hyperfighter.jinak.cz/qos
Ill
2009 Dec 07
3
Crash with Unicode and sub (PR#14114)
Full_Name: George Russell
Version: 2.10.0
OS: Windows XP Version 2002 SP 2
Submission from: (NULL) (217.111.3.131)
The following typed into R --vanilla induces a crash:
-- cut here --
gctorture()
u <- intToUtf8(c(rep(1e3,1e2),32,c(rep(1e3,1e2))))
v <- rep(u,1e2)
v <- sub(" ","",v)
v %in% ""
-- cut here --
sessionInfo() says:
-- cut here --
R version
2008 Nov 13
5
ogg dirac granulepos in oggz tools
Hi,
I'm wondering if the Dirac granulepos parsing in liboggz and display
in the oggz tools is currently correct, as I'd like to do a release of
these soon.
A couple of days ago David Schleef mentioned there were some problems.
David, is that currently true (ie. since David Flynn's recent updates
to support Dirac), and if so could you please explain what the
problems are, or point me