Welcome! This is a website that everyone can build together. It's easy!

OpenInsight Community Source Code

An OpenInsight community resource, this wiki stores OpenInsight source code examples to jump start your application development.

Share your favorite piece of code, help a fellow OpenInsight developer and build a strong community.







zapher67
zapher67
Latest page update: made by zapher67 , Jul 29 2008, 2:12 AM EDT (about this update About This Update zapher67 Edited by zapher67

28 words deleted

view changes

- complete history)
More Info: links to this page
Started By Thread Subject Replies Last Post
BarryStevens M4a metadata retrieval 0 May 22 2009, 12:29 AM EDT by BarryStevens
BarryStevens
Thread started: May 22 2009, 12:29 AM EDT  Watch
I have finally found an easy way to get info from M4a files.

Get AtomicParsley from here:

http://sourceforge.net/projects/atomicparsley



function bsbs_get_metadata(MusicFile)
declare subroutine SRP_Run_Command
equ null$ to ''
Song=null$
Artist=null$
Album=null$
Output="VAR"
Cmd="c:\m4aMetadata\AtomicParsley.exe ":quote(MusicFile):" -t"
SRP_Run_Command(Cmd, Output)
swap \0D0A\ with @fm in OutPut
Pos = index(OutPut,\A9\:'nam" contains:',1)
if Pos then
Song=trim(OutPut[Pos+15,@fm])
end
Pos = index(OutPut,\A9\:'ART" contains:',1)
if Pos then
Artist=trim(OutPut[Pos+15,@fm])
end
Pos = index(OutPut,\A9\:'alb" contains:',1)
if Pos then
Album=trim(OutPut[Pos+15,@fm])
end

return Song:@fm:Artist:@fm:Album
Do you find this valuable?    
Keyword tags: M4a metadata songs
paladinn Arev32 Conversion - Copy Tables 2 Apr 2 2009, 4:25 PM EDT by Exorsys
Thread started: Jan 30 2009, 4:28 PM EST  Watch
I'm trying to run the Arev32 conversion wizard on an old Arev 2.12 system with Lots of dots (no underscores). Aside from the dot issue, I want to convert the data tables in place and Not copy them elsewhere (We're talking Huges tables). The wizard doesn't seem to let me get away with that, and Bob at RevSoft tells me that you Have to copy the tables.

Any advice?

Michael Matthews
Do you find this valuable?    
Keyword tags: Arev32 copy tables
Show Last Reply
BarryStevens replacement debugger 0 Aug 8 2008, 2:53 AM EDT by BarryStevens
BarryStevens
Thread started: Aug 8 2008, 2:53 AM EDT  Watch
Any chance of getting some replacement debugger examples posted, that also sends an email.
Do you find this valuable?    
Showing 3 of 4 threads for this page - view all