Displaying 20 results from an estimated 4538 matches for "seek".
Did you mean:
see
2007 Jul 25
2
Is FLAC__stream_decoder_seek_absolute working for OggFlac?
Josh Coalson wrote:
> --- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:
>
> > Hi all,
> >
> > Is seeking working for OggFlac files? I keep on getting a
> > FLAC__STREAM_DECODER_SEEK_ERROR.
>
> yes, it should work fine. in flac/src/test_seeking/main.c there
> is an example usage of FLAC__stream_decoder_seek_absolute(). you
> could try compiling it and running test_seeking on it....
2007 Jul 14
2
Is FLAC__stream_decoder_seek_absolute working for OggFlac?
Hi all,
Is seeking working for OggFlac files? I keep on getting a
FLAC__STREAM_DECODER_SEEK_ERROR.
Erik
--
-----------------------------------------------------------------
Erik de Castro Lopo
-----------------------------------------------------------------
"Why do they protest against France for making it...
2007 Sep 11
0
Is FLAC__stream_decoder_seek_absolute working for OggFlac?
--- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:
> Josh Coalson wrote:
>
> > --- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:
> >
> > > Hi all,
> > >
> > > Is seeking working for OggFlac files? I keep on getting a
> > > FLAC__STREAM_DECODER_SEEK_ERROR.
> >
> > yes, it should work fine. in flac/src/test_seeking/main.c there
> > is an example usage of FLAC__stream_decoder_seek_absolute(). you
> > could try compiling it and ru...
2010 Jun 04
2
OGGZ Seeking in Theora
Dear all
I'm aware that there have been several discussions about the seeking
issue and I'm sorry to bring this up again.
To solve the problem with Inter-Frame garbage, a seek to the previous
keyframe has to be made. The keyframe number should be extracted from
the granulepos of the frame where we want to seek to. I hope I
understood the theory - unfortunately a f...
2008 Feb 06
2
Seeking to granules in discontinuous streams
Hi,
I have a question about seeking. In fact, it's more or less a kind
of rambling and thinking aloud, circling around a question.
I've been wondering how to deal with seeking in a stream, and what
to do when seeking in the middle of a set of active events (eg,
when several bits of text are supposed to be shown, but you s...
2005 May 28
1
(PR#7899) seek(con, 0, "end", rw="r") does not always work
Tony Plate wrote:
> ligges@statistik.uni-dortmund.de wrote:
>
>> tplate@blackmesacapital.com wrote:
>>
>>
>>> I've noticed that seek(con, 0, "end", rw="r") on a file connection
>>> does not always work correctly after a write (R 2.1.0 on Windows).
>>>
>>> [Is a call to fflush() needed inside file_seek() in main/connections.c?]
>>
>>
>>
>>
>> If you hav...
2005 May 19
1
problems with truncate() with files > 2Gb under Windows (possibly (PR#7879)
...ully truncate files > 2Gb to
sizes < 2Gb, but cannot truncate the same file to a position beyond 2Gb.
So I have no suggestions on how to get this to work. Probably, the
best thing to do would be to stop with in error in the appropriate
situations.
Second issue: although the R function seek() can take a seek position
specified as a double, which allows it to seek to a position beyond 2Gb,
the return value from seek() appears to be a 32-bit signed integer,
resulting in strange (incorrect) return values from seek(), though
otherwise not affecting correct operation.
Inspecting the cod...
2010 Jun 22
4
seek() and gzfile() on 32-bit R2.12.0 in linux
I have installed both 32-bit and 64-bit versions of R2.12.0 (2010-06-15
r52300) on my Ubuntu 10.04 64-bit system. I observe the following behavior
when running the examples from base::connections. There appears to be a
problem with seek() on a .gz file when using a 32-bit installation of
R2.12.0, but the problem doesn't appear in the 64-bit installation. I
realize that seek() has been difficult in the past, and I don't want to open
old wounds, but is this a known problem? Is this easily fixable? I have a
package that re...
2013 May 08
1
getting corrupted data when using readBin() after seek() on a gzfile connection
Hi,
I'm running into more issues when reading data from a gzfile connection.
If I read the data sequentially with successive calls to readBin(), the
data I get looks ok. But if I call seek() between the successive calls
to readBin(), I get corrupted data.
Here is a (hopefully) reproducible example. See my sessionInfo() at the
end (I'm not on Windows, where, according to the man page, seek() is
broken).
## Generate data with a repeated easy-to-recognize byte pattern
## of...
2009 Aug 19
2
How to seek theora streams
I need to be exposed to a way of seeking theora streams. I have repeatedly found the same question asked on a different forums but could not find an answer. I'm working on a game and started integrating video with theora, the sound works just fine with ogg/vorbis(i find it easy to seek using ov_raw_seek for audio files). Could some...
2024 May 21
1
wrtiteBin in conjunction with seek : the position in the file is not good when writing
? Tue, 21 May 2024 11:29:33 +0200
Laurent Rhelp <laurentRHelp at free.fr> ?????:
> pos <- seek(con_in,2,origin="start")
> # We have to repeat the command to return the good amount of read
> # bytes
> print(paste0("pos is not equal to 2, pos = ",pos))
That's because seek() returns the previous position ("before any
move", the one that the help page...
2011 Sep 23
2
Issue with seek() on gzipped connections in R-devel
Dear all,
In R-devel (2011-09-23 r57050), I'm running into a serious problem
with seek()ing on connections opened with gzfile(). A warning is
generated and the file position does not seek to the requested
location. It doesn't seem to occur all the time - I tried to create a
small example file to illustrate it, but the problem didn't occur.
However, it can be seen with a file...
2004 Sep 10
3
seeking problems
Hey guys,
I just joined the list. I've been programming an external for PureData
<http://pure-data.sourceforge.net/> & <http://pure-data.org>, as well as
for Max/MSP....that reads multiple sound formats.
But, I've been having massive problems with getting reliable seeking with
FLAC.
sometimes when I call FLAC__seekable_stream_decoder_seek_absolute, I get
a false returned for FLAC__seekable_stream_decoder_process_single ..and
the error is of type FLAC__SEEKABLE_STREAM_DECODER_STREAM_DECODER_ERROR
is there any way to recover from this?
I try to do a FLAC__s...
2005 May 26
0
seek(con, 0, "end", rw="r") does not always work correctly (PR#7899)
tplate@blackmesacapital.com wrote:
> I've noticed that seek(con, 0, "end", rw="r") on a file connection does
> not always work correctly after a write (R 2.1.0 on Windows).
>
> [Is a call to fflush() needed inside file_seek() in main/connections.c?]
If you have an idea where to fflush() precisely and your patch works,
pleas...
2004 Sep 10
3
Re: seeking problems
Did you try OggFLAC and MkaFLAC as alternative containers ? For OggFLAC
you need libogg, the Xiph documentation should be describing how to seek
in the file. But i dont know if using another container than native FLAC
framing is an option for you .....
Christian
matroska project admin
august wrote:
> sorry to bother again,
> but I can narrow down my problem to certain parst of my flac file.
> for example, when I seek to 19*4410...
2004 Sep 10
2
new SEEKTABLE block
I've checked in code that supports a new metadata block called
SEEKTABLE. Basically, it is an optional, arbitrarily-long list
of seek points, by sample number and stream offset. I also added
command-line options to flac so you can specify seek points by
specific sample number and/or a specific number of evenly-spaced
seek points. The table cost about 18 bytes pe...
2009 Aug 24
2
oggz reading & seeking
...g liboggz. I've stumbled upon a few issues though. First of all liboggz exposes oggz_read and oggz_run, but how can i read only sound data, or only video data using liboggz, say something like this: oggz_read_sound(1024), oggz_read_video(1024).
? ? ? ?? Second of all i tried using liboggz's seek function. Immediately after the seek i get some "garbage" frames: how can i address this issue?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/theora/attachments/20090824/382c9973/attachment.htm
2010 Apr 26
2
Indexless interpolation search seeking code
http://www.xiph.org/ogg/doc/oggstream.html says:
"An index is only marginally useful in Ogg for the complexity added; it
adds no new functionality and seldom improves performance noticeably.
Empirical testing shows that indexless interpolation search does not
require many more seeks in practice than using an index would."
I am keen to see seeking code which is almost as fast as seeking with an
index. Is the code used in this empirical testing online somewhere or
otherwise available?
Thanks,
Chris P.
2007 Mar 06
1
FLAC__stream_decoder_seek_absolute with FLAC__STREAM_DECODER_SEEK_ERROR in 1.1.3 but it worked before
I've upgraded to FLAC 1.1.3, and now I have some streams where seek does
not work anymore, but they used to work before.
After a bit of debugging, it looks like those streams (created a long
time ago with an old version of FLAC) have a seek table where all the
entries have a stream offset of 0.
The result is that in the function seek_to_absolute_sample_, on line...
2005 May 27
0
seek(con, 0, "end", rw="r") does not always work correctly (PR#7901)
ligges@statistik.uni-dortmund.de wrote:
> tplate@blackmesacapital.com wrote:
>
>
>>I've noticed that seek(con, 0, "end", rw="r") on a file connection does
>>not always work correctly after a write (R 2.1.0 on Windows).
>>
>>[Is a call to fflush() needed inside file_seek() in main/connections.c?]
>
>
>
> If you have an idea where to fflush() precisel...