search for: _details

Displaying 7 results from an estimated 7 matches for "_details".

Did you mean: details
2009 Mar 13
2
[webrat] click link by title doesn''t work
Webrat 0.4.2 doesn''t seem to allow you to click links by title. Am I missing something stupid? With steps below running in sequence, first passes, second fails Then /^I should see a view (\w+) details link$/ do |object| response.should have_tag("a[title=#{object}_details]") end When /^I follow view (\w+) details link$/ do |object| click_link "#{object}_details}" end I think click link should find by - innerHTML, with simple   handling - title - id - class Does anyone have any contradictory opinions? In the meantime I''ll ha...
2004 Sep 10
1
feature request
Right now it is impossible (using the metadata API) to get metadata from a FLAC stream unless it is a file on the local disk (AFAICS). It would be useful if there was another interface level that could provide read-only access to metadata by providing the data via a read callback. This would allow metadata to be read from remote locations and in streaming situations. BTW, right now I am adding
2004 Sep 10
0
reading vorbis comments with FLAC++?
...how this > works > and it would be cooler if some basic examples could be provided. > > Thanks in advance for any help that can be provided. Excuse my > ignorance! :( it's in the API docs; here's one link: http://flac.sourceforge.net/api/group__flac__metadata__level1.html#_details The C++ interface is a little simpler: FLAC::Metadata::SimpleIterator it; if (it.is_valid()) { if (it.init(filename, true, true)) { FLAC::Metadata::VorbisComment *vc = 0; do { if (it.get_block_type() == ::FLAC__METADATA_TYPE_VORBIS_COMMENT) { vc = dynamic_cast&...
2004 Sep 10
3
[Flac-users] Embedding the decoder... Sample code?
I'm looking for sample code for using flac in my program. I want to be able to decode a flac file to PCM. Something like: bool decodeFile( const char* pathNameOfFile, voud** data ); How would I complete the above function? TIA
2004 Sep 10
0
[Flac-users] Embedding the decoder... Sample code?
...PCM. Something like: > > bool decodeFile( const char* pathNameOfFile, voud** data ); > > How would I complete the above function? Have you seen the API documentation? The process for the file decoder is described here: http://flac.sourceforge.net/api/group__flac__file__decoder.html#_details There is a C++ wrapper class that makes it even easier. Josh __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com
2005 Nov 11
3
how to include FLAC in a CoreAudio wave player
Hi everyone, I'm still new at this audio development thing in OSX as all of my prior experience is in database applications. I'm also new to C++ and the Xcode environment, which makes things interesting as I learn. There is a CoreAudio wave player written in C++ to which I would like to add FLAC playback support. I have looked through the libFLAC++ API and think I have an idea of what
2004 Sep 10
3
reading vorbis comments with FLAC++?
Well, I'm quite frankly stumped. I'm writing a program that recurses into directories and reads (among others) FLAC files and should be able to read the vorbis comments ARTIST and TITLE from the file. A while back, I was popen()ing to metaflac, because I didn't want to mess with libFLAC. But now, it's the weekend, so I can mess around with this. Here's the code in question: