Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am trying to use Video.JS in an environment that requires ADA Compliance. Part of this is the capability to tab through and activate all video controls in both Flash and HTML5 versions of the player. The performance of the built-in tabbing of Video.JS is pretty buggy, especially in Flash. I am hoping to get my hands on the FLA and source code of the Video.JS flash player so I can tweak the tabbing behavior. Does anybody have any idea where I could find it?
Thanks!
The source for the swf component is on Github: https://github.com/zencoder/video-js-swf
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a good JavaScript library that enables the easy simulation of the Windows 8 look and feel for web-based applications? I'm thinking of things like tiling, flat boxes, etc.
EDIT: I just found out that the Windows 8 UI style is called Metro.
If you are willing to use JQuery you can use Metro JS. A javascript plugin for JQuery.
Live tiles, Application bar, ect...
More info here: http://www.drewgreenwell.com/projects/metrojs
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am currently trying to parse the semantic structure of a PDF file. I believe the metadata added to make PDFs accessible is the correct way to go about it, but I can't find a library that will handle it cleanly.
I've tried PDFLib TET on iOS but I can't get it to open certain test documents and the error it returns is too obscure to be Googleable.
Are there any other libraries that do the same?
I'd have a look at the pCOS-Library (also from http://pdflib.com). For use in PHP there would be an alternative you could have a look at http://www.setasign.com/. They might have a tool for that purpose.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I was looking into Voice over Internet Protocol (VoIP) and thought to try it myself.
https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html
I have already gone through the below link:
iOS: Open Source VoIP/SIP Objective-C Code
I need to try sample or demo application with code so that can understand the concept behind. Thanks.
Try Linphone and Siphone with pjsip. Linphone works great out of the box, siphone need a litle tweaking.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
i was looking everywhere to find a good guide,or docs about the youtube api for iphone and couldnt find something that answer my needs.
We need to be able to play/stop a youtube videos from our app, NOT from the youtube app,
and to get more metadata such as elapsed time from player .
i also want to be able to fit the player to the specific size that i want, and to be played inside my app and not on explorer or iphone player.
any document ,guide , to that would be great.
thanks.
Simple answer: it doesn't exist.
More complex answer: it could happen, but it'd be a major pain. Basically there would be a few steps you'd need to take:
Load the YouTube page into a NSString for regex searching
Match the string to find the MP4 URL of the video
Create a MPMoviePlayer (or whatever) to play your video
???
Profit.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'd like to be able to analyze an image captured with the iPhone camera and generate survey results (multiple choice). Apparently what I'm interested in is called OMR, Optical Mark Recognition (not OCR, Optical Character Recognition which is more sophisticated).
Does anyone know of any OMR libraries or source code that can be used to build such an iPhone app? And if not, any suggestions on rolling my own would be appreciated. Thanks for the help in advance.
Maybe this is of interest to you:
http://cmgresearch.blogspot.com/2010/10/augmented-reality-on-iphone-with-ios40.html
It's from the developer of Sudoku Grab, which recognizes sudoku grids from the camera. It should definitely be useful to you.