Displaying 2 results from an estimated 2 matches for "tagdata".
Did you mean:
gdata
2012 Jun 14
0
Animation problem
...e to create the animation, though the data is not
plotting correctly, and I feel that the problem lies with a loop that I
can't seem to figure out. I only want fish to "show" when they are detected,
which is provided in the "hits" column, where 1 = hit, 0 = no hit.
The data(tagdata) looks like this:
Day Tag Species Receiver hits x y
1 1 xbow 10 1 105 350
1 2 cut 20 0 105 630
1 3 smilie 30 0 185 325
1 4 coho 40 0 280 250
1 5 mar 50 1 380 315
1 6 xbow 10 1 105 350
2 1 xbow 10 0 105 350
2 2 cut 20 1 10...
2006 Sep 06
1
FLAC__metadata_simple_iterator_set_block corrupting Flac (ogg) stream?
...s in a FLAC file, which appears to be
embedded an Ogg stream. This particular file also has ID3 headers at the
beginning, but I was planning on ignoring those and fixing them up using
some ID3 code later on ...
Now, to read the comments is quite simple:
FLAC__metadata_get_tags(fileName, &tagData);
...
..
.
FLAC__metadata_object_delete(tagData);
For writing to the file, however, I do something along the following lines
(error code stripped out to keep things shorter), this is pretty much as the
flac documentation suggests:
result = FLAC__metadata_simple_iterator_init(i...