Seeking is the act of moving around a file or file-like object.
0
votes
0answers
19 views
How to seek with gstreamer in python?
I made a simple audio player with python but my seeking doesn't work. Below, you see my code. I mostly took advice from their tutorial at http://pygstdocs.berlios.de/pygst-tutorial/seeking.html.
...
1
vote
1answer
22 views
Perl seek function
This problem was solved. Thank you very much.
My question and the solution I am using is stated below.
Question:
open IN, "<./test.txt";
seek(IN,10,0);
read IN, $temp, 5;
seek(IN,20,0);
...
0
votes
1answer
34 views
How to enable seeking in Azure Blob stream
I have a BlobStream that is created from the method OpenWriter.
var blob = CloudContainer.GetBlobReference(name));
if (blob == null)
{
return null;
}
return blob.OpenWrite();
Using this stream ...
0
votes
0answers
24 views
gstreamer 1.0 seeking within an mpegts not working as expected
I have a bunch of mpegts video files obtained from a Silicondust HDHomerun tuner. Seeking was really slow in gstreamer 0.10 (see my previous post). Now seeking is greatly improved (in 1.0.6), but ...
-1
votes
0answers
21 views
LZMA (1 or 2) stream decode that supports seek?
I think it should be possible to seek to the blocks that make up a LZMA (or LZMA2) stream, however I cant pull it off.. tried 3 7zip .NET libraries (The official 7z one, SevenZipSharp, and others). ...
1
vote
1answer
32 views
What happens with seek pointer?
I'm currently programming my own implementation of fseek function and I want to ask on what happens in several causes. Here they are:
If seek origin is set to SEEK_SET or SEEK_CUR and result of next ...
0
votes
1answer
86 views
Automatic Goal Seek Over Range of Cells
I want to apply goal seek across several rows when there is a change to any cell in the work sheet. I want to apply this from row 7 to row 11. The first problem I have is that excel is crashing each ...
1
vote
1answer
42 views
Seek Method fails to read the text file C#
Using Seek Method to read a specific part of a text but it fails.
I have two classes "allmethods.cs" and "caller.cs"
There are two methods in "allmethods.cs" which are "WritingMethod" and ...
0
votes
0answers
26 views
How To Change Steps in MediaController videoview Android
I want change Steps MediaController for example 1x,2x...
Jow control seeking steps?
0
votes
1answer
96 views
How do you seek in VLC 2.0.6 in C#
I am using a VLC 2.0.6 ActiveX control in a Visual Studio 2012 windows application. I figured out how to load and play a basic video using the following code:
...
0
votes
1answer
32 views
loading/streaming a file into a buffer/buffers
I have been trying for a couple of days now to load a file in chunks to allow the user to use very large (GB) files and still keep the speed of the program. Currently i have the following code:
using ...
1
vote
2answers
130 views
android mediaplyer seekTo inside onPrepared
my problem seems to happen only on android 4.2.2
I go this way idle state -> initialized state -> prepareAsync() -> and in onPrepared the seekTo is called, but on this android version the ...
0
votes
1answer
183 views
Issue with reading file on Windows Phone 8 SD card
I have problems reads the file on Windows Phone SD card. I get the valid Stream object using ExternalStorageFile.OpenForReadAsync. However any seek operation is ignored and position is not moved ...
0
votes
2answers
59 views
XML PARSER -Parsing a large file for a particular format output
I am trying to parse a large xml file and print the tags to an output file. I am using minidom, my code is working fine for 30Mb files but for larger ones it is getting memory error. So I used ...
0
votes
0answers
88 views
Why is seekp not doing its job? C++/CLI
My function "WriteToFile" is writing a piece of data to a file at the end of a line indicated by the int variable zone. The file is set up at the beginning with certain text to help indicate where to ...
0
votes
0answers
12 views
sox_seek() not working
I am looking to develop an audio player that repetitively plays audio files. I am using the sox library. I have tried the following code snippet but it only plays the audio file once and doesn't play ...
0
votes
1answer
67 views
Does lseek work on file redirection?
Usually lseek doesn't work on stdin.
But, what if I run my program like this:
./a.out < filename
Now stdin is a file and not keyboard.
Will lseek work there?
Can I do
lseek(0, -1, SEEK_CUR)
...
0
votes
1answer
129 views
Android making a ToggleButton to set the Ringtone to Vibrate
I am currently making an app with a SeekBar in which the SeekBar controls the Music Volume, Ringtone Volume, and Alarm Volume. It works fine but whenever I try to code in a button to set the phone to ...
0
votes
0answers
82 views
Flowplayer RTMP Seek
Is there a way to start a stream file on flowplayer from a certain seek point (eg. 15th second)?
I tried both $f("stream",...).seek(15); and streams: [{ url: ..., start: 15}] but nothing seems to ...
0
votes
0answers
28 views
Seeks for basic merge sort
I'm having a bit of trouble grasping the concept of how to determine the number of seeks in a merge sort. Here is a description of the problem I am working on along with my attempt at the solution:
...
2
votes
1answer
153 views
perl seek and remove at varying offsets in binmode
this is my script i am writing.
#usr/bin/perl
use warnings;
open(my $infile, '<', "./file1.bin") or die "Cannot open file1.bin: $!";
binmode($infile);
open(my $outfile, '>', "./extracted data ...
0
votes
1answer
81 views
How can i change the position of a progressBar, after the duration of a videoView?
i have the following code:
final SeekBar videoBar = (SeekBar) findViewById(R.id.videoBar);
final VideoView videoView = (VideoView) findViewById(R.id.videoViewPaint);
...
0
votes
1answer
165 views
MPEG-2 seeking, where to start?
I'd like to be able to seek to an arbitrary frame in a MPEG-2 file (from DVD, I guess it's called MPEG-2 Program Stream). So far I had been using OpenCV 2.1 for accessing those frames but that would ...
-3
votes
2answers
43 views
How long will it take to retrieve the data?
This is more of a hardware question than software.
I want to retrieve a 512 byte sector of data off a hard disk drive. The average seek time is 9 milliseconds and the disk spins at 7200 RPM. Once ...
1
vote
2answers
79 views
Perl - extract data from certain offsets in hex [closed]
ok i have actually put some effort into trying to accomplish this, this time :)
i have this code:
#! /usr/bin/perl
open(my $fin, '<', "./file1.bin") or die "Cannot open file1.bin: $!";
...
0
votes
1answer
120 views
python - open, seek, write to a file, from another file
I guess I am doing something wrong.
I am not sure what it is though, but I keep getting TypeError: expected a character buffer object
I just want to open a file, seek to certain offsets and overwrite ...
0
votes
0answers
115 views
c# Naudio Streaming Seek
I am making an application that needs to play various mp3 files from server, which the user can choose, I did it using NaudioStreaming demo, but I didn't get how I can make playback seekable ...
1
vote
1answer
89 views
BinaryWriter for 64bit files alternatives?
BinaryWriter - unable to perform Seek on 64bit values.
Parameter passed to the function Seek (int32)
Is there a similar class for files larger than 2 Gb?
6
votes
1answer
137 views
Is it safe to open a file several times at once in Python?
I seem to recall cases in lower level languages that opening a file more than once in a program could result in a shared seek pointer. By messing around in Python a bit, this doesn't seem to be ...
2
votes
2answers
146 views
seeking not working in flex 4.5 netStream byteArray
I am trying to play a flv video file in flex 4.5 with netStream byteArray. What I am doing is below:
Creating a netStream and video object
Attaching a netStream with video
Reading flv file in ...
1
vote
0answers
280 views
Accurate Seek in Pseudo-streaming Flash
I would like to know if the flash fallback (medialement or any other) can support accurate seek to the frame for an H.264 video in a MP4 container, transferred by HTTP using an IIS or apache web ...
0
votes
0answers
66 views
How to make pseudo-streaming from Amazon S3 in Adobe Air application
Are any ways to implement seek at progressive downloaded video from Amazon S3 in Adobe Air application. By default playback always start from 0 when try to go on random position.
But this file works ...
0
votes
1answer
209 views
UNIX lseek/read/write behavior
If I have a file of size 5 and I use lseek to seek to position 10 and then read 1 byte from this position using read, the return value of read system call is 0.
I want to know the return value of ...
2
votes
1answer
113 views
Where is seek method for FileReader of Phonegap 2.2.0?
I need a method like FileWriter.seek(offset) for FileReader.
I searched a lot but didn't found any thing?
It is so strange for me that FileWriter has seek method, but FileReader does not have it!
I ...
3
votes
3answers
114 views
C++ Seek a std::string::iterator to given position
Is it possible to seek a std::string::iterator safely to a given position?
std::string::iterator has a offset access operator (operator []), but it exists in the category defined by some people as ...
0
votes
2answers
181 views
How do I do random access reads from (large) files using node.js?
Am I missing something or does node.js's standard file I/O module lack analogs of the usual file random access methods?
seek() / fseek()
tell() / ftell()
How does one read random fixed-size ...
0
votes
1answer
146 views
Vimeo seekTo jumps to plus older seekTo
I've set seekTo to 30 seconds. When page loads it's directly seeking to 30 secs as required.'
Problem:
It plays automatically as it seeks to 30 secs on load. (it should seekto 30 secs but should be ...
0
votes
1answer
69 views
How can I know where the file pointer is so I can identify a starting position in a file
I am working with more than 6MM rows of ticker symbol data. I would like to grab all of the data for a symbol, do the processing I need, and output the results.
I have written code that tells me what ...
1
vote
1answer
428 views
MediaPlayer cannot seek to unbuffered position
This only happens to some specific video files in all version of Android (for example this file) but when playing in iOS or WP or even in Andorid using Vitamio plugin, it is seekable. I think a ...
3
votes
2answers
78 views
When are sequential seeks with small reads slower than reading a whole file?
I've run into a situation where lseek'ing forward repeatedly through a 500MB file and reading a small chunk (300-500 bytes) between each seek appears to be slower than read'ing through the whole file ...
1
vote
1answer
77 views
Find previous byte that isn't equal to unwanted byte in Python
I'm programming a small script that is meant to open a binary file, find an often-changing binary blob, and copy just that blob to a new file.
Here's the layout of the binary file:
-JUNK (Unknown ...
0
votes
0answers
41 views
Setting seek(0) in Elementtree
Getting this error:
result = plistlib.readPlist(filename)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plistlib.py", line 78, in readPlist
File ...
2
votes
2answers
242 views
Rewind the file pointer to the beginning of the previous line
I am doing text processing and using 'readline()' function as follows:
ifd = open(...)
for line in ifd:
while (condition)
do something...
line = ifd.readline()
condition ...
1
vote
3answers
130 views
search a string in file and insert content above
I try to search a string inside a txt-file and insert some specific content above it.
Sadly the output looks quite different from what I expect.
Can somebody give me a hint?
This is how far I got!
...
3
votes
1answer
277 views
Reload data source in android media player
Hy,
I'm having a hard time with media player in android. Basically i try to play a song from my sd card which is downloading (some sort of streaming). So after the song was downloaded (20%) the song ...
2
votes
2answers
409 views
Video.js changing source and seeking simultaneously
I am trying to build a site using video.js to view videos. We need to switch videos while maintaining the currentTime value from the old video. The way I have it working right now is using the ...
1
vote
4answers
277 views
How does Python's seek function work?
If I have some file-like object and do the following:
F = open('abc', 'r')
...
loc = F.tell()
F.seek(loc-10)
What does seek do? Does is start at the beginning of the file and read loc-10 bytes? Or ...
0
votes
1answer
121 views
How to use z3 split clauses of unsat cores & try to find out unsat core again
Could you like to tell how to split clauses of unsat cores?
And here is question 2 regarding after found out unsat cores, I will try to seek again.
Would you like to tell how to do this?
Thank you ...
0
votes
1answer
106 views
Red5 1.0 does not play any videos after seeking
I'm using Red5 1.0.0-RC2 and it doesn't play any video after seeking a previous one. The process is the following:
1. start the Red5 server
2. open the client in the browser and "play" with the ...
1
vote
1answer
356 views
Android mediaplayer onSeekComplete not being called
I'm writing a media player that will stream live and on demand streams. It's mostly working, but for some reason I can't get seekTo(int) working correctly. My problem is that when I call seekTo(int) ...
