iPhone : mkv/mka parsing libraries - iphone

This may sound a newbie question however I'm new to iOS dev.
Are there any mkv parser libraries for iOS, please suggest some links.
Also I would like to know if their license do not conflict with Apple's applications store terms ?
Thanks in advance !

Have to answer to my own question, the result of my research are. Following projects can be used to achieve mentioned functionality libVLC, libVLCcore and libVLC more info here http://www.videolan.org/vlc/download-ios.html

Related

Using XML-RPC in iPhone apps

Is it possible to use XML-RPC calls in iPhone application (what approaches are the best)?
Are there any constraints with XML-RPC?
Thank you,
Paul
I have recently come across this library, take a look at the description at the end.
Hope you find it useful.
https://github.com/eczarny/xmlrpc
You might be interested in the WordPress for iOS app. It's completely open source and uses an XML-RPC library.
http://ios.wordpress.org/

Control iPhone volume using phonegap?

I was wondering if anyone knew how to control the iPhone's volume using PhoneGap/Titanium/Corona? If not I would very much appreciate a tutorial on how to develop my own plugin that would be able to interface with the iPhone frameworks and develop something along the lines of MPVolumeView.
Thanks!
Dredging up an old question, but there is a plugin available for this now if anyone stumbles upon this question looking for a solution:
https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/VolumeSlider
It basically does exactly what #Aaron Saunders suggested (loads an MPVolumeView via a plugin).

RAR Decompress on iPhone Device

Has anyone found a solution to decompressing RAR files on iPhone (not Jailbroken)? It would be great if there was a library similar to libz.
I did not find anything official from RARlab.
Anyone successful with integrating unRAR into their app? The
source code appears to be C++?
I know that this has been asked before, but I've not seen a solution other than porting unRAR which is beyond me. Would greatly appreciate any information or suggestions. Thank you.
If you want to use the unRAR in an iOS app, you'll probably need to find someone experience with C++ to integrate it into your project.

iPhone OSC Library

I know there are some iPhone Apps out there that use OSC and i'm wondering now if someone of them released a nice library for it. I googled a loot around but didn't found anything. Maybe someone knows how to google better then me :)
I'm currently trying to get OSCKit to work on the iPhone, but i'm not that good in iPhone development.
Thanks for your answers.
TouchOSC is using oscpack
It's implemented in C++ which might be awkward to use in an iPhone (I personally don't mind)
There's a pure Objective-C OSC framework called "VVOSC" which is easy to configure and use in an iPhone SDK context:
vvopensource
OSC-Kit was replaced by WOscLib
-t
Sounds like you're looking for dsmi
Don't be put off by that "DS", it works on the iPhone too.
Also, if you are using PhoneGap, I implemented OSC for javascript (client-side) in my KievII library. Here's the code.

Alternative to NSXMLDocument on the iPhone for XSLT purposes

I know it's been asked before (like here), but is there way to natively use XSLT on the iPhone? If not, and I need to use libxslt, is there any documentation/tutorial of how to use it on the iPhone?
EDIT:
I've decided to use libxslt. What files are necessary to include? I haven't found any tutorials of examples of use on the iPhone, and I'm unsure of how to approach it. Any help would be appreciated.
Thanks in advance.
Cannot use libXSLT on iPhone. Not as of today. App will be rejected. libXSLT is built into the iOS andd COULD be called - but this is a private API of the iPhone and will cause rejection. If you compile the libxslt library yourself and statically link it to your app, you will still get rejected. Many people have reported this bug in the app review process but nothing has yet changed.
It depends how you want to use XSLT; not sure what you mean by "natively". If you're just embedding a browser, MobileSafari will interpret XSLT for you.
If you're just converting one XML document into another for processing, libxslt is not a bad choice. There's no difference using libxslt on the iPhone from any other platform. Given Apple doesn't include headers for it, it is likely they don't want you using the bundled copy. You are better off compiling a copy into your application instead, against the provided libxml2 library.
If you want a more specific answer you may wish to pose a more specific question. :-)