3

I am trying to process videos in some way:

  • Cut and merge videos.
  • Record the screen and make the video out of that recording.

I look up on the Internet and stackoverflow as well and see that there is a code sample from apple called AVEditDemo but I could never find it out. If anybody has that example and willing to share with me or has any similar examples that can teach me how to do the 2 above jobs, it would be excellent.

I see there are some similar questions like this one, but I would love to have the code sample. It would help me move forward quickly.

Community
  • 1
  • 1
vodkhang
  • 18,639
  • 11
  • 76
  • 110

1 Answers1

5

There is a WWDC 2010 video called Editing Media with AV Foundation which may be useful to you and is available through the Developer Portal.

The AVEditDemo application is included in the WWDC 2010 Sample Code because it goes with the video. This should contain the AVEditDemo Application which goes with the Video. Unfortunately you need to download all the WWDC 2010 Sample Code to get it (232.6mb). You can get the entire download of all the code here: http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?code=y&source=x&bundleID=20645

Suhail Patel
  • 13,644
  • 2
  • 44
  • 49
  • I think that the WWDC '11 session 415 "Working with Media in AV Foundation" supersedes the '10 video and it appears to use the same sample code for the first half of the session. – Mark Apr 11 '12 at 15:41
  • where could you find the links to the actual sample codes & videos? – headkit Aug 22 '12 at 19:01
  • 2
    @headkit, if you're asking about the 2011 session mentioned by Mark Thalman, the video and sample code are at https://developer.apple.com/videos/wwdc/2011/. You have to be a registered Apple developer to see them. – Tommy Herbert Sep 12 '12 at 17:16
  • 1
    The link is broken – jameshfisher May 31 '16 at 20:56
  • Is video still available in 2021? Couldn't find any session mentioned in topic. Only found WWDC 10 projects on github https://github.com/master-nevi/WWDC-2010/tree/master/AVEditDemo – GxocT Dec 06 '21 at 14:19