[Solved] iPhone programming – How to create a movie file from muti images and save it in iPod library? [closed]

I would investigate ffmpeg, specifically libavcodec – this will allow you to convert static images in to a movie file (assuming you can get it to compile for iOS). As far as adding to the iPod library is concerned, you aint going to be able to do that – you can read from the library … Read more

[Solved] How to load YouTube live video streaming in unity? [closed]

asset store has plugins for youtube videos: https://www.assetstore.unity3d.com/en/?stay#!/search/page=1/sortby=relevance/query=youtube i’m pretty sure unity video player plays youtube videos also, if you pass it the actual mp4 youtube video url. (you need to extract it with those plugins, use some website api to extract it, or make your own) 2 solved How to load YouTube live video … Read more

[Solved] What tools are available to build a custom media player? [closed]

Have you tried searching? Web: SoundJS supports Web Audio API / HTML5 audio / Flash. Howler.js supports Web Audio API / HTML5. MediaElement.js supports H.264 in mp4 over HTML5 with a Flash fallback. Standalone: libav FFmpeg to name a few. 3 solved What tools are available to build a custom media player? [closed]