Tagged Questions

Seeking is the act of moving around a file or file-like object.

learn more… | top users | synonyms

6
votes
4answers
358 views

How does a BufferedReader work in Java?

I am processing a number of text files line by line using BufferReader.readlline(). Two files having same size 130MB but one take 40sec to get processed while other takes 75 sec when I noticed one ...
5
votes
1answer
157 views

FFMPEG Seeking brings audio artifacts

I´m implementing a audio decoder using ffmpeg. While reading audio and even seeking already works, I can´t figure out a way to clear the buffers after seeking so I have no artifacts when the app ...
5
votes
4answers
1k views

Python: rewinding one line in file when iterating with f.next()

Python's f.tell doesn't work as I expected when you iterate over a file with f.next(): >>> f=open(".bash_profile", "r") >>> f.tell() 0 >>> f.next() "alias rm='rm -i'\n" ...
4
votes
1answer
301 views

Is it safe to use lseek() when reading from Proc-FS files second time

Is it safe to use lseek(fd,0) and then read(fd,buf) for /proc/stat file instead of reopening it to get updated contents of this file next time? And what does the mmap() call after opening this file ...
4
votes
1answer
648 views

Does FileInputStream.skip() do a seek?

I want to copy the last 10MB of a possibly large file into another file. Ideally I would use FileInputStream, skip() and then read(). However I'm unsure if the performance of skip() will be bad. Is ...
4
votes
3answers
1k views

Python seek on remote file

How do I seek to a particular position on a remote (HTTP) file so I can download only that part? Lets say the bytes on a remote file were: 1234567890 I wanna seek to 4 and download 3 bytes from ...
3
votes
1answer
184 views

C# WebStream seek to download a File in “Chunks”

I'm trying to make a small programm to download files via HTTP in C#. The Basic download with a WebClient works fine, but now i wanted to try downloading a file with multiple connections. So far: ...
3
votes
4answers
283 views

Write to the middle of an existing binary file c++

I'm trying to open a binary file for writing without erasing the content. But I do not want to write to eof. I want to write to a specific position in file. Here is a litte example: ofstream ...
3
votes
2answers
144 views

How in portable C to seek forward when reading from a pipe

Since fseek() does not work on pipes what methods exist for simulating seeking forward. The naive approach is to use fread() and throw away the contents read into the memory buffer. For huge seeks to ...
3
votes
4answers
2k views

lseek/write suddenly returns -1 with errno = 9 (Bad file descriptor)

My application uses lseek() to seek the desired position to write data. The file is successfully opened using open() and my application was able to use lseek() and write() lots of times. At a given ...
2
votes
1answer
86 views

How to get the underlying file handle of a Stream?

I have an application that works with physical memory snapshots (for example, VMware VMEM files). Among other things, it can read processes/modules out of the snapshot by virtual rather than physical ...
2
votes
5answers
135 views

Memory Stream in Java

I am looking for a memory stream implementation in Java. The implementation should be roughly modeled after the .NET memory stream (*) implementation. Basically I would like to have an class ...
2
votes
1answer
80 views

Android Seek bar

I'm just wondering if the seekbar changed in Android 2.1 . I tried to create one but it showing up as a green line with a circle on it instead of the usual yellow rectangle. If so, is there any other ...
2
votes
3answers
88 views

Write function not using the seekp value

I'm trying to use C++ to write an entry in a specific place in a file so basicly I have ofstream ofs("file.dat", ios::binary | ios::app); ofs.seekp(220, ios::beg); ofs.write((char *)&i, ...
2
votes
1answer
153 views

Android: Video SeekTo Error

I have an application with a video player. I implemented a method that stores the current position in the video so that the next time user plays the same video, it is played from where the user left ...
2
votes
2answers
96 views

Safe to have multiple processes writing to the same file at the same time? [CentOs 6, ext4]

I'm building a system where multiple slave processes are communicating via unix domain sockets, and at the same time they are writing to the same file at the same time. I have never studied ...
2
votes
3answers
135 views

Why StreamReader.EndOfStream property change the BaseStream.Position value

I wrote this small program which reads every 5th character from Random.txt In random.txt I have one line of text: ABCDEFGHIJKLMNOPRST. I got the expected result: Position of A is 0 Position of F is ...
2
votes
2answers
99 views

Seek method not working in Powershell script

I´m trying to use the .net API to seek in a large data file. For some reason I am unable to make it work. Here is my code: function check_logs{ $pos = 8192 $count = 1 $path = 'C:\Program ...
2
votes
3answers
206 views

Delphi - Seek(); Procedure. Incompatible Type

procedure ListMembers; var Member, lMembers: string; lengthOfMember: Longint; begin Writeln; Writeln; Reset(FileA); //Only need read-only Reset(FileB); //Only need read-only while not ...
2
votes
3answers
166 views

android audio player

I want to develope audio player that has seek functionality. Right now I am doing only play and stop functionality. How can I add seek to functionality to it? Thanks in advance
2
votes
1answer
211 views

QFile seek performance

It appears that QFile when working with a regular file (not a special Linux I/O device file) is random access, meaning that a seek operation has constant-time complexity O(1). However, I haven't been ...
2
votes
1answer
75 views

Is there any standard for seeking (in streams) over HTTP?

I know that currently HTML5 video compatible browsers use the Accept-Ranges header to seek inside streams, but it is far from an ideal solution. The browser needs the full index information of the ...
2
votes
1answer
259 views

TADOTable, Seek and clUseServer how to combine?

Is it possible to use the seek function when the cursor location is set to clUseServer in Delphi's ADOTable? I know that it is possible to use locate function instead but it is a lot slower than the ...
2
votes
1answer
818 views

Using MPMusicPlayerController, setting musicPlayer.currentPlaybackTime to seek but takes second to take effect

I have a UISlider acting as the scrubber. As the thumb is dragged I execute the following: - (void) _seekTo:(double)playbackTime { mPlayer.currentPlaybackTime = playbackTime; } That works ...
2
votes
5answers
399 views

Any seekable compression library?

I'm looking for a general compression library that supports random access during decompression. I want to compress wikipedia into a single compressed format and at the same time I want to ...
2
votes
2answers
769 views

How to get the current open file line in python?

Suppose you open a file, and do an seek() somewhere in the file, how do you know the current file line ? (I personally solved with an ad-hoc file class that maps the seek position to the line after ...
2
votes
3answers
678 views

Question about file seeking position

My previous Question is about raw data reading and writing, but a new problem arised, it seems there is no ending.... The question is: the parameters of the functions like lseek() or fseek() are all ...
2
votes
2answers
232 views

String replacing in a file by given position

I have a file opened in 'ab+' mode. What I need to do is replacing some bytes in the file with another string's bytes such that: FILE: thisissomethingasperfectlygood. string: 01234 So, for ...
2
votes
2answers
623 views

Seekable alternative to .NET's CryptoStream?

Does anybody know a seekable alternative to .NET's CryptoStream? It is OK if the alternative supports Seek only in "read" mode or if it is limited to e.g. AES256.
2
votes
2answers
189 views

http based filesystem with seek and lock support

I'm building an application that needs to use a web server like a file system. Specifically, the ideal solution would be: A server side component that would allow, via HTTP, opening (locking), ...
1
vote
0answers
37 views

android: onSeekCompleteListener with VideoView

I am using VideoView to play video files. I am using seekTo function in order to play the video from where it has been left off. However, I wanted to do some operations when the seek operation is ...
1
vote
3answers
92 views

how to seek to the end of file to determine the file size?

I'm trying to get file size in c programming using seek. I can't use fseek, stat.size nor ftell, there's a custom operating system unix in which i need to run. How can i find out filesize just by ...
1
vote
2answers
106 views

iPhone-MPMediaPlayer disable seek forward button

I would like to remove or disable the seek forward button from the MPMediaPlayer. I have tried to enumerate all the views but apparently I could not find this button. Does anyone have any idea? ...
1
vote
0answers
45 views

Seeker For Media Player

I would assume that someone would have found an easy solution to this but I haven't found a straight-forward method. I want to build a seeker bar for playing back audio through the MediaPlayer. I ...
1
vote
0answers
211 views

JWPlayer Prevent SKipping forward unless already watched

I'm using JWPlayer 5.4 and it's setup on the page using the javascript API. What I'd like to do is make it so that users can fastforward/rewing via the seek bar ONLY if they have already played that ...
1
vote
2answers
108 views

Play and Seek Audio File in java

I used this class to play my Wav file. Its very good but How to start my wav file on some position (KB or second)? auline.start(); int nBytesRead = 0; byte[] abData = new ...
1
vote
4answers
95 views

Selective file read in Ruby

I have a huge file that looks like this: 7 bla1 blala blabla blab blals blable bla more here.. The first numbers tells how many values I will have. The thing, is that i just want to point ...
1
vote
0answers
222 views

iOS MediaPlayer Seeking

I am able to use iOS MediaPlayer and play a movie by this way. But I need, seeking a sec of a movie. How can I do this, I play a movie by MediaPlayer like that: NSURL *videoURL = [NSURL ...
1
vote
2answers
130 views

android player need help [closed]

Hello, is it possible to create all the function of the media player without create our methods like stop play etc? i mean to ask how to play song into media player using android without doing ...
1
vote
3answers
283 views

How to avoid sorting results, returned by Index Seek?

Well, the question is not really "how to avoid" sorting as it is required by business logic, but how to do it preliminary using index, and not on the go. I have a query plan: |--Sort(TOP 5, ORDER ...
1
vote
1answer
430 views

Windows Phone 7: Seeking in MediaElement

I'm working with a MediaElement for Windows Phone 7, and I want to make a simple slider that will allow a user to seek within an mp3 file. I can't quite get the behavior I want though. When I seek a ...
1
vote
1answer
100 views

Why is peeking into BLOBs via getBytes(long pos, int length) so slow on an H2 database?

I have an application that needs to peek into blobs get out small numbers of bytes (via getBytes(long pos, int length)). The blobs are ~30MB. When I ask for bytes near the beginning of the blob, the ...
1
vote
1answer
468 views

Seeking by bytes in FFmpeg

I will appreciate your advice on the following. I'am developing a video converter which based on FFmpeg's libavformat, and I need to implement an accurate seeking API. First of all, I developed an ...
1
vote
2answers
356 views

Fastest way to seek (skip) an inputstream with http protocol

I am making a download service of sorts, and it has the ability to resume a previous partial download. I am currently using the skip method like this long skipped = 0; ...
1
vote
1answer
1k views

How to seek() then pause() with JWPlayer 5.4

Does anyone know how to get JW PLayer v5.4 (either the Flash rendering or the HTML5 rendering) to pause after a seek() command? I'm trying to get the video to step 0.01 seconds forward or backward ...
1
vote
2answers
1k views

seekTo in VideoView

I'm having problems with seeking video. My application should resume video from place where it was stopped last time. So I do this: videoView.seekTo(bookmark); videoView.start(); However when it ...
1
vote
0answers
69 views

How to organize data for an animation program

I'm trying to write an animation program, but I can not figure out a good way to seek to a frame and have the program "know" what objects are currently there and what are the nearest keyframes for ...
1
vote
3answers
125 views

Is there finer granularity than LOAD/NEXT for reading structured data?

Imagine that I have a long file of Rebol-formatted data, with a million lines, that look something like REBOL [] [ [employee name: {Tony Romero} salary: $10,203.04] [employee name: {Marcus ...
1
vote
3answers
1k views

C Program: How to properly use lseek() or fseek() to modify a certain part of a file?

I have a binary file in CSV format that contains multiple records. Each record is entered in as user_name, last_name, first_name, num_wins, num_losses, num_ties. I am creating a method to update a ...
1
vote
0answers
549 views

Seeking in AAC streams on Android

I'm getting an AAC stream from a HTTP server and using that as the datasource for the MediaPlayer in Android. It plays perfectly fine, but when I try to execute mediaPlayer.seekTo(int position) I get ...

1 2 3