Mac Cocoa |
Author |
Message |
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Sat Sep 27, 2008 8:10 pm Post subject: Movies, Video & Media |
|
|
iphonedevsdk.com - MPMoviePlayerController vs. UIMoviePlayerController?
"The reason I ask is that I can only play a movie once. If the User hits
the 'done' button, the next movie to be played is not played (it looks as
though the movie will play, but then I just get a blank screen)." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Mon Oct 27, 2008 7:36 pm Post subject: |
|
|
oreilly.com - Creating a Full-Screen Camera Preview
"I'm not big on the whole Image Picker Camera interface. I hate how slow it is
and how it prevents you from scraping the screen. So here's my work around." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Tue May 19, 2009 12:20 am Post subject: |
|
|
Slashdot: Embedding Video In a Site For iPhone/iPod?
"All you need is a direct link to an Apple-compatible MPEG4 video with the
correct mediatype on a server that supports the Range HTTP header. The
iPhone/iPod's player will automatically start and allow seeking in the video." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Thu Jul 09, 2009 2:20 am Post subject: |
|
|
appleinsider.com - Apple launches HTTP Live Streaming standard in
iPhone 3.0
"One of the more overlooked features of the new iPhone 3.0 is support for
a new open standard for live video streaming over HTTP, which promises to
open up standards-based video broadcasting to a wide audience while giving
mobile users an optimized picture as they roam between WiFi and mobile
networks." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Thu Jul 23, 2009 8:28 am Post subject: |
|
|
MF - Loop Videos on iPhone
"Okay, so it isn't possible to loop it without a slowfade out at the end, but
I did figure out that it IS possible to loop it with a fadeout simply by calling
play again once the video is finished..." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Sun Apr 11, 2010 2:09 am Post subject: |
|
|
iphonedevsdk.com - UIImagePickerController and videorecording on
iPhone 3GS
"The documentation is not at all clear on how to do this, but it's fairly stra-
ightforward.
1. Add the MobileCoreServices framework to your project
2. Add #import <MobileCoreServices/UTCoreTypes.h> to the header file
where you will reference the picker. Alternately, you can add the import to
your precompiled header file (.pch) so the UTCoreTypes constants are ava-
ilable throughout the project.
Now, before calling the UIImagePickerController, just set the mediaTypes
property to the movie type, kUTTypeMovie." |
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Mon Dec 28, 2020 9:41 am Post subject: |
|
|
sendbird - How to make local calls with CallKit and Sendbird Calls
"This tutorial guides you through the process of developing VoIP apps using
the Sendbird Calls framework and Apple's CallKit framework. You'll start by
developing a simple project that allows you to make local calls using CallKit." |
|
Back to top |
|
|
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Tue Dec 13, 2022 12:45 am Post subject: |
|
|
so - AVPlayer fast forward/backward skipping with pan gesture
"I would like if the user lifts their finger and places it again,anywhere on the
screen for the fast forward or backward to resume at the exact same frame
where it left off and continue progressing from there." |
|
Back to top |
|
|
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Mon May 29, 2023 9:30 pm Post subject: |
|
|
so - How to properly release an AVCaptureSession
He/she proposes the following code:
Code: | dispatch_after(
dispatch_time(0, 500000000),
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), // or main queue, or your own
^{
// Do your work here.
[session release];
// etc.
}
);
|
|
|
Back to top |
|
|
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Mon May 29, 2023 9:50 pm Post subject: |
|
|
git - Twilio Video Quickstart for iOS
"This repository contains example code written in both Objective-C and Swift.
If you haven't used Twilio before, welcome! You'll need to Sign up for a Twilio
account first. It's free!
These Quickstarts expect that you have "Client-side Room Creation" enabled in
your Twilio account. You can check this setting on the Default Room Settings
page in the Twilio Console." |
|
Back to top |
|
|
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Tue May 30, 2023 11:48 am Post subject: |
|
|
Benoit Pasquier - Creating a webcam utility app for macOS in SwiftUI
"Since I recently explored how to use AVFoundation with SwiftUI on iOS, I
thought it would be similar enough to reuse for a macOS app version. After
all the webcam of a laptop is just another video feed." |
|
Back to top |
|
|
|