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

OpenInsight Community Source CodeThis is a featured page

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
OISucks OI is becoming a joke 2 Mar 15 2011, 4:39 PM EDT by sodawerks
Thread started: Jun 11 2010, 12:06 PM EDT  Watch
When is OI going to get a real IDE. One like Visual Studio. The crap that rev makes is a joke and unsellable to developers that "know better". SRP makes some great products that look good too. Why not hire them to build your IDE and stop messing with the stupid multicolored windows, cause they look retarded.

Maybe, instead of charging Oracle prices for your software you could make it Oracle class first.

Someone will probably delete this anyway, but download the free trial of Visual Studio 2010, and be honest with yourself the next time you go into OI and have to look at the stupid IDE they came up with. If this **** continues, I'm going to VS.NET and SQL.
1  out of 2 found this valuable. Do you?    
Show Last Reply
aheredia How to create Graphics 0 Sep 2 2009, 11:24 AM EDT by aheredia
Thread started: Sep 2 2009, 11:24 AM EDT  Watch
Hi, I´m new in this tool, and I wish to know if exist a way to create graphics using OI, or if I need an extra componet.

Thanks a lot
Best regards!!
Do you find this valuable?    
Keyword tags: None
BarryStevens M4a metadata retrieval 0 May 22 2009, 12:29 AM EDT by 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
Showing 3 of 6 threads for this page - view all