IOS: Difference between revisions

From XiphWiki
Jump to navigation Jump to search
(+JavaScript see also link)
Line 15: Line 15:


It should be possible for an Obj-C wrapper library to use the same audio and video buffer types for input/output as AVFoundation does, however, which will make it easier to hook them up together for transcoding or live encoding from the camera.
It should be possible for an Obj-C wrapper library to use the same audio and video buffer types for input/output as AVFoundation does, however, which will make it easier to hook them up together for transcoding or live encoding from the camera.
== Related projects ==
* [[JavaScript]] codecs


{{DISPLAYTITLE:iOS}}
{{DISPLAYTITLE:iOS}}

Revision as of 16:41, 7 November 2013

At least libogg, libvorbis, and libtheora build and run on iOS without modification in their current incarnations.

Building

Experimental work in progress script to build the libraries to .framework bundles that can be easily linked to in an Xcode project: https://github.com/brion/OgvKit

Notes

  • libtheora
    • Must pass --disable-asm, as the asm code doesn't build for iOS (yet?) errs

OS integration

iOS's native media framework is AVFoundation, which unfortunately is not extensible with codec or file type plugins. :(

It should be possible for an Obj-C wrapper library to use the same audio and video buffer types for input/output as AVFoundation does, however, which will make it easier to hook them up together for transcoding or live encoding from the camera.

Related projects