Skip to content

Instantly share code, notes, and snippets.

@CocoaBeans
Forked from IsaacXen/README.md
Created November 14, 2023 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CocoaBeans/c21abdb5e50e98f7f140b3634f254e86 to your computer and use it in GitHub Desktop.
Save CocoaBeans/c21abdb5e50e98f7f140b3634f254e86 to your computer and use it in GitHub Desktop.
(Almost) Every WWDC videos download links for aria2c.
WWDC                                      2007  2008  2009
2010  2011  2012  2013  2014  2015  2016  2017  2018  2019
2020  2021  2022  2023
Tech Talks        App Store Connect       Insights

Usage

aria2c --input-file=<#file#>

FAQ

Q: HTTP error 403 while downloading 2007~2012 videos?

You need a special cookies to download videos from 2007 ~ 2012. Some videos requires cookies with your AppleID signed in (previously on developer.apple.com/devcenter). Here's how:

  1. Open any video links during 2007 ~ 2012, but with http://developer.apple.com/services-account/download?path= prefix. for example, this one.

    This will add ADCDownloadAuth to your cookies.

  2. Open your browser's developer tools and navigate to the cookies section:

    Safari

    1. Enable Safari -> Settings -> Advanced -> Show Develop menu in menu bar
    2. Open web inspector with Develop -> Open Web Inspector (or Option + Command + I)
    3. Head to Storage tab, and select Cookies on side bar

    Chrome

    1. Open Developer Tools with View -> Developer -> Developer Tools (or Option + Command + I on Mac, F12 on Windows)
    2. Head to Application tab, then Cookies on side bar, select the url item within it.
  3. Locale ADCDownloadAuth and copy the value to the clipboard.

  4. Create a cookies.txt file with following content:

    # Netscape HTTP Cookie File
    .apple.com	TRUE	/	TRUE	0	ADCDownloadAuth	<#Value#>
    

    Replace the <#Value#> with your value copied from last step. Notice that each fields in this file are separated with a tab (\t).

    [!NOTE] We are using 0 here in the expire field because it doesn't metter when downloading. Do note that once the cookies expired, you will need to obtain a new token by login to /services-account again.

    For more details on the Netscape's cookies file format, see this and this.

  5. Load cookies to aria2 with --load-cookies option:

    aria2c --load-cookies=/path/to/cookies.txt --input-file=<#file#>
Q: I can't download any video from 2013 with aria2.

For some reasons 2013 videos can't be download directly, but there's a workaround: we can download the stream as video.

Take session 201 as an example, here's the HD url to the sesson video:

https://devstreaming-cdn.apple.com/videos/wwdc/2013/201xex2xxf5ynwnsgl/201/201-HD.mov

Change it to the stream file version. The file name can be found from source in developer.apple.com/videos/play/wwdc2013/201 (use wayback machine, search m3u8):

https://devstreaming-cdn.apple.com/videos/wwdc/2013/201xex2xxf5ynwnsgl/201/ipad_c.m3u8

Now we can use youtube-dl to extract and download it. First install youtube-dl:

brew install youtube-dl

Then, use youtube-dl to download the video with best quality:

youtube-dl -f best --output "[2013] [Session 201] Building User Interfaces for iOS 7.mp4" https://devstreaming-cdn.apple.com/videos/wwdc/2013/201xex2xxf5ynwnsgl/201/ipad_c.m3u8

For batch download, use wwdc2013-hls.sh, remember to chmod +x wwdc2013-hls.sh.

Down side is that there's no parallel downloading :(.

The -f best choose the stream with best quality automatically, but won't always works. If you encounter requested format not available error with -f best option, you may pick a format manually, here's how:

First, use --list-formats to list all streams available:

youtube-dl --list-formats <URL>
# [generic] cmaf: Requesting header
# [generic] cmaf: Downloading m3u8 information
# [info] Available formats for cmaf:
# format code                   extension  resolution note
#
# (more formats here...)
#
# 799                           mp4        1920x1080   799k , hvc1.1.6.H120.B0, 29.97fps, video only
# 1044                          mp4        2560x1440  1044k , hvc1.1.6.H150.B0, 29.97fps, video only
# 2277                          mp4        3840x2160  2277k , hvc1.1.6.H150.B0, 29.97fps, video only (best)

Pick a format you want to download, for example, we are downloading 2277 because it has the best quality. Use -f option to choose the format:

youtube-dl -f 2277 <URL> --output <FILENAME>

Some stream split video and audio into different tracks (as shown above, video only suggests that this format contains only video track). In this case, use -f VIDEO_FORMAT+AUDIO_FORMAT instead to download both video and audio tracks. For example -f bestvideo+bestaudio, -f 2277+bestaudio.

This technique should also works for video that's broken / fail to download / no download link provided, as long as it has the m3u8 file.

Q: Why I can only download some Tech Talks 2013 videos?

Short anwser is: I don't know. However, I can tell you how I found these links for "some video".

The original download URL can be found here. for example, this is the HD URL for tech talks 22:

http://devstreaming.apple.com/videos/techtalks/2013/22_Advances_in_OpenGL_ES_3_0/Advances_in_OpenGL_ES_3_0-hd.mov

This domain has been replaced with devstreaming-cdn.apple.com. so by changing the domain, we can still download some of them, namly:

Advances in OpenGL ES 3.0
App Store Distribution and Marketing for Games
Architecting Modern iOS Games
Developing 2D Games with Sprite Kit
Game Developer Day Kickoff
Hidden iOS 7 Development Gems
Integrating iOS 7 Game Technologies
Integrating iOS 7 System Technologies
User Interface Design for iOS 7 Games

I mean "some", because the following videos just won't works:

App Developer Day Kickoff
User Interface Design for iOS 7 Apps
Architecting Modern Apps, Part 1
App Store Distribution and Marketing for Apps
Architecting Modern Apps, Part 2
Integrating iOS 7 Technologies
Security and Privacy in iOS 7

If you encounter a "can't play" error (in safari, this is a play icon with a slash), a simple fix is to refresh (or retry in aria2).

An alternative way to downlaod these is to download the video fragments with m3u8 file. Open this page in the browser, click any title and then play button, you will see a player show up and a spinning indicator. Open your developer tool and select the player element, you will see that the video url points to ref.mov:

http://devstreaming-cdn.apple.com/videos/techtalks/2013/22_Advances_in_OpenGL_ES_3_0/ref.mov

Open this URL in a new tab, and check the developer tool's network tab, you can see it's accessing the sl.m3u8 file.

http://devstreaming-cdn.apple.com/videos/techtalks/2013/22_Advances_in_OpenGL_ES_3_0/sl.m3u8

With this URL, we can now download it with youtube-dl, as the previous Q&A had shown.

Q: Some link no longer works.

There's not much I can do about it.

Apple is known for breaking links to old session videos. Sometime we are lucky to find new working links, but most of the time don't.

If you value these session videos, download a copy beforehand when it's possible, just in case.

Q: Can you share your archives?

If only there's a realiable way to share it.

I used to share the entire archives on OneDrive and GDrive, both account got banned for abuse after some time.

Edit: @krackers points out that we can upload to internet archive. I poked around and found that (A) some one else already upload some videos to it. (B) There are 500GB limit pre item, which is more than enough if we group these videos yearly. (C) It allow adding new files to it in the future. I'll try to upload some of the videos when I'm free, we'll see how it goes.

Note

WWDC 2008
[CORRUPTED]
Session 453: Using Vectorization Techniques to Maximize Performance
Session 520: Deploying and Scaling iCal Server Calendaring Services
Session 557: Infrastructure and Deployment Techniques for Large-Scale On-Demand Content Delivery with the Mac
 
[MISSING]
Session 105: Publishing on the App Store
Session 312: iPhone Application Development Fundamentals
Session 313: Getting Started with Web Development for Safari on iPhone
Session 324: iPhone for Mac Developers
Session 337: Understanding iPhone View Controllers
Session 343: Understanding iPhone Table Views
Session 351: iPhone Application User Interface Design
Session 352: Web Development for iPhone: Tips, Tricks, and Advanced Techniques
Session 362: Controls, Views, and Animation on iPhone
Session 379: Enhancing Your iPhone Web Application with CSS Transforms and Animations
Session 380: iPhone Multi-Touch Events and Gestures
Session 387: Text Input on iPhone
Session 391: Building an Advanced iPhone Web Application, Hands On
Session 402: Managing Secure Data on iPhone
Session 410: Mastering iPhone View Controllers
Session 417: Optimizing Performance in iPhone Applications
Session 432: Mastering iPhone Table Views
Session 446: How Do I Do That? Tips and Tricks for iPhone Application Development
Session 456: The KPCB iFund
Session 520: Deploying and Scaling iCal Server Calendaring Services
Session 529: Address Book for iPhone
Session 546: iPhone Device APIs: Location, Accelerometer and Camera
Session 703: Introduction to Game Development for iPhone
Session 706: Audio Development for iPhone
Session 708: 3D Graphics for iPhone using OpenGL ES 
Session 901: Introduction to the iPhone Development Tools
Session 921: Using Dashcode to Create and Debug iPhone Web Applications
Session 925: Debugging and Profiling Your iPhone Application

As suggested by @ZhongWentao2002, some session videos seems to have a copy on apple server. Take session 916 as an example, url (1) points to a 28 seconds corrupted video, but url (2) points to a full 53m23s video:

# (1)
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/916.m4v

# (2)
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/916.m4v

This seem to only apply to mac_track videos, no it_track and iphone_track.

Session 453, sadly, is corrupted for both url.

WWDC 2009
[CORRUPTED] (right link, broken file)
Session 101: Perfecting Your iPhone Table Views
Session 105: Cut, Copy, and Paste on iPhone
Session 111: NSImage in Snow Leopard
Session 200: Leveraging Web Content in Mac OS X Applications with WebKit
Session 208: Creating Safari Web Applications in Dashcode
Session 320: Image Processing and Effects with Core Image
Session 404: Using Automator and Services to Integrate with Mac OS X
Session 420: Introduction to Objective-C
 
[MISSING] (wrong link)
Session 130: Performance Tuning with Shark and Intel's Processor Performance Events
Session 500: Managing Processes with launchd
Session 604: Managing Home Directories with Mac OS X Server
Session 619: Secure Access with 802.1X
 
Session List
WWDC 2011
[URL PATTERN]
HD:     https://download.developer.apple.com/videos/wwdc_2011__hd/session_<#SESSION_ID#>__<#SNAKECASE_TITLE#>.m4v
SD:     https://download.developer.apple.com/videos/wwdc_2011__sd/session_<#SESSION_ID#>__<#SNAKECASE_TITLE#>.m4v
STREAM: https://devstreaming-cdn.apple.com/videos/wwdc/2011/<#SESSION_ID#>/ipad_c.m3u8
PDF:    https://download.developer.apple.com/wwdc_2011/adc_on_itunes__wwdc11_sessions__pdf/<#SESSION_ID#>_<#SNAKECASE_TITLE#>.pdf
WWDC 2012
[URL PATTERN]
HD:     https://download.developer.apple.com/videos/wwdc_2012__hd/session_<#SESSION_ID#>__<#SNAKECASE_TITLE#>.mov
SD:     https://download.developer.apple.com/videos/wwdc_2012__sd/session_<#SESSION_ID#>__<#SNAKECASE_TITLE#>.mov
STREAM: https://devstreaming-cdn.apple.com/videos/wwdc/ljbofiuvboiubvoiubseoriubvbip/<#SESSION_ID#>/ipad_c.m3u8
PDF:    https://download.developer.apple.com/wwdc_2012/wwdc_2012_session_pdfs/session_<#SESSION_ID#>__<#SNAKECASE_TITLE#>.pdf
WWDC 2013
[URL PATTERN]
HD:     https://devstreaming-cdn.apple.com/videos/wwdc/2013/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>-HD.mov
SD:     https://devstreaming-cdn.apple.com/videos/wwdc/2013/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>-SD.mov
STREAM: https://devstreaming-cdn.apple.com/videos/wwdc/2013/<#ID#>/<#SESSION_ID#>/ipad_c.m3u8
PDF:    https://devstreaming-cdn.apple.com/videos/wwdc/2013/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>.pdf
SUBS:   https://devstreaming-cdn.apple.com/videos/wwdc/2013/<#ID#>/<#SESSION_ID#>/subtitles/eng/prog_index.m3u8
WWDC 2014
[URL PATTERN]
HD:     https://devstreaming-cdn.apple.com/videos/wwdc/2014/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>_hd_<#SNAKECASE_TITLE#>.mov
SD:     https://devstreaming-cdn.apple.com/videos/wwdc/2014/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>_sd_<#SNAKECASE_TITLE#>.mov
STREAM: https://devstreaming-cdn.apple.com/videos/wwdc/2014/<#ID#>/<#SESSION_ID#>/ref.mov
PDF:    https://devstreaming-cdn.apple.com/videos/wwdc/2014/<#ID#>/<#SESSION_ID#>/<#SESSION_ID#>_<#SNAKECASE_TITLE#>.pdf
SUBS:   https://devstreaming-cdn.apple.com/videos/wwdc/2014/<#ID#>/<#SESSION_ID#>/subtitles/eng/prog_index.m3u8
WWDC 2017
[HLS ONLY]
Session 101: Keynote
Session 102: Platforms State of the Union
WWDC 2018
[HLS ONLY]
Session 101: Keynote
Session 102: Platforms State of the Union
Session 715: Introducing Network.framework: A modern alternative to Sockets
Session 803: Designing Fluid Interfaces
Session 805: Creating Great AR Experiences
These sessions can be downloaded, but the file is currupted:
WWDC 2013 Session 710: A Practical Guide to the App Sandbox
WWDC 2013 Session 712: Energy Best Practices
These sessions are downloaded in SD because HD is broken:
WWDC 2011 Session 310: What's New in Instruments
WWDC 2011 Session 311: Masterinng Source Control in XCode
WWDC 2011 Session 320: Adopting Multitasking in Your App
WWDC 2012 Session 222: Introduction to Attributed Strings for iOS
WWDC 2012 Session 227: Using iCloud with Core Data
WWDC 2012 Session 305: What's New in iTunes Connect for App Developers
WWDC 2012 Session 406: Adopting Automatic Reference Counting
WWDC 2012 Session 501: Publishing with the iBookStore
WWDC 2012 Session 703: Core Bluetooth 101
WWDC 2012 Session 708: The Accelerate Framework
These sessions can be stream online, but has no download link provided:
WWDC 2019 Session    101: Keynote
WWDC 2019 TechTalk   609: Advanced Scene Understanding in AR
WWDC 2019 TechTalk   610: Get to know Reality Composer
WWDC 2020 Session    101: Keynote
WWDC 2020 Session  20022: Apple Design Awards
WWDC 2020 TechTalk 10865: What can you do on an Apple silicon Mac?
WWDC 2021 Session    101: Keynote
WWDC 2021 Session    111: Keynote (ASL)
WWDC 2022 Session    101: Keynote
WWDC 2022 Session    111: Keynote (ASL)
WWDC 2022 Session  10113: Explore EDR on iOS
WWDC 2022 Session  10114: Display EDR content with Core Image, Metal, and SwiftUI
Developer Insights   112: Using Subscriptions

Use the hls-only script to download the stream.

These sessions are presented during WWDC but was split into multiple videos:
WWDC 2019 Session 201: Accessibility Lessons
       -> Session 244: Visual Design and Accessibility
       -> Session 250: Making Apps More Accessible With Custom Actions
       -> Session 254: Writing Great Accessibility Labels
       -> Session 257: Accessibility Inspector
WWDC 2019 Session 242: Getting the Most out of Multitasking
       -> Session 258: Architecting Your App for Multiple Windows
       -> Session 259: Targeting Content with Multiple Windows
WWDC 2019 Session 504: What’s New in Authentication, Safari, and WebKit
       -> Session 515: What's New in Safari
       -> Session 516: What's New in Authentication
       -> Session 518: What's New for Web Developers
WWDC 2019 Session 711: Introducing Combine and Advances in Foundation
       -> Session 722: Introducing Combine 
       -> Session 723: Advances in Foundation
WWDC 2019 Session 801: What's New in iOS and macOS Design
       -> Session 808: What's New in iOS Design
       -> Session 809: Designing iPad Apps for Mac
WWDC 2019 Session 804: Designing and Building Great Shortcuts
       -> Session 805: Building Great Shortcuts
       -> Session 806: Designing Great Shortcuts
These sessions are no longer available:
WWDC 2011 Session 600: Keynote
WWDC 2012 Session 100: Keynote
WWDC 2016 Session 717: Beyond Dictation — Enhanced Voice-Control for macOS Apps
WWDC 2019 Session 101: Keynote

Archives

[VIDEO]
                                          1997        1999
2000  2001  2002  2003  2004              2007  2008  2009
            2012        2014  2015  2016
2020

[TRANSCRIPT]
ASCIIWWDC

[PDF]
huihoo's archives for 2010-2020

Note: Archives from Macintosh Repository requires paid account to download.

Changelog

October 17, 2023

  • README: Add url patterns info for 2011 ~ 2014.
See More

September 25, 2023

  • 2018: Add wwdc2018-hls.sh for stream-only 101, 102, 715, 803, 805.

September 17, 2023

  • 2017: Add link to 814, and wwdc2017-hls.sh for stream-only 101, 102.

September 12, 2023

  • 2008: Fix typo on session 936.

September 12, 2023

  • 2008: Update links to 339, 426, 911, 916, you can now downlaod the full video.
  • README: Add note for 2008.

September 4, 2023

  • 2009: Add links to session 200, 501, 610.
  • Update README
    • Add enternal link to 1997.
    • Add enternal link to PDFs archive (2010~2020).
    • Add note for 2009.
    • Cleaning up (still WIP).

August 8, 2023

July 20, 2023

  • New download links has been found for 2007 ~ 2012.
  • 2013 is still not available.
  • 2014+ is working as usual.

Jun 17, 2023

  • Add links to 2023.

Mar 18, 2023

October 21, 2022

  • Add links to 2001 ~ 2003, Bundled in DVD set. The ISO image can be downloaded from Internet Archive.

June 11, 2022

  • Add links for WWDC 2022. Four of them don't have download link provided:

      101: Keynote
      111: Keynote (ASL)
    10113: Explore EDR on iOS
    10114: Display EDR content with Core Image, Metal, and SwiftUI
    

May 27, 2022

  • Add videos of Mac track and IT track from 2008, expect iPhone track:

    Session 105: Publishing on the App Store
    Session 312: iPhone Application Development Fundamentals
    Session 313: Getting Started with Web Development for Safari on iPhone
    Session 324: iPhone for Mac Developers
    Session 337: Understanding iPhone View Controllers
    Session 343: Understanding iPhone Table Views
    Session 351: iPhone Application User Interface Design
    Session 352: Web Development for iPhone: Tips, Tricks, and Advanced Techniques
    Session 362: Controls, Views, and Animation on iPhone
    Session 379: Enhancing Your iPhone Web Application with CSS Transforms and Animations
    Session 380: iPhone Multi-Touch Events and Gestures
    Session 387: Text Input on iPhone
    Session 391: Building an Advanced iPhone Web Application, Hands On
    Session 410: Mastering iPhone View Controllers
    Session 402: Managing Secure Data on iPhone
    Session 432: Mastering iPhone Table Views
    Session 417: Optimizing Performance in iPhone Applications
    Session 446: How Do I Do That? Tips and Tricks for iPhone Application Development
    Session 456: The KPCB iFund
    Session 529: Address Book for iPhone
    Session 546: iPhone Device APIs: Location, Accelerometer and Camera
    Session 703: Introduction to Game Development for iPhone
    Session 706: Audio Development for iPhone
    Session 708: 3D Graphics for iPhone using OpenGL ES
    Session 901: Introduction to the iPhone Development Tools
    Session 921: Using Dashcode to Create and Debug iPhone Web Applications
    Session 925: Debugging and Profiling Your iPhone Application
    

    The path is not /wwdc_2008/adc_on_itunes__wwdc08_sessions__iphone_track__videos_2/.

May 26, 2022

https://devstreaming-cdn.apple.com/videos/tutorials/TestFlight_App_Store_Connect_2018/TestFlight_App_Store_Connect_2018_hd.mp4?dl=1
out=[App Store Connect] TestFlight.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Analytics_Overview_Pt2/Analytics_Overview_hd.mp4?dl=1
out=[App Store Connect] App Analytics Overview.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Analytics_Metrics_Pt2/Analytics_Metrics_hd.mp4?dl=1
out=[App Store Connect] App Analytics Metrics.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Analytics_Retention_Pt2/Analytics_Retention_hd.mp4?dl=1
out=[App Store Connect] App Analytics Retention.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/App_Store_Connect_Basics/App_Store_Connect_Basics_hd.mp4?dl=1
out=[App Store Connect] App Store Connect Basics.mp4
#!/bin/bash
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2015/1014o78qhj07pbfxt9g7/101/hls_vod_mvp.m3u8 --output "[2015] [Session 101] Keynote.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2015/1026npwuy2crj2xyuq11/102/hls_vod_mvp.m3u8 --output "[2015] [Session 102] Platforms State of the Union.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2015/112lwa56zromr4h6uf0/112/hls_vod_mvp.m3u8 --output "[2015] [Session 112] Think Audacious.mp4"
youtube-dl -f best --hls-prefer-native https://events-delivery.apple.com/3004qzusahnbjppuwydgjzsdyzsippar/m3u8/hls_vod_mvp.m3u8 --output "[2019] [Session 101] Keynote.mp4"
youtube-dl -f bestvideo+english_128-English_Audio --hls-prefer-native https://events-delivery.apple.com/2605bdtgclbnfypwzfkzdsupvcyzhhbx/m3u8/hls_vod_mvp.m3u8 --output "[2020] [Session 101] Keynote.mp4"
youtube-dl -f bestvideo+audio-stereo-aac-128-English --hls-prefer-native https://events-delivery.apple.com/1805asrvgvurxcrkewleraugwqathmvg/m3u8/vod_index-YVvsDudyWzBdgmtcMPabYTdjaWWmbLaA.m3u8 --output "[2021] [Session 101] Keynote.mp4"
youtube-dl -f bestvideo+audio-stereo-aac-128-English --hls-prefer-native https://events-delivery.apple.com/1805asrvgvurxcrkewleraugwqathmvg/m3u8/vod_asl_index-YjZLVmcchTTNTtDTLsRUgqHBaNmHAmNH.m3u8 --output "[2021] [Session 111] Keynote (ASL).mp4"
youtube-dl -f bestvideo+audio-stereo-aac-128-English --hls-prefer-native https://events-delivery.apple.com/0205eyyhwbbqexozkwmgccegwnjyrktg/m3u8/vod_index-dpyfrsVksFWjneFiptbXnAMYBtGYbXeZ.m3u8 --output "[2022] [Session 101] Keynote.mp4"
youtube-dl -f bestvideo+audio-stereo-aac-128-English --hls-prefer-native https://events-delivery.apple.com/0205eyyhwbbqexozkwmgccegwnjyrktg/m3u8/vod_asl_index-ktnaTcjUgzeMGMTaiatvJAZgtCVGqFUX.m3u8 --output "[2022] [Session 111] Keynote (ASL).mp4"
youtube-dl -f bestvideo+bestaudio https://events-delivery.apple.com/wwdc22/S6609-rUNWRhfHEGjdhBffWQLkyEHB/cmaf.m3u8 --output "[2022] [Session 10113] Explore EDR on iOS.mp4"
youtube-dl -f bestvideo+bestaudio https://events-delivery.apple.com/wwdc22/S6610-wbTYzbGrJjXGpwDYrMCraMxm/cmaf.m3u8 --output "[2022] [Session 10114] Display EDR content with Core Image, Metal, and SwiftUI.mp4"
https://devstreaming-cdn.apple.com/videos/app_store/Smule_Developer_Insight/Smule_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Releasing App Updates.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Evernote_Developer_Insight/Evernote_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Localizing Evernote for Japan.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Grailr_Developer_Insight/Grailr_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Bringing CARROT Weather to Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Seriously_Developer_Insight/Seriously_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Building a Brand on Social Media.mp4
https://devstreaming-cdn.apple.com/videos/app_store/3_Minute_Games_Developer_Insight/3_Minute_Games_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Using the Paid Business Model.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Houzz_Developer_Insight/Houzz_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Creating A Great Commerce Experience.mp4
https://devstreaming-cdn.apple.com/videos/app_store/WRKSHP_Developer_Insight/WRKSHP_Developer_Insight_hd.mp4?dl=1
out=[Developer Insight] Marketing a Game at Launch.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Building_a_Business_in_the_Kids_Category/Building_a_Business_in_the_Kids_Category_hd.mp4?dl=1
out=[Developer Insight] Building a Business in the Kids Category.mp4
https://devstreaming-cdn.apple.com/videos/app_store/Managing_a_Community/Managing_a_Community_hd.mp4?dl=1
out=[Developer Insight] Managing a Community.mp4
https://devstreaming-cdn.apple.com/videos/app_store/app-store-product-page/app-store-product-page_hd.mp4?dl=1
out=[Developer Insight] App Store Product Page.mp4
https://devstreaming-cdn.apple.com/videos/app_store/responding-to-reviews/responding-to-reviews_hd.mp4?dl=1
out=[Developer Insight] Responding to Reviews.mp4
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/coopet_effectiveapparch_p1_final_v2techtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Effective iPhone App Development, Part 1.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/coopet_effectiveapparch_p2_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Effective iPhone App Development, Part 2.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/malone_pushnotification_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Implementing Push Notification.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/malone_inapppurchase_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Adding In-App Purchase.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/murley_integratingweb_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Integrating Web Content into iPhone Apps.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/jurewitz_working_with_core_data_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Working with Core Data.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/schaffer_opengl_es_for_iphone_part_1_final_v1techtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Mastering OpenGL ES for iPhone, Part 1.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/schaffer_opengliphone_part2_final_v2techtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Mastering OpenGL ES for iPhone, Part 2.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_dev_resources__advanced_videos/jurewitz_maximizingappperformance_finaltechtalks09_final.m4v
out=[2009] [Tech Talk World Tour] Maximizing iPhone App Performance.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_tech_talk_world_tour/getting_started_with_safari_on_iphoneiphone_tech_talkadc_final__h.264_ipod_iphone_640x480.m4v
out=[2009] [Tech Talk World Tour] Getting Started with iPhone Web Applications.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_tech_talk_world_tour/using_advanced_web_technologies_on_iphoneiphone_tech_talkadc_final__h.264_ipod_iphone_640x480.m4v
out=[2009] [Tech Talk World Tour] Using Advanced Web Technologies on iPhone.m4v
https://download.developer.apple.com/iphone/adc_on_itunes__iphone_tech_talk_world_tour/inhouse_development_for_iphoneiphone_tech_talkadc_final__h.264_ipod_iphone_640x480.m4v
out=[2009] [Tech Talk World Tour] In-House Development for iPhone.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/iphone_and_ipad_user_interface_design.m4v
out=[2011] [Tech Talk China] iPhone and iPad User Interface Design.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/optimizing_app_performance_with_instruments.m4v
out=[2011] [Tech Talk China] Optimizing App Performance with Instruments.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/providing_context.m4v
out=[2011] [Tech Talk China] Providing Context.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/tuning_opengl_es_games.m4v
out=[2011] [Tech Talk China] Tuning OpenGL ES Games.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/understanding__ios_view_compositing.m4v
out=[2011] [Tech Talk China] Understanding iOS View Compositing.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/working_with_video_in_ios.m4v
out=[2011] [Tech Talk China] Working with Video in iOS.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/building_and_optimizing_websites_for_ios.m4v
out=[2011] [Tech Talk China] Building and Optimizing Websites for iOS.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/ingredients_of_great_apps.m4v
out=[2011] [Tech Talk China] Ingredients of Great Apps.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/in_app_purchase_and_notification_essentials.m4v
out=[2011] [Tech Talk China] In App Purchase and Notification Essentials.m4v
https://download.developer.apple.com/ios/adc_on_itunes__ios_china_tech_talks/game_center_essentials.m4v
out=[2011] [Tech Talk China] Game Center Essentials.m4v
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/adopting_icloud_storage__part_1.mov
out=[2012] [Tech Talk World Tour] Adopting iCloud Storage - Part 1.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/adopting_icloud_storage__part_2.mov
out=[2012] [Tech Talk World Tour] Adopting iCloud Storage - Part 2.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/adopting_inapp_purchase.mov
out=[2012] [Tech Talk World Tour] Adopting In-App Purchase in Your iOS App.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/all_about_airplay.mov
out=[2012] [Tech Talk World Tour] All About AirPlay.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/harnessing_open_gl_and_open_gl_es.mov
out=[2012] [Tech Talk World Tour] Harnessing OpenGL ES and GLKit.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/ingredients_of_great_apps.mov
out=[2012] [Tech Talk World Tour] Ingredients of Great Apps.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/designing_user_interfaces.mov
out=[2012] [Tech Talk World Tour] iPhone and iPad User Interface Design.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/maximizing_location_awareness.mov
out=[2012] [Tech Talk World Tour] Maximizing Location Awareness on iOS.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/modern_tools_and_techniques.mov
out=[2012] [Tech Talk World Tour] Modern Tools and Techniques for iOS App Development.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/modernizing_app_architecture.mov
out=[2012] [Tech Talk World Tour] Modernizing Your App Architecture with UIKit.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/newsstand.mov
out=[2012] [Tech Talk World Tour] Newsstand Apps from Start to Finish.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/automatic_reference_counting.mov
out=[2012] [Tech Talk World Tour] Taking Advantage of Automatic Reference Counting.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/turnbased_gaming.mov
out=[2012] [Tech Talk World Tour] Turn-Based Gaming with Game Center.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/av_foundation.mov
out=[2012] [Tech Talk World Tour] Understanding AV Foundation.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/using_core_image_on_ios.mov
out=[2012] [Tech Talk World Tour] Using Core Image on iOS.mov
https://download.developer.apple.com/ios/ios_5_tech_talk_world_tou/ios_app_performance.mov
out=[2012] [Tech Talk World Tour] Your iOS App Performance Hitlist.mov
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/201qy4t11tjpm/building_apps_for_iphone_x/building_apps_for_iphone_x_sd.mp4
out=[2017] [Tech Talk 201] Building Apps for iPhone X.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/202uhvrcg65c7/updating_your_app_for_apple_tv_4k/updating_your_app_for_apple_tv_4k_hd.mp4
out=[2017] [Tech Talk 202] Updating Your App for Apple TV 4K.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/203fq5xdc4lg5/updating_for_apple_watch_series_3/updating_for_apple_watch_series_3_hd.mp4
out=[2017] [Tech Talk 203] Updating for Apple Watch Series 3.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/204a83a4lxlz1/ios_storage_best_practices/ios_storage_best_practices_hd.mp4
out=[2017] [Tech Talk 204] iOS Storage Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/ensuring_beautiful_rich_links/ensuring_beautiful_rich_links_hd.mp4
out=[2017] [Tech Talk 205] Ensuring Beautiful Rich Links.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/qr_code_recognition_in_ios_11/qr_code_recognition_in_ios_11_hd.mp4
out=[2017] [Tech Talk 206] QR Code Recognition on iOS 11.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/207naklypn7hewo9/building_apps_for_iphone_xs_iphone_xs_max_and_iphone_xr/building_apps_for_iphone_xs_iphone_xs_max_and_iphone_xr_hd.mp4
out=[2018] [Tech Talk 207] Building Apps for iPhone XS, iPhone XS Max, and iPhone XR.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/208ktg0b9qmeyaik/developing_complications_for_apple_watch_series_4/developing_complications_for_apple_watch_series_4_hd.mp4
out=[2018] [Tech Talk 208] Developing Complications for Apple Watch Series 4.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20181030/209vnatfwjud/Brining_your_apps_to_iPadPro/Brining_your_apps_to_iPadPro_hd.mp4
out=[2018] [Tech Talk 209] Bringing Your Apps to the New iPad Pro.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20190910/201gkmn78ytrxz/whats_new_in_sharing/whats_new_in_sharing_hd.mp4
out=[2019] [Tech Talk 210] What's New in Sharing.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20190910/301fgloga45ths/introducing_extensible_enterprise_sso/introducing_extensible_enterprise_sso_hd.mp4
out=[2019] [Tech Talk 301] Introducing Extensible Enterprise SSO.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/web_inspector_walkthrough/web_inspector_walkthrough_hd.mp4
out=[2017] [Tech Talk 401] Web Inspector Walkthrough.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/using_web_inspector_with_tvos_apps/using_web_inspector_with_tvos_apps_hd.mp4
out=[2017] [Tech Talk 402] Using Web Inspector with tvOS Apps.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/501n21xhva8lv/authoring_4k_and_hdr_hls_streams/authoring_4k_and_hdr_hls_streams_hd.mp4
out=[2017] [Tech Talk 501] Authoring 4K and HDR HLS Streams.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/502bbcn7dmn9r/an_introduction_to_hdr_video/an_introduction_to_hdr_video_hd.mp4
out=[2017] [Tech Talk 502] An Introduction to HDR Video.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Introduction_to_AVDisplayManager/Introduction_to_AVDisplayManager_hd.mp4
out=[2017] [Tech Talk 503] Introduction to AVDisplayManager.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/Apple_TV_Set_Top_Box_Authentication_Overview_AD/Apple_TV_Set_Top_Box_Authentication_Overview_AD/Apple_TV_Set_Top_Box_Authentication_Overview_AD_hd.mp4
out=[2019] [Tech Talk 504] Apple TV Distribution Program Overview.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/Apple_TV_Authentication_Context_AD/Apple_TV_Authentication_Context_AD/Apple_TV_Authentication_Context_AD_hd.mp4
out=[2019] [Tech Talk 505] Apple TV Authentication Context.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/Apple_TV_Set_Top_Box_APIs_AD/Apple_TV_Set_Top_Box_APIs_AD/Apple_TV_Set_Top_Box_APIs_AD_hd.mp4
out=[2019] [Tech Talk 506] Apple TV Set Top Box APIs.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/Apple_TV_VSA_Framework_AD/Apple_TV_VSA_Framework_AD/Apple_TV_VSA_Framework_AD_hd.mp4
out=[2019] [Tech Talk 507] Apple TV VSA Framework.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/apple_tv_app_universal_search_part_01/apple_tv_app_universal_search_part_01/apple_tv_app_universal_search_part_01_hd.mp4
out=[2019] [Tech Talk 508] Apple TV App and Universal Search Video Integration - Part 1.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/Apple_TV_Provider/apple_tv_app_universal_search_part_02/apple_tv_app_universal_search_part_02/apple_tv_app_universal_search_part_02_hd.mp4
out=[2019] [Tech Talk 509] Apple TV App and Universal Search Video Integration - Part 2.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/601eevz5w5fwv/face_tracking_with_arkit/face_tracking_with_arkit_hd.mp4
out=[2017] [Tech Talk 601] Face Tracking with ARKit.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/602x28bbwk8lp/metal_on_iphone_x_overview/metal_on_iphone_x_overview_hd.mp4
out=[2017] [Tech Talk 602] Metal 2 on A11 - Overview.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/603lp0b4npn5r/metal_threadgroup_image_blocks/metal_threadgroup_image_blocks_hd.mp4
out=[2017] [Tech Talk 603] Metal 2 on A11 - Imageblocks.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/604c7y7cq00ft/metal_tile_shaders/metal_tile_shaders_hd.mp4
out=[2017] [Tech Talk 604] Metal 2 on A11 - Tile Shading.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/605nglqckpcsi/metal_raster_order_groups/metal_raster_order_groups_hd.mp4
out=[2017] [Tech Talk 605] Metal 2 on A11 - Raster Order Groups.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/606fmwrx1qx3x/metal_imageblock_sample_coverage_control/metal_imageblock_sample_coverage_control_hd.mp4
out=[2017] [Tech Talk 606] Metal 2 on A11 - Imageblock Sample Coverage Control.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20190910/608hjakbtjbxcvt53sft/metal_enhancements_for_a13_bionic/metal_enhancements_for_a13_bionic_hd.mp4
out=[2019] [Tech Talk 608] Metal Enhancements for A13 Bionic.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/702jaaopvi9pptas/whats_new_in_core_nfc/whats_new_in_core_nfc_hd.mp4
out=[2018] [Tech Talk 702] What's New in Core NFC.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/703j00nzmafjd72j/gdpr_and_cloudkit/gdpr_and_cloudkit_hd.mp4
out=[2018] [Tech Talk 703] GDPR & CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20170912/801xy9x7h32rn/designing_for_iphone_x/designing_for_iphone_x_hd.mp4
out=[2017] [Tech Talk 801] Designing for iPhone X.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/802xfgu0ylbq0q0w/designing_for_apple_watch_series_4/designing_for_apple_watch_series_4_hd.mp4
out=[2018] [Tech Talk 802] Designing for Apple Watch Series 4.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20180912/803b0tqqpfjflrad/designing_for_subscription_success/designing_for_subscription_success_hd.mp4
out=[2018] [Tech Talk 803] Designing for Subscription Success.mp4
https://devstreaming-cdn.apple.com/videos/tutorials/20181030/804dgbsjyr/Designing_For_iPad_Pro/Designing_For_iPad_Pro_ad_hd.mp4
out=[2018] [Tech Talk 804] Designing for iPad Pro and Apple Pencil.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10001/2/A748AC55-864E-48CF-B172-6E89420DB959/downloads/tech-talks-10001_hd.mp4
out=[2020] [Tech Talk 10001] Explore Live GPU Profiling with Metal Counters.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10067/3/F8DADC3E-4CC2-4165-AD4A-5B6A2DBFCF29/downloads/tech-talks-10067_hd.mp4
out=[2022] [Tech Talk 10067] Bring desktop class sync to iOS with FileProvider.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10023/1/E38B1207-85C1-480D-9EA5-CA79797E842A/downloads/tech-talks-10023_hd.mp4
out=[2020] [Tech Talk 10023] Support Apple Pro Display XDR in your apps.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10100/7/53BB7B01-5F85-4F5C-93F9-3DABEAB7585C/downloads/tech-talks-10100_hd.mp4
out=[2021] [Tech Talk 10110] Explore and manipulate data in Swift with TabularData.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10154/1/98B3FF7B-F39A-43C3-BF80-D8C112A8B393/downloads/tech-talks-10154_hd.mp4
out=[2020] [Tech Talk 10154] Convert PyTorch models to Core ML.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10155/1/E4357EE9-AB03-470C-ADF1-500E3177195C/downloads/tech-talks-10155_hd.mp4
out=[2020] [Tech Talk 10155] Improve Object Detection models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10168/3/561D9E4F-CCD2-44D2-A224-DB2F1A2AE40D/downloads/tech-talks-10168_hd.mp4
out=[2023] [Tech Talk 10168] Migrate custom intents to App Intents.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10580/3/8702685B-149D-4D98-B6E6-D2FFC774C89E/downloads/tech-talks-10580_hd.mp4
out=[2021] [Tech Talk 10580] Metal Compute on MacBook Pro.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10696/1/E0DCEE93-5697-4594-B8F3-2708B3F002D7/downloads/tech-talks-10696_hd.mp4
out=[2020] [Tech Talk 10696] Uniform Type Identifiers — a reintroduction.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10854/1/55EB61AC-6A57-452A-924C-75AA0D8B0201/downloads/tech-talks-10854_hd.mp4
out=[2020] [Tech Talk 10854] Integrate SiriKit Media Intents with HomePod.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10855/1/DC8ED133-3146-44E6-9B01-9C7636EEB0E4/downloads/tech-talks-10855_hd.mp4
out=[2020] [Tech Talk 10855] Explore UI animation hitches and the render loop.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10856/1/A64686FE-E409-4607-AB1F-E7EFEC009FC5/downloads/tech-talks-10856_hd.mp4
out=[2020] [Tech Talk 10856] Find and fix hitches in the commit phase.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10857/1/B9C4775A-FD59-4AF0-921B-EE8E177A04B7/downloads/tech-talks-10857_hd.mp4
out=[2020] [Tech Talk 10857] Demystify and eliminate hitches in the render phase.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10858/1/08391F14-3E73-4C91-B07F-3123FA9AFAA2/downloads/tech-talks-10858_hd.mp4
out=[2020] [Tech Talk 10858] Discover Metal enhancements for A14 Bionic.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10859/1/F858CDD5-1DB7-47B3-A1F0-F54700EEC0CB/downloads/tech-talks-10859_hd.mp4
out=[2020] [Tech Talk 10859] Tailor your Metal apps for Apple M1.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10868/1/22D70E07-EE48-40B6-9DAA-B20EAC4CA313/downloads/tech-talks-10868_hd.mp4
out=[2020] [Tech Talk 10868] Subscription offer codes.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10869/1/AE22D76E-F1AB-41C2-922A-D998FEA85B4D/downloads/tech-talks-10869_hd.mp4
out=[2020] [Tech Talk 10869] Family Sharing for in-app purchases.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10870/2/F78B8959-C69D-43DD-9AC1-DD5F66949287/downloads/tech-talks-10870_hd.mp4
out=[2020] [Tech Talk 10870] Deploy macOS Big Sur in your organization.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10876/1/AA860DF0-F06F-4438-95FB-603DACCABAC8/downloads/tech-talks-10876_hd.mp4
out=[2021] [Tech Talk 10876] Discover advances in Metal for A15 Bionic.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10884/5/8CE65AF6-A55C-479D-B91B-7A94D31B38EC/downloads/tech-talks-10884_hd.mp4
out=[2021] [Tech Talk 10884] Meet Apple Watch Series 7.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10885/4/FA5F7B46-267F-49EB-BE6B-1770E94196CA/downloads/tech-talks-10885_hd.mp4
out=[2021] [Tech Talk 10885] Tips for preventing common review issues.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10886/6/0FB2672D-4638-4A03-B40D-E957C81168CC/downloads/tech-talks-10886_hd.mp4
out=[2022] [Tech Talk 10886] Get started with custom product pages.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10888/4/75B3FC7F-CB21-4CED-B75E-5FB0A7A9ACCE/downloads/tech-talks-10888_hd.mp4
out=[2022] [Tech Talk 10888] Get started with product page optimization.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10889/5/F98D7942-DFEE-4E09-AB3D-1104622824C7/downloads/tech-talks-10889_hd.mp4
out=[2021] [Tech Talk 10889] Get started with in-app events.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10890/6/1D04B875-38C0-439A-A718-76103DCBE9FC/downloads/tech-talks-10890_hd.mp4
out=[2022] [Tech Talk 10890] Deploy iOS 15 in your organization.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10891/7/92B43BCF-DB0F-47D8-AA6D-3F801281C398/downloads/tech-talks-10891_hd.mp4
out=[2022] [Tech Talk 10891] Prepare your organization for macOS Monterey.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10892/6/CC048276-FA06-4E73-8C89-3131F8FB8694/downloads/tech-talks-10892_hd.mp4
out=[2022] [Tech Talk 10892] Explore unlisted app distribution.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10874/3/E774EFC4-2BA1-475F-A66D-CACB5A60FDCE/downloads/tech-talks-10874_hd.mp4
out=[2021] [Tech Talk 10874] Get the most out of CloudKit Sharing.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/10887/4/EB88AACE-281A-4A82-99A8-A333E927A842/downloads/tech-talks-10887_hd.mp4
out=[2021] [Tech Talk 10887] Support customers with StoreKit 2 and App Store Server API.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110147/5/85495F5D-BC41-496B-8CD3-89B94981C257/downloads/tech-talks-110147_hd.mp4
out=[2021] [Tech Talk 110147] Tune CPU job scheduling for Apple silicon games.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110148/6/DDB099AA-9A47-4612-AB55-027F2CFF68E8/downloads/tech-talks-110148_hd.mp4
out=[2022] [Tech Talk 110148] Build and deploy Safari Extensions for iOS.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110150/5/53004602-8AEC-4285-B8C9-400EC4F44035/downloads/tech-talks-110150_hd.mp4
out=[2022] [Tech Talk 110150] Get started with custom offer codes.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110151/6/907C7E8B-AA67-4E81-9D4E-2CB8634652B9/downloads/tech-talks-110151_hd.mp4
out=[2022] [Tech Talk 110151] Optimize subscriptions for success - acquisition.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110152/3/E551B6C8-0C14-4CB1-91A9-366D505E4CB3/downloads/tech-talks-110152_hd.mp4
out=[2022] [Tech Talk 110152] Write clear purpose strings.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110336/5/09F28C6C-5EAC-4617-BBE5-D7493276AF00/downloads/tech-talks-110336_hd.mp4
out=[2023] [Tech Talk 110336] Implement Apple Pay and order management.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110337/2/0FD767C0-1D85-4BB8-A55D-8EAE74DB1F22/downloads/tech-talks-110337_hd.mp4
out=[2022] [Tech Talk 110337] Discover Reference Mode.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110338/3/C80FD2D3-3EB4-4404-B02B-1446DC628503/downloads/tech-talks-110338_hd.mp4
out=[2023] [Tech Talk 110338] Add SharePlay to your multiplayer game with Game Center.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110339/3/7902B10F-CB7D-43C4-A7E2-7AA461381C21/downloads/tech-talks-110339_hd.mp4
out=[2023] [Tech Talk 110339] Discover Metal Performance HUD.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110343/6/658F020E-F5F9-47B3-A67E-6EB7BBF329FE/downloads/tech-talks-110343_hd.mp4
out=[2022] [Tech Talk 110343] Get started with TestFlight.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110345/4/C7832583-3700-4355-B6DB-AD56E0F5E2F9/downloads/tech-talks-110345_hd.mp4
out=[2022] [Tech Talk 110345] Explore Family Sharing for in-app purchases.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110347/3/B47B1C93-B1DC-4555-B40E-B26E64BF7689/downloads/tech-talks-110347_hd.mp4
out=[2022] [Tech Talk 110347] Get started with in-app events.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110349/3/CB7912B8-3835-407B-A8D9-E687355995B1/downloads/tech-talks-110349_hd.mp4
out=[2023] [Tech Talk 110349] Make the most of product page optimization.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110350/5/45A161E7-FA35-4C69-9BBE-218984917589/downloads/tech-talks-110350_hd.mp4
out=[2022] [Tech Talk 110350] Manage auto-renewable subscription pricing in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110352/4/EF2E23A4-4662-4C5F-928A-C6F7FDD478C1/downloads/tech-talks-110352_hd.mp4
out=[2022] [Tech Talk 110352] Do more with less data.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110353/3/97DDB596-8118-4331-901D-C5569A4C792B/downloads/tech-talks-110353_hd.mp4
out=[2022] [Tech Talk 110353] Meet high-performance MapKit JS.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110356/4/851F380E-20CD-44AB-87DE-C55C21D52880/downloads/tech-talks-110356_hd.mp4
out=[2023] [Tech Talk 110356] What's new for enterprise developers.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110358/4/CC450C4C-0984-4A4F-87A7-34A8586C0732/downloads/tech-talks-110358_hd.mp4
out=[2023] [Tech Talk 110358] Get started with app discovery and marketing.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110361/4/61AEADD8-C731-4D89-A9B4-EA220BF80A46/downloads/tech-talks-110361_hd.mp4
out=[2023] [Tech Talk 110361] Make the most of custom product pages.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110364/5/69A1B6A9-370C-413E-9A19-24B09E2FEB52/downloads/tech-talks-110364_hd.mp4
out=[2023] [Tech Talk 110364] Explore App Store pricing upgrades.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110365/5/23BB2EF0-5DC3-4DAD-A017-F26A4EBD44E3/downloads/tech-talks-110365_hd.mp4
out=[2023] [Tech Talk 110365] Measure and improve acquisition with App Analytics.mp4
https://devstreaming-cdn.apple.com/videos/tech-talks/110366/5/B6285F1D-AD99-4EE8-956B-FD3C46604F1C/downloads/tech-talks-110366_hd.mp4
out=[2023] [Tech Talk 110366] Use Game Center to boost discovery and engagement.mp4
http://devstreaming-cdn.apple.com/videos/techtalks/2013/22_Advances_in_OpenGL_ES_3_0/Advances_in_OpenGL_ES_3_0-hd.mov
out=[2013] [Tech Talk 22] Advances in OpenGL ES 3.0.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/18_Hidden_iOS_7_Development_Gems/Hidden_iOS_7_Development_Gems-hd.mov
out=[2013] [Tech Talk 18] Hidden iOS 7 Development Gems.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/21_Game_Developer_Day_Kickoff/Game_Developer_Day_Kickoff-hd.mov
out=[2013] [Tech Talk 21] Game Developer Day Kickoff.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/23_Architecting_Modern_iOS_Games/Architecting_Modern_iOS_Games-hd.mov
out=[2013] [Tech Talk 23] Architecting Modern iOS Games.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/24_App_Store_Distribution_and_Marketing/App_Store_Distribution_and_Marketing_for_Games-hd.mov
out=[2013] [Tech Talk 24] App Store Distribution and Marketing for Games.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/25_Developing_2D_Games_with_Sprite_Kit/Developing_2D_Games_with_Sprite_Kit-hd.mov
out=[2013] [Tech Talk 25] Developing 2D Games with Sprite Kit.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/26_Integrating_iOS_7_System_Technologies/Integrating_iOS_7_System_Technologies-hd.mov
out=[2013] [Tech Talk 26] Integrating iOS 7 System Technologies.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/27_Integrating_iOS_7_Game_Technologies/Integrating_iOS_7_Game_Technologies-hd.mov
out=[2013] [Tech Talk 27] Integrating iOS 7 Game Technologies.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/28_User_Interface_Design_for_iOS_7_Games/User_Interface_Design_for_iOS_7_Games-hd.mov
out=[2013] [Tech Talk 28] User Interface Design for iOS 7 Games.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/11_App_Developer_Day_Kickoff/App_Developer_Day_Kickoff-hd.mov
out=[2013] [Tech Talk 11] App Developer Day Kickoff.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/12_User_Interface_Design_for_iOS_7_Apps/User_Interface_Design_for_iOS_7_Apps-hd.mov
out=[2013] [Tech Talk 12] User Interface Design for iOS 7 Apps.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/13_Architecting_Modern_Apps_Part_1/Architecting_Modern_Apps_Part_1-hd.mov
out=[2013] [Tech Talk 13] Architecting Modern Apps, Part 1.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/14_App_Store_Distribution_and_Marketing/App_Store_Distribution_and_Marketing-hd.mov
out=[2013] [Tech Talk 14] App Store Distribution and Marketing for Apps.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/15_Architecting_Modern_Apps_Part_2/Architecting_Modern_Apps_Part_2-hd.mov
out=[2013] [Tech Talk 15] Architecting Modern Apps, Part 2.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/16_Integrating_iOS_7_Technologies/Integrating_iOS_7_Technologies-hd.mov
out=[2013] [Tech Talk 16] Integrating iOS 7 Technologies.mov
http://devstreaming-cdn.apple.com/videos/techtalks/2013/17_Security_and_Privacy_in_iOS_7/Security_and_Privacy_in_iOS_7-hd.mov
out=[2013] [Tech Talk 17] Security and Privacy in iOS 7.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__mac_os_x_essentials/105_cc.mov
out=[2007] [Session 105] Optimizing Your Core Data Application.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__mac_os_x_essentials/126_cc.mov
out=[2007] [Session 126] Introduction to the FSEvents Framework.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__mac_os_x_essentials/140_cc.mov
out=[2007] [Session 140] Developing Cocoa Applications with Python and Ruby.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__mac_os_x_essentials/141_cc.mov
out=[2007] [Session 141] Boosting Responsiveness and Performance in Your Cocoa Application.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__mac_os_x_essentials/161_cc.mov
out=[2007] [Session 161] Making Your Custom Controls, Icons, and Artwork Resolution Independent.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/202_cc.mov
out=[2007] [Session 202] Broadcast Your Application's Content with iChat Theater.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/203_cc.mov
out=[2007] [Session 203] Coding Smarter with Objective-C 2.0.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/207_cc.mov
out=[2007] [Session 207] Integrating iCal Events and Tasks into Your Application.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/210_cc.mov
out=[2007] [Session 210] Building Animated Cocoa User Interfaces.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/211_cc.mov
out=[2007] [Session 211] Adding Core Animation to Your Application.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/213_cc.mov
out=[2007] [Session 213] Getting Started with Spotlight and Quick Look.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/216_cc.mov
out=[2007] [Session 216] Time Machine In-Depth.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/221_cc.mov
out=[2007] [Session 221] Handling Images with the Image Kit.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__leopard_innovations/223_cc.mov
out=[2007] [Session 223] Adopting 64-bit Programming.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__developer_tools/312_cc.mov
out=[2007] [Session 312] Refactoring in Xcode - Automatic Project-wide Code Changes.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__developer_tools/314_cc.mov
out=[2007] [Session 314] Project-Free Xcode - Mixed Language Development.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__developer_tools/318_cc_1.mov
out=[2007] [Session 318] Using Xray and DTrace for In-depth Analysis.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__graphics_and_imaging/408_cc.mov
out=[2007] [Session 408] Modernizing Your OpenGL Application for Leopard.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__graphics_and_imaging/415.mov
out=[2007] [Session 415] Mastering the Quartz Composer Editor.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__graphics_and_imaging/418_cc.mov
out=[2007] [Session 418] Leveraging the OpenGL Shading Language (GLSL).mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__graphics_and_imaging/424_cc.mov
out=[2007] [Session 424] Create Stunning Effects with Core Image.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__information_technologies/505_cc.mov
out=[2007] [Session 505] Discovering Wiki and Group Services in Leopard Server.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__information_technologies/529_cc_1.mov
out=[2007] [Session 529] Introducing Podcast Producer.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__information_technologies/531_cc.mov
out=[2007] [Session 531] Deploying Podcast Producer.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/602_cc.mov
out=[2007] [Session 602] The Encoding Process In Depth.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/606_cc.mov
out=[2007] [Session 606] Motion Graphics Design Using Quartz Composer.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/607_cc.mov
out=[2007] [Session 607] Development Methods for WebKit AJAX Applications.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/608_cc.mov
out=[2007] [Session 608] Vector Graphics for WebKit.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/616_cc.mov
out=[2007] [Session 616] Designing and Developing Hybrid-Web or Cocoa Applications.mov
https://download.developer.apple.com/wwdc_2004/adc_on_itunes__leopard_sessions_from_wwdc07__content_and_media/619_cc.mov
out=[2007] [Session 619] Designing and Developing Rich Media WebKit-based Applications.mov
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/100.m4v
out=[2008] [Session 100] Introduction to Mac and iPhone Development.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/101.m4v
out=[2008] [Session 101] Getting Started with Mac OS X Administration.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/102.m4v
out=[2008] [Session 102] Integrating Your Organization's First Macs.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/300.m4v
out=[2008] [Session 300] Mac OS X State of the Union.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/314.m4v
out=[2008] [Session 314] Java and WebObjects Overview.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/325.m4v
out=[2008] [Session 325] Safari and WebKit Overview: Features, Enhancements, and Open Source Development.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/326.m4v
out=[2008] [Session 326] Application Accessibility.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/327.m4v
out=[2008] [Session 327] Building Great Java Applications on Mac OS X Leopard.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/328.m4v
out=[2008] [Session 328] Networking with Bonjour.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/338.m4v
out=[2008] [Session 338] Mac OS X 64-bit Kernel - Architecture and Kernel Extension Transition.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/339.m4v
out=[2008] [Session 339] Getting Started with Objective-C - Migrating from Other Languages.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/340.m4v
out=[2008] [Session 340] Creating Secure Applications for iPhone and Mac OS X.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/344.m4v
out=[2008] [Session 344] Adding Rich Graphics and Media to Web Content in Safari.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/345.m4v
out=[2008] [Session 345] Managing Certificates for iPhone and Mac OS X.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/348.m4v
out=[2008] [Session 348] Cocoa Fundamentals.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/349.m4v
out=[2008] [Session 349] Creating Rich User Interfaces for Web Content in Safari.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/353.m4v
out=[2008] [Session 353] What's New in Objective-C.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/363.m4v
out=[2008] [Session 363] What's New in Cocoa.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/364.m4v
out=[2008] [Session 364] Font Management and Core Text.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/374.m4v
out=[2008] [Session 374] Internationalizing Your Software.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/375.m4v
out=[2008] [Session 375] Using Filesystem APIs Efficiently.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/381.m4v
out=[2008] [Session 381] Core Data Tips and Tricks.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/382.m4v
out=[2008] [Session 382] Simplifying Multicore with Grand Central Dispatch.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/392.m4v
out=[2008] [Session 392] Cocoa Tips and Tricks - Using Leopard Features Effectively.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/393.m4v
out=[2008] [Session 393] Managing User Privileges and Operations with Authorization Services.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/401.m4v
out=[2008] [Session 401] Leveraging Cocoa's Layer-Backed Views.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/403.m4v
out=[2008] [Session 403] Using Advanced AJAX Technologies in Safari.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/411.m4v
out=[2008] [Session 411] Utilizing Offline Data in Safari.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/412.m4v
out=[2008] [Session 412] Cocoa Performance Techniques.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/413.m4v
out=[2008] [Session 413] Assigning Your Application an Identity with Code Signing.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/418.m4v
out=[2008] [Session 418] Debugging Websites Using Safari's Integrated Developer Tools.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/419.m4v
out=[2008] [Session 419] Polishing Your Cocoa Application.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/420.m4v
out=[2008] [Session 420] Using Garbage Collection with Objective-C.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/421.m4v
out=[2008] [Session 421] Introduction to Kerberos.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/425.m4v
out=[2008] [Session 425] Performance in Document-Centric Cocoa Applications.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/426.m4v
out=[2008] [Session 426] Creating Ruby on Rails Applications for Safari on iPhone and the Desktop.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/427.m4v
out=[2008] [Session 427] Managing X509 Certificates and Digital Identities.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/433.m4v
out=[2008] [Session 433] Building Native Look-and-Feel Web Applications Using SproutCore.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/434.m4v
out=[2008] [Session 434] Getting Started with the IO Kit - Device Drivers on Mac OS X.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/435.m4v
out=[2008] [Session 435] Configuring the Apple AirPort Interface.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/447.m4v
out=[2008] [Session 447] Maximizing Platform Compatibility of IO Kit Drivers.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/453.m4v
out=[2008] [Session 453] Using Vectorization Techniques to Maximize Performance.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/454.m4v
out=[2008] [Session 454] Improving Responsiveness in Websites and Web Applications.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/455.m4v
out=[2008] [Session 455] Kernel Extension Management.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/500.m4v
out=[2008] [Session 500] Mac OS X Server State of the Union.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/501.m4v
out=[2008] [Session 501] Integrating iPhone with IT.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/504.m4v
out=[2008] [Session 504] Deploying Network and Portable Home Directories.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/505.m4v
out=[2008] [Session 505] Integrating iTunes U into Your Workflows and Infrastructure.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/511.m4v
out=[2008] [Session 511] Enterprise iPhone Management with Configuration Profiles.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/512.m4v
out=[2008] [Session 512] Deploying the Mac in a Highly Secure Environment.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/513.m4v
out=[2008] [Session 513] System-Wide Previews with Quick Look.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/514.m4v
out=[2008] [Session 514] What's New for Podcast Producer.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/515.m4v
out=[2008] [Session 515] Best Practices for Tiger to Leopard Server Migration.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/516.m4v
out=[2008] [Session 516] Sync Services - A Complete Tour.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/517.m4v
out=[2008] [Session 517] Managing Clients and Preferences with Mac OS X and Leopard Server.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/520.m4v
out=[2008] [Session 520] Deploying and Scaling iCal Server Calendaring Services.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/523.m4v
out=[2008] [Session 523] Keeping Users Connected with the Instant Message Framework.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/525.m4v
out=[2008] [Session 525] Cocoa Development Using Scripting.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/526.m4v
out=[2008] [Session 526] Latent Semantic Mapping.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/527.m4v
out=[2008] [Session 527] Sharing Live Content Through iChat Theater.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/533.m4v
out=[2008] [Session 533] Customizing and Extending Leopard Server Wiki Server.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/534.m4v
out=[2008] [Session 534] Spotlight - Search and Be Searched.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/535.m4v
out=[2008] [Session 535] Podcast Producer In-Depth.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/539.m4v
out=[2008] [Session 539] Making Your Application Scriptable.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/540.m4v
out=[2008] [Session 540] Deploying Podcast Producer.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/541.m4v
out=[2008] [Session 541] Scripting for System Administrators.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/543.m4v
out=[2008] [Session 543] Deploying Final Cut Server.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/547.m4v
out=[2008] [Session 547] Building and Leveraging Automator Actions.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/549.m4v
out=[2008] [Session 549] Extending and Troubleshooting Directory Services.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/550.m4v
out=[2008] [Session 550] Integrating with Final Cut Server.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/551.m4v
out=[2008] [Session 551] Providing User Assistance with Apple Help.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/552.m4v
out=[2008] [Session 552] Unleashing Leopard Server Performance.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/556.m4v
out=[2008] [Session 556] Accessing Contacts and Calendars on Leopard.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/557.m4v
out=[2008] [Session 557] Infrastructure and Deployment Techniques for Large-Scale On-Demand Content Delivery with the Mac.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/558.m4v
out=[2008] [Session 558] Best Practices in Mac OS X Administration Panel.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/700.m4v
out=[2008] [Session 700] Graphics & Media State of the Union.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/701.m4v
out=[2008] [Session 701] Handling PDF Content in Your Application.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/702.m4v
out=[2008] [Session 702] Getting Started with OpenGL on the Mac.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/704.m4v
out=[2008] [Session 704] Understanding the Core Audio Architecture.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/707.m4v
out=[2008] [Session 707] Mastering the Mac Graphics Architecture.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/709.m4v
out=[2008] [Session 709] High-Performance Image Processing with Core Image.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/710.m4v
out=[2008] [Session 710] Integrating Media into Your Application with QTKit.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/711.m4v
out=[2008] [Session 711] 2D Graphics & Animation for iPhone and Mac.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/712.m4v
out=[2008] [Session 712] Advanced Media Application Development.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/716.m4v
out=[2008] [Session 716] Core Animation Techniques for iPhone and Mac.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/719.m4v
out=[2008] [Session 719] Advances in Modern OpenGL.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/722.m4v
out=[2008] [Session 722] Preparing and Delivering Video for iPhone, Safari, and Apple TV.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/723.m4v
out=[2008] [Session 723] Tuning OpenGL Applications for the Mac.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/724.m4v
out=[2008] [Session 724] Introducing OpenCL.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/725.m4v
out=[2008] [Session 725] Application Printing in Mac OS X.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/727.m4v
out=[2008] [Session 727] Advanced OpenCL.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/731.m4v
out=[2008] [Session 731] Integrating and Extending Quartz Composer.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/735.m4v
out=[2008] [Session 735] Image Capture, Manipulation, and Display with Image Kit.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/736.m4v
out=[2008] [Session 736] Extending and Integrating Post-Production Applications with Final Cut Pro.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/737.m4v
out=[2008] [Session 737] FxPlug Development for Motion and Final Cut Pro.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/739.m4v
out=[2008] [Session 739] Extending Aperture with Image Editing Plug-Ins.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/900.m4v
out=[2008] [Session 900] Developer Tools State of the Union.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/902.m4v
out=[2008] [Session 902] Using WebObjects to Build Powerful Web Applications.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/903.m4v
out=[2008] [Session 903] Introducing Address Book Server.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/906.m4v
out=[2008] [Session 906] Xcode for Visual Studio and Eclipse Developers.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/907.m4v
out=[2008] [Session 907] New Compiler Technology and Future Directions.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/908.m4v
out=[2008] [Session 908] Managing Mac OS X with Netboot, Managed Preferences and Apple Remote Desktop.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/910.m4v
out=[2008] [Session 910] Designing Applications with Interface Builder.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/911.m4v
out=[2008] [Session 911] Advanced Performance Profiling Techniques with Shark.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/915.m4v
out=[2008] [Session 915] Using Xcode: Source Editor, Refactoring, Debugger, and SCM.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos/916.m4v
out=[2008] [Session 916] Getting Started with Instruments.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/917.m4v
out=[2008] [Session 917] What's New in Core Data.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/919.m4v
out=[2008] [Session 919] Understanding the Xcode Project Management and Build System.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__it_track__videos_2/920.m4v
out=[2008] [Session 920] Best Practices for Large-Scale Xsan 2 Deployments.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/922.m4v
out=[2008] [Session 922] Creating Efficient Data Models with Core Data.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/923.m4v
out=[2008] [Session 923] Mastering Interface Builder.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/930.m4v
out=[2008] [Session 930] Using DTrace on Mac OS X.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/932.m4v
out=[2008] [Session 932] Performance Tuning Your Application with Shark.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/933.m4v
out=[2008] [Session 933] LLVM Compilers In Depth.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/935.m4v
out=[2008] [Session 935] Advanced Performance Analysis with Instruments & DTrace.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/936.m4v
out=[2008] [Session 936] Intel's Multi-Core Software Vision.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/938.m4v
out=[2008] [Session 938] Creating Widgets with Dashcode.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/939.m4v
out=[2008] [Session 939] Performance Optimization Techniques using Intel Libraries.m4v
https://download.developer.apple.com/wwdc_2008/adc_on_itunes__wwdc08_sessions__mac_track__videos_2/940.m4v
out=[2008] [Session 940] Mastering Advanced Objective-C Features.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/100__iphone_user_interface_design.m4v
out=[2009] [Session 100] iPhone User Interface Design.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/102__mastering_iphone_scroll_views.m4v
out=[2009] [Session 102] Mastering iPhone Scroll Views.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/103__processing_multitouch_events_on_iphone.m4v
out=[2009] [Session 103] Processing Multi-Touch Events on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/104__whats_new_in_cocoa_touch.m4v
out=[2009] [Session 104] What's New in Cocoa Touch.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/105__cut_copy_and_paste_on_iphone.m4v
out=[2009] [Session 105] Cut, Copy, and Paste on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/106__building_localized_mac_and_iphone_applications.m4v
out=[2009] [Session 106] Building Localized Mac and iPhone Applications.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/107__iphone_os_networking.m4v
out=[2009] [Session 107] iPhone OS Networking.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/108__concurrent_programming_in_cocoa.m4v
out=[2009] [Session 108] Concurrent Programming in Cocoa.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/109__pasteboards_services_and_interoperability_on_mac.m4v
out=[2009] [Session 109] Pasteboards, Services, and Interoperability on Mac.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/110__presenting_user_data_with_table_views_and_browsers.m4v
out=[2009] [Session 110] Presenting User Data with Table Views and Browsers.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/111__nsimage_in_snow_leopard.m4v
out=[2009] [Session 111] NSImage in Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/112__text_processing_in_cocoa.m4v
out=[2009] [Session 112] Text Processing in Cocoa.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/113__mac_programming_for_iphone_developers.m4v
out=[2009] [Session 113] Mac Programming for iPhone Developers.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/114__whats_new_in_core_data.m4v
out=[2009] [Session 114] What's New in Core Data.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/115__whats_new_in_cocoa.m4v
out=[2009] [Session 115] What's New in Cocoa.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/116__cocoa_tips_and_tricks.m4v
out=[2009] [Session 116] Cocoa Tips and Tricks.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/117__user_events_in_cocoa.m4v
out=[2009] [Session 117] User Events in Cocoa.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/118__embedding_maps_in_iphone_applications.m4v
out=[2009] [Session 118] Embedding Maps in iPhone Applications.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/119__finding_your_place_with_core_location.m4v
out=[2009] [Session 119] Finding Your Place with Core Location.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/120__apple_push_notification_service.m4v
out=[2009] [Session 120] Apple Push Notification Service.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/121__iphone_accessibility__make_your_app_compatible_with_voiceover.m4v
out=[2009] [Session 121] iPhone accessibility - Make your app compatible with VoiceOver.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/122__inapp_purchase_on_iphone.m4v
out=[2009] [Session 122] In-App Purchase on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/123__iphone_view_controller_techniques.m4v
out=[2009] [Session 123] iPhone View Controller Techniques.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/124__displaying_web_content_in_iphone_applications.m4v
out=[2009] [Session 124] Displaying Web Content in iPhone Applications.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/125__effective_iphone_app_architecture.m4v
out=[2009] [Session 125] Effective iPhone App Architecture.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/126__enabling_your_mac_applications_for_assistive_technologies.m4v
out=[2009] [Session 126] Enabling Your Mac Applications for Assistive Technologies.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/127__advanced_accessibility_best_practices_and_new_apis_in_snow_leopard.m4v
out=[2009] [Session 127] Advanced Accessibility - Best Practices and New APIs in Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/128__prototyping_iphone_user_interfaces.m4v
out=[2009] [Session 128] Prototyping iPhone User Interfaces.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/129__texttospeech_adventures_with_alex.m4v
out=[2009] [Session 129] Text-to-Speech - Adventures with Alex.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/131__scaling_performance_using_grand_central_dispatch_and_intel_libraries.m4v
out=[2009] [Session 131] Scaling Performance Using Grand Central Dispatch & Intel Libraries.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/132__iphone_views_and_animations.m4v
out=[2009] [Session 132] iPhone Views and Animations.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/200__leveraging_web_content_in_mac_os_x_applications_with_webkit.m4v
out=[2009] [Session 200] Leveraging Web Content in Mac OS X Applications with WebKit.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_201__safari_and_webkit_overview.m4v
out=[2009] [Session 201] Safari and WebKit Overview.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_202__adding_innovative_styling_and_animation_to_webpages_with_css_effects.m4v
out=[2009] [Session 202] Adding Innovative Styling and Animation to Webpages with CSS Effects.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_203__local_data_storage_and_offline_web_applications_in_safari.m4v
out=[2009] [Session 203] Local Data Storage and Offline Web Applications for Safari.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_204__building_compatible_websites_using_emerging_web_technologies.m4v
out=[2009] [Session 204] Building Compatible Websites Using Emerging Web Technologies.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_206__iphone_web_applications_from_start_to_finish.m4v
out=[2009] [Session 206] iPhone Web Applications from Start to Finish.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_207__rapid_development_with_safaris_integrated_developer_tools.m4v
out=[2009] [Session 207] Rapid Development with Safari's Integrated Developer Tools.m4v
https://download.developer.apple.com/Safari/adc_on_itunes__sdc/session_208__creating_safari_web_applications_in_dashcode.m4v
out=[2009] [Session 208] Creating Safari Web Applications in Dashcode.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/209__improving_accessibility_in_web_applications.m4v
out=[2009] [Session 209] Improving Accessibility in Web Applications.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/300__graphics_and_media_state_of_the_union.m4v
out=[2009] [Session 300] Graphics and Media State of the Union.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/301__color_management_for_snow_leopard.m4v
out=[2009] [Session 301] Color Management for Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/302__getting_started_with_graphics_for_iphone.m4v
out=[2009] [Session 302] Getting Started with Graphics for iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/303__core_animation_techniques_for_iphone_and_mac.m4v
out=[2009] [Session 303] Core Animation Techniques for iPhone and Mac.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/304__game_development_for_iphone_part_1.m4v
out=[2009] [Session 304] Game Development for iPhone, Part 1.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/305__game_development_for_iphone_part_2.m4v
out=[2009] [Session 305] Game Development for iPhone, Part 2.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/306__quartz_composer_advances_in_snow_leopard.m4v
out=[2009] [Session 306] Quartz Composer Advances in Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/307__introduction_to_opencl.m4v
out=[2009] [Session 307] Introduction to OpenCL.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/308__harnessing_the_power_of_opencl.m4v
out=[2009] [Session 308] Harnessing the Power of OpenCL.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/309__mastering_opencl.m4v
out=[2009] [Session 309] Mastering OpenCL.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/310__opengl_techniques_for_snow_leopard.m4v
out=[2009] [Session 310] OpenGL Techniques for Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/311__opengl_es_overview_for_iphone_os.m4v
out=[2009] [Session 311] OpenGL ES Overview for iPhone OS.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/312__opengl_es_tuning_and_techniques.m4v
out=[2009] [Session 312] OpenGL ES Tuning & Techniques.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/313__http_live_streaming_introduction.m4v
out=[2009] [Session 313] HTTP Live Streaming Introduction.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/314__transitioning_to_quicktime_x.m4v
out=[2009] [Session 314] Transitioning to QuickTime X.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/315__audio_development_for_iphone_os.m4v
out=[2009] [Session 315] Audio Development for iPhone OS.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/316__audio_processing_and_playback.m4v
out=[2009] [Session 316] Audio Processing and Playback.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/317__accessing_the_ipod_library.m4v
out=[2009] [Session 317] Accessing the iPod Library.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/318__peer_to_peer_networking_with_game_kit.m4v
out=[2009] [Session 318] Peer to Peer Networking with Game Kit.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/319__opengl_es_shading_and_rendering.m4v
out=[2009] [Session 319] OpenGL ES Shading & Rendering.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/320__image_processing_and_effects_with_core_image.m4v
out=[2009] [Session 320] Image Processing and Effects with Core Image.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/400__developer_tools_state_of_the_union.m4v
out=[2009] [Session 400] Developer Tools State of the Union.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/401__improving_your_application_with_the_xcode_static_analyzer.m4v
out=[2009] [Session 401] Improving Your Application with the Xcode Static Analyzer.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/402__compiler_overview.m4v
out=[2009] [Session 402] Compiler Overview.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/403__applescript_and_cocoa_bridge.m4v
out=[2009] [Session 403] AppleScript and Cocoa Bridge.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/404__using_automator_and_services_to_integrate_with_mac_os_x.m4v
out=[2009] [Session 404] Using Automator and Services to Integrate with Mac OS X.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/405__java_se_6_on_snow_leopard.m4v
out=[2009] [Session 405] Java SE 6 on Snow Leopard.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/406__programming_with_blocks_and_grand_central_dispatch.m4v
out=[2009] [Session 406] Programming with Blocks and Grand Central Dispatch.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/407__migrating_your_application_to_grand_central_dispatch.m4v
out=[2009] [Session 407] Migrating Your Application to Grand Central Dispatch.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/408__understanding_grand_central_dispatch_in_depth.m4v
out=[2009] [Session 408] Understanding Grand Central Dispatch in Depth.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/409__getting_started_with_interface_builder.m4v
out=[2009] [Session 409] Getting Started with Interface Builder.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/410__iphone_application_design_using_interface_builder.m4v
out=[2009] [Session 410] iPhone Application Design Using Interface Builder.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/411__whats_new_in_instruments.m4v
out=[2009] [Session 411] What's New in Instruments.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/412__advanced_debugging_and_performance_analysis.m4v
out=[2009] [Session 412] Advanced Debugging and Performance Analysis.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/413__performance_tuning_with_shark_on_mac_and_iphone.m4v
out=[2009] [Session 413] Performance Tuning with Shark on Mac and iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/414__iphone_performance_optimization_with_instruments.m4v
out=[2009] [Session 414] iPhone Performance Optimization with Instruments.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/415__optimizing_performance_on_iphone.m4v
out=[2009] [Session 415] Optimizing Performance on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/416__understanding_memory_management_on_iphone.m4v
out=[2009] [Session 416] Understanding Memory Management on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/417__managing_the_iphone_development_process.m4v
out=[2009] [Session 417] Managing the iPhone Development Process.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/418__customizing_xcode_for_your_development_workflow.m4v
out=[2009] [Session 418] Customizing Xcode for Your Development Workflow.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/419__objectivec_and_garbage_collection_advancements.m4v
out=[2009] [Session 419] Objective-C and Garbage Collection Advancements.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/420__introduction_to_objectivec.m4v
out=[2009] [Session 420] Introduction to Objective-C.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/421__introduction_to_core_data_on_iphone.m4v
out=[2009] [Session 421] Introduction to Core Data on iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/422__state_of_the_art_cocoa_application_design.m4v
out=[2009] [Session 422] State of the Art Cocoa - Application Design.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/423__introduction_to_iphone_development_tools.m4v
out=[2009] [Session 423] Introduction to iPhone Development Tools.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/424__introduction_to_cocoa_and_cocoa_touch_development_with_xcode.m4v
out=[2009] [Session 424] Introduction to Cocoa and Cocoa Touch Development with Xcode.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/425__designing_your_cocoa_application_for_concurrency.m4v
out=[2009] [Session 425] Designing Your Cocoa Application for Concurrency.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/426__state_of_the_art_cocoa_user_interface_design.m4v
out=[2009] [Session 426] State of the Art Cocoa - User Interface Design.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/501__managing_kernel_extensions.m4v
out=[2009] [Session 501] Managing Kernel Extensions.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/502__creating_io_kit_drivers_for_multiple_architectures_and_os_versions.m4v
out=[2009] [Session 502] Creating IO Kit Drivers for Multiple Architectures and OS Versions.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/503__creating_secure_iphone_and_mac_os_x_applications.m4v
out=[2009] [Session 503] Creating Secure iPhone and Mac OS X Applications.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/504__assigning_your_application_an_identity_with_code_signing.m4v
out=[2009] [Session 504] Assigning Your Application an Identity with Code Signing.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/505__managing_user_privileges_and_operations_with_authorization_services.m4v
out=[2009] [Session 505] Managing User Privileges and Operations with Authorization Services.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/506__designing_usb_audio_class_devices_for_mac_os_x.m4v
out=[2009] [Session 506] Designing USB Audio Class Devices for Mac OS X.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/507__creating_iphone_apps_that_communicate_with_accessories.m4v
out=[2009] [Session 507] Creating iPhone Apps that Communicate with Accessories.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/508__zero_configuration_networking_using_bonjour.m4v
out=[2009] [Session 508] Zero Configuration Networking Using Bonjour.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/610__mac_os_x_server_state_of_the_union.m4v
out=[2009] [Session 600] Mac OS X Server State of the Union.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/601__integrating_iphone_into_the_enterprise.m4v
out=[2009] [Session 601] Integrating iPhone into the Enterprise.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/602__iphone_configuration_creation_and_deployment.m4v
out=[2009] [Session 602] iPhone Configuration Creation and Deployment.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/603__inhouse_app_development_for_iphone.m4v
out=[2009] [Session 603] In-House App Development for iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/605__contact_management_with_snow_leopard_server_snow_leopard_and_iphone.m4v
out=[2009] [Session 605] Contact Management with Snow Leopard Server, Snow Leopard, and iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/606__adding_authentication_authorization_and_access_controls_with_the_open_directory_framework.m4v
out=[2009] [Session 606] Adding Authentication, Authorization, and Access Controls with the Open Directory Framework.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/607__using_services_in_snow_leopard_for_scripting_it_tasks.m4v
out=[2009] [Session 607] Using Services in Snow Leopard for Scripting IT Tasks.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/608__snow_leopard_server_setup_under_the_hood.m4v
out=[2009] [Session 608] Snow Leopard Server Setup - Under the Hood.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/609__podcast_composer_indepth.m4v
out=[2009] [Session 609] Podcast Composer In-Depth.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/611__whats_new_for_wiki_server_2.m4v
out=[2009] [Session 611] What's New for Wiki Server 2.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/612__calendaring_solutions_in_snow_leopard_server_snow_leopard_and_iphone.m4v
out=[2009] [Session 612] Calendaring Solutions in Snow Leopard Server, Snow Leopard, and iPhone.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/613__whats_new_for_podcast_producer_2.m4v
out=[2009] [Session 613] What's New for Podcast Producer 2.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/614__whats_new_in_directory_services.m4v
out=[2009] [Session 614] What's New in Directory Services.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/615__system_image_creation_and_deployment_with_snow_leopard_server.m4v
out=[2009] [Session 615] System Image Creation and Deployment with Snow Leopard Server.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/616__system_management_with_apple_remote_desktop.m4v
out=[2009] [Session 616] System Management with Apple Remote Desktop.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/617__deploying_mobile_access_server.m4v
out=[2009] [Session 617] Deploying Mobile Access Server.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/618__scripting_for_sys_admins.m4v
out=[2009] [Session 618] Scripting for Sys Admins.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/620__performance_tuning_for_mac_os_x_server.m4v
out=[2009] [Session 620] Performance Tuning for Mac OS X Server.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/621__deploying_podcast_producer.m4v
out=[2009] [Session 621] Deploying Podcast Producer.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/622__moving_to_snow_leopard_server.m4v
out=[2009] [Session 622] Moving to Snow Leopard Server.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/623__the_technologies_that_empower_podcast_producer.m4v
out=[2009] [Session 623] The Technologies that Empower Podcast Producer.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__mac_track__video/624__xsan_configuration_optimization_and_integration_best_practices.m4v
out=[2009] [Session 624] Xsan Configuration, Optimization, and Integration Best Practices.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/625__iphone_security_best_practices.m4v
out=[2009] [Session 625] iPhone Security Best Practices.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/700__wwdc_sessions_kickoff.m4v
out=[2009] [Session 700] WWDC Sessions Kickoff.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/701__core_os_state_of_the_union.m4v
out=[2009] [Session 701] Core OS State of the Union.m4v
https://download.developer.apple.com/wwdc_2009/adc_on_itunes__wwdc09_sessions__iphone_track__video/702__publishing_on_the_app_store.m4v
out=[2009] [Session 702] Publishing on the App Store.m4v
https://download.developer.apple.com/videos/wwdc_2010__hd/apple_wwdc_2010_keynote_address.mov
out=[2010] [Session 010] Keynote.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_100__usable_by_everybody__design_principles_for_accessibility_on_mac_os_x.mov
out=[2010] [Session 100] Usable by Everybody - Design Principles for Accessibility on Mac OS X.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_101__whats_new_in_cocoa_touch.mov
out=[2010] [Session 101] What's New in Cocoa Touch.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_102__whats_new_in_foundation_for_ios_4_1.mov
out=[2010] [Session 102] What's New in Foundation for iOS 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_103__ipad_and_iphone_user_interface_design.mov
out=[2010] [Session 103] iPad and iPhone User Interface Design.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_104__designing_apps_with_scroll_views.mov
out=[2010] [Session 104] Designing Apps with Scroll Views.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_105__adopting_multitasking_on_iphone_os_part_1.mov
out=[2010] [Session 105] Adopting Multitasking on iPhone OS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_106__understanding_document_interaction_controller.mov
out=[2010] [Session 106] Understanding Document Interaction Controller.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_107__cocoa_tips_and_tricks.mov
out=[2010] [Session 107] Cocoa Tips and Tricks.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_108__managing_mobile_devices.mov
out=[2010] [Session 108] Managing Mobile Devices.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_109__adopting_multitasking_on_iphone_os_part_2.mov
out=[2010] [Session 109] Adopting Multitasking on iPhone OS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_110__advanced_text_handling_for_iphone_os.mov
out=[2010] [Session 110] Advanced Text Handling for iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_111__ipad_development_overview.mov
out=[2010] [Session 111] iPad Development Overview.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_112__integrating_ads_with_iad.mov
out=[2010] [Session 112] Integrating Ads with iAd.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_113__working_effectively_with_objectivec_on_iphone_os.mov
out=[2010] [Session 113] Working Effectively with Objective-C on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_114__advanced_cocoa_text_tips_and_tricks.mov
out=[2010] [Session 114] Advanced Cocoa Text Tips and Tricks.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_115__using_core_location_in_ios_4.mov
out=[2010] [Session 115] Using Core Location in iOS 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_116__modelviewcontroller_for_iphone_os_1.mov
out=[2010] [Session 116] Model-View-Controller for iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_117__building_a_serverdriven_user_experience.mov
out=[2010] [Session 117] Building a Server-driven User Experience.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_118__mastering_core_data.mov
out=[2010] [Session 118] Mastering Core Data.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_119__accessing_shared_contact_information.mov
out=[2010] [Session 119] Accessing Shared Contact Information.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_120__simplifying_touch_event_handling_with_gesture_recognizers.mov
out=[2010] [Session 120] Simplifying Touch Event Handling with Gesture Recognizers.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_121__advanced_gesture_recognition.mov
out=[2010] [Session 121] Advanced Gesture Recognition.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_122__accessibility_on_iphone_os.mov
out=[2010] [Session 122] Accessibility on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_123__building_animation_driven_interfaces.mov
out=[2010] [Session 123] Building Animation Driven Interfaces.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_124__understanding_foundation.mov
out=[2010] [Session 124] Understanding Foundation.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_125__internationalizing_data_on_mac_and_iphone.mov
out=[2010] [Session 125] Internationalizing Data on Mac and iPhone.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_127__customizing_maps_with_overlays.mov
out=[2010] [Session 127] Customizing Maps with Overlays.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_128__mastering_table_views.mov
out=[2010] [Session 128] Mastering Table Views.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_129__implementing_local_and_push_notifications.mov
out=[2010] [Session 129] Implementing Local and Push Notifications.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_130__future_proofing_your_application.mov
out=[2010] [Session 130] Future Proofing your Application.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_131__performance_optimization_on_iphone_os.mov
out=[2010] [Session 131] Performance Optimization on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_133__using_itunes_and_app_store_affiliate_tools_and_technologies.mov
out=[2010] [Session 133] Using iTunes and App Store Affiliate Tools and Technologies.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_134__optimize_your_iphone_app_for_the_retina_display.mov
out=[2010] [Session 134] Optimize your iPhone App for the Retina Display.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_135__advanced_performance_optimization_on_iphone_os_part_1.mov
out=[2010] [Session 135] Advanced Performance Optimization on iPhone OS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_136__calendar_integration_with_event_kit.mov
out=[2010] [Session 136] Calendar Integration with Event Kit.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_137__optimizing_core_data_performance_on_iphone_os.mov
out=[2010] [Session 137] Optimizing Core Data Performance on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_138__api_design_for_cocoa_and_cocoa_touch.mov
out=[2010] [Session 138] API Design for Cocoa and Cocoa Touch.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_141__crafting_custom_cocoa_views.mov
out=[2010] [Session 141] Crafting Custom Cocoa Views.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_144__advanced_objectivec_and_garbage_collection_techniques.mov
out=[2010] [Session 144] Advanced Objective-C and Garbage Collection Techniques.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_145__key_event_handling_in_cocoa_applications.mov
out=[2010] [Session 145] Key Event Handling in Cocoa Applications.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_147__advanced_performance_optimization_on_iphone_os_part_2.mov
out=[2010] [Session 147] Advanced Performance Optimization on iPhone OS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_200__core_os_networking.mov
out=[2010] [Session 200] Core OS Networking.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_201__developing_applications_that_work_with_iphone_os_accessories.mov
out=[2010] [Session 201] Developing Applications that work with iPhone OS Accessories.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_202__the_accelerate_framework_for_iphone_os.mov
out=[2010] [Session 202] The Accelerate framework for iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_203__i_o_kit_device_drivers_for_mac_os_x.mov
out=[2010] [Session 203] IO Kit Device Drivers for Mac OS X.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_204__creating_secure_applications.mov
out=[2010] [Session 204] Creating Secure Applications.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_205__simplifying_networking_using_bonjour.mov
out=[2010] [Session 205] Simplifying Networking Using Bonjour.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_206__introducing_blocks_and_grand_central_dispatch_on_iphone.mov
out=[2010] [Session 206] Introducing Blocks and Grand Central Dispatch on iPhone.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_207__network_apps_for_iphone_os_part_1.mov
out=[2010] [Session 207] Network Apps for iPhone OS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_208__network_apps_for_iphone_os_part_2.mov
out=[2010] [Session 208] Network Apps for iPhone OS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_209__securing_application_data.mov
out=[2010] [Session 209] Securing Application Data.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_210__launchondemand.mov
out=[2010] [Session 210] Launch-on-Demand.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_211__simplifying_iphone_app_development_with_grand_central_dispatch.mov
out=[2010] [Session 211] Simplifying iPhone App Development with Grand Central Dispatch.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_300__developer_tools_state_of_the_union.mov
out=[2010] [Session 300] Developer Tools State of the Union.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_301__mastering_xcode_for_iphone_os_development_part_1.mov
out=[2010] [Session 301] Mastering Xcode for iPhone OS Development, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_302__automating_the_creation_of_ipad_content.mov
out=[2010] [Session 302] Automating the Creation of iPad Content.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_303__mastering_xcode_for_iphone_os_development_part_2.mov
out=[2010] [Session 303] Mastering Xcode for iPhone OS Development, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_304__whats_new_in_instruments.mov
out=[2010] [Session 304] What's New in Instruments.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_305__designing_apps_with_interface_builder.mov
out=[2010] [Session 305] Designing Apps with Interface Builder.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_306__automating_user_interface_testing_with_instruments.mov
out=[2010] [Session 306] Automating User Interface Testing with Instruments.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_307__introducing_xcode_4.mov
out=[2010] [Session 307] Introducing Xcode 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_308__developing_your_app_with_xcode_4.mov
out=[2010] [Session 308] Developing Your App with Xcode 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_309__advanced_performance_analysis_with_instruments.mov
out=[2010] [Session 309] Advanced Performance Analysis with Instruments.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_310__app_publishing_with_itunes_connect.mov
out=[2010] [Session 310] App Publishing with iTunes Connect.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_311__advanced_memory_analysis_with_instruments.mov
out=[2010] [Session 311] Advanced Memory Analysis with Instruments.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_312__whats_new_in_the_llvm_compiler.mov
out=[2010] [Session 312] What's New in the LLVM Compiler.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_313__llvm_technologies_in_depth.mov
out=[2010] [Session 313] LLVM Technologies in Depth.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_314__building_and_distributing_your_app_with_xcode_4.mov
out=[2010] [Session 314] Building and Distributing Your App with Xcode 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_315__using_interface_builder_in_xcode_4.mov
out=[2010] [Session 315] Using Interface Builder in Xcode 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_316__debugging_with_xcode_4_and_lldb.mov
out=[2010] [Session 316] Debugging with Xcode 4 and LLDB.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_317__understanding_crash_reports_on_iphone_os.mov
out=[2010] [Session 317] Understanding Crash Reports on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_400__graphics_and_media_state_of_the_union.mov
out=[2010] [Session 400] Graphics and Media State of the Union.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_401__game_design_and_development_for_iphone_os_part_1.mov
out=[2010] [Session 401] Game Design and Development for iPhone OS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_402__game_design_and_development_for_iphone_os_part_2.mov
out=[2010] [Session 402] Game Design and Development for iPhone OS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_403__advances_in_http_live_streaming.mov
out=[2010] [Session 403] Advances in HTTP Live Streaming.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_404__introduction_to_game_center.mov
out=[2010] [Session 404] Introduction to Game Center.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_405__discovering_av_foundation.mov
out=[2010] [Session 405] Discovering AV Foundation.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_407__editing_media_with_av_foundation.mov
out=[2010] [Session 407] Editing Media with AV Foundation.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_408__game_center_techniques_part_1.mov
out=[2010] [Session 408] Game Center Techniques, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_409__using_the_camera_with_av_foundation.mov
out=[2010] [Session 409] Using the Camera with AV Foundation.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_410__game_center_techniques_part_2.mov
out=[2010] [Session 410] Game Center Techniques, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_411__fundamentals_of_digital_audio_for_mac_os_x_and_iphone_os.mov
out=[2010] [Session 411] Fundamentals of Digital Audio for Mac OS X and iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_412__audio_development_for_iphone_os_part_1.mov
out=[2010] [Session 412] Audio Development for iPhone OS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_413__audio_development_for_iphone_os_part_2.mov
out=[2010] [Session 413] Audio Development for iPhone OS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_414__opengl_essential_design_practices.mov
out=[2010] [Session 414] OpenGL Essential Design Practices.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_415__opengl_es_overview_for_iphone_os.mov
out=[2010] [Session 415] OpenGL ES Overview for iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_416__harnessing_opencl_in_your_application.mov
out=[2010] [Session 416] Harnessing OpenCL in Your Application.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_417__opengl_es_shading_and_advanced_rendering.mov
out=[2010] [Session 417] OpenGL ES Shading and Advanced Rendering.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_418__maximizing_opencl_performance.mov
out=[2010] [Session 418] Maximizing OpenCL Performance.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_419__opengl_es_tuning_and_optimization.mov
out=[2010] [Session 419] OpenGL ES Tuning and Optimization.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_420__opengl_for_mac_os_x.mov
out=[2010] [Session 420] OpenGL for Mac OS X.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_421__incorporating_the_camera_and_photo_library_in_your_app.mov
out=[2010] [Session 421] Incorporating the Camera and Photo Library in your App.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_422__taking_advantage_of_multiple_gpus.mov
out=[2010] [Session 422] Taking Advantage of Multiple GPUs.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_423__sensing_device_motion_in_ios_4.mov
out=[2010] [Session 423] Sensing Device Motion in iOS 4.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_424__core_animation_in_practice_part_1.mov
out=[2010] [Session 424] Core Animation in Practice, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_425__core_animation_in_practice_part_2.mov
out=[2010] [Session 425] Core Animation in Practice, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_426__core_image_effects_and_optimization.mov
out=[2010] [Session 426] Core Image Effects and Optimization.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_500__safari_internet_and_web_state_of_the_union.mov
out=[2010] [Session 500] Safari, Internet and Web State of the Union.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_501__delivering_audio_and_video_using_web_standards_part_1.mov
out=[2010] [Session 501] Delivering Audio and Video Using Web Standards, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_502__delivering_audio_and_video_using_web_standards_part_2.mov
out=[2010] [Session 502] Delivering Audio and Video Using Web Standards, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_503__css_effects_part_1__ui_elements_and_navigation.mov
out=[2010] [Session 503] CSS Effects, Part 1 - UI Elements and Navigation.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_504__css_effects_part_2__galleries_and_3d_effects.mov
out=[2010] [Session 504] CSS Effects, Part 2 - Galleries and 3D Effects.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_505__creating_extensions_for_safari_part_1.mov
out=[2010] [Session 505] Creating Extensions for Safari, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_506__creating_extensions_for_safari_part_2.mov
out=[2010] [Session 506] Creating Extensions for Safari, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_507__getting_the_most_out_of_safari_integrated_developer_tools.mov
out=[2010] [Session 507] Getting the Most Out of Safari Integrated Developer Tools.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_508__adding_touch_and_gesture_detection_to_web_pages_on_iphone_os.mov
out=[2010] [Session 508] Adding Touch and Gesture Detection to Web Pages on iPhone OS.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_509__creating_info_graphics_with_standard_web_technologies.mov
out=[2010] [Session 509] Creating Info Graphics with Standard Web Technologies.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_510__creating_content_with_iad_js_part_1.mov
out=[2010] [Session 510] Creating Content With iAd JS, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_511__creating_content_with_iad_js_part_2.mov
out=[2010] [Session 511] Creating Content With iAd JS, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2010__hd/session_512__using_html5_offline_storage.mov
out=[2010] [Session 512] Using HTML5 Offline Storage.mov
https://download.developer.apple.com/videos/wwdc_2011__hd/apple_platforms_kickoff.m4v
out=[2011] [Session 601] Apple Platforms Kickoff.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_100__whats_new_in_cocoa_touch.m4v
out=[2011] [Session 100] What's New in Cocoa Touch.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_101__whats_new_in_cocoa.m4v
out=[2011] [Session 101] What's New in Cocoa.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_102__implementing_uiviewcontroller_containment.m4v
out=[2011] [Session 102] Implementing UIViewController Containment.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_103__cocoa_autolayout.m4v
out=[2011] [Session 103] Cocoa Autolayout.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_104__advanced_scroll_view_techniques.m4v
out=[2011] [Session 104] Advanced ScrollView Techniques.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_105__polishing_your_app.m4v
out=[2011] [Session 105] Polishing your App - Tips and Tricks to Improve Responsiveness and Performance.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_106__systemwide_previews_on_osx_and_ios.m4v
out=[2011] [Session 106] System-wide Previews on OSX and iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_107__autosave_and_versions_in_mac_os_x_10.7_lion.m4v
out=[2011] [Session 107] Auto Save and Versions in Mac OS X 10.7 Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_108__ios_printing_system.m4v
out=[2011] [Session 108] iOS Printing System.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_109__taking_advantage_of_file_coordination.m4v
out=[2011] [Session 109] Taking Advantage of File Coordination.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_110__designing_user_interfaces_for_ios_and_mac_os_x_apps.m4v
out=[2011] [Session 110] Designing User Interfaces for iOS and Mac OS X Apps.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_111__visualizing_information_geographically_with_mapkit.m4v
out=[2011] [Session 111] Visualizing Information Geographically with MapKit.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_112__writing_easytochange_code.m4v
out=[2011] [Session 112] Writing Easy-To-Change Code - Your Second-Most Important Goal As A Developer.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_113__full_screen_and_aqua_changes.m4v
out=[2011] [Session 113] Full Screen and Aqua Changes.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_114__customizing_the_appearance_of_uikit_controls.m4v
out=[2011] [Session 114] Customizing the Appearance of UIKit Controls.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_115__scrolling_swiping_dragging.m4v
out=[2011] [Session 115] Scrolling, Swiping, Dragging - Now with more animation!.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_116__storing_documents_in_icloud_using_ios_5.m4v
out=[2011] [Session 116] Storing Documents in iCloud using iOS 5.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_117__performing_calendar_calculations.m4v
out=[2011] [Session 117] Performing Calendar Calculations.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_118__making_the_most_of_multitouch_on_ios.m4v
out=[2011] [Session 118] Making the Most of Multi-Touch on iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_119__resume_and_automatic_termination.m4v
out=[2011] [Session 119] Resume and Automatic Termination in Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_120__view_based_nstableview.m4v
out=[2011] [Session 120] View Based NSTableView Basic to Advanced.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_121__understanding_uikit_rendering.m4v
out=[2011] [Session 121] Understanding UIKit Rendering.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_122__ios_accessibility.m4v
out=[2011] [Session 122] iOS Accessibility.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_123__improving_the_stability_of_your_apps.m4v
out=[2011] [Session 123] Improving the Stability of Your Apps.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_124__twitter_integration.m4v
out=[2011] [Session 124] Twitter Integration.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_125__uitableview_changes_tips_tricks.m4v
out=[2011] [Session 125] UITableView Changes, Tips .m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_127__design_patterns_to_simplify_mac_accessibility.m4v
out=[2011] [Session 127] Design Patterns to Simplify Mac Accessibility.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_128__advanced_text_processing.m4v
out=[2011] [Session 128] Advanced Text Processing.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_129__practical_drawing_for_ios_developers.m4v
out=[2011] [Session 129] Practical Drawing for iOS Developers.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_131__getting_your_apps_ready_for_china_and_hot_markets.m4v
out=[2011] [Session 131] Getting Your Apps Ready for China and other Hot New Markets.m4v
https://download.developer.apple.com/videos/wwdc_2011__sd/session_133__lionsized_automation.m4v
out=[2011] [Session 133] Lion-Sized Automation.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_136__latent_semantic_mapping.m4v
out=[2011] [Session 136] Latent Semantic Mapping - Exposing the Meaning behind Words and Documents.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_200__core_os_networking.m4v
out=[2011] [Session 200] Core OS Networking, Key Principles.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_201__working_with_ios_accessories.m4v
out=[2011] [Session 201] Working with iOS Accessories.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_202__security_overview.m4v
out=[2011] [Session 202] Security Overview.m4v
https://download.developer.apple.com/videos/wwdc_2011__sd/session_203__introducing_app_sandbox.m4v
out=[2011] [Session 203] Introducing App Sandbox.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_204__app_sandbox_and_the_mac_app_store.m4v
out=[2011] [Session 204] App Sandbox and the Mac App Store.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_205__core_os_networking_indepth.m4v
out=[2011] [Session 205] Core OS Networking In-Depth.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_206__introducing_xpc.m4v
out=[2011] [Session 206] Introducing XPC.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_207__userlevel_device_access.m4v
out=[2011] [Session 207] Userland Device Access.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_208__securing_ios_applications.m4v
out=[2011] [Session 208] Securing Application Data.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_209__inside_the_accelerate_framework_for_ios.m4v
out=[2011] [Session 209] Inside the Accelerate Framework for iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_210__mastering_grand_central_dispatch.m4v
out=[2011] [Session 210] Mastering Grand Central Dispatch.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_211__bonjour_network_discovery_and_connectivity.m4v
out=[2011] [Session 211] Bonjour Network Discovery and Connectivity.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_212__nextgeneration_cryptographic_services.m4v
out=[2011] [Session 212] Next Generation Cryptographic Services.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_300__developer_tools_kickoff.m4v
out=[2011] [Session 300] Developer Tools Kickoff.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_302__using_interface_builder_in_xcode_4.m4v
out=[2011] [Session 302] Using Interface Builder in Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_303__whats_new_in_core_data_on_ios.m4v
out=[2011] [Session 303] What's New in Core Data on iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_306__maximizing_productivity_in_xcode_4.m4v
out=[2011] [Session 306] Maximizing Productivity in Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_307__moving_to_the_apple_llvm_compiler.m4v
out=[2011] [Session 307] Moving to Apple LLVM compiler.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_308__blocks_and_grand_central_dispatch_in_practice.m4v
out=[2011] [Session 308] Blocks and Grand Central Dispatch in Practice.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_309__introducing_interface_builder_storyboarding.m4v
out=[2011] [Session 309] Introducing Interface Builder Storyboarding.m4v
https://download.developer.apple.com/videos/wwdc_2011__sd/session_310__whats_new_in_instruments.m4v
out=[2011] [Session 310] What's New in Instruments.m4v
https://download.developer.apple.com/videos/wwdc_2011__sd/session_311__mastering_source_control_in_xcode.m4v
out=[2011] [Session 311] Mastering Source Control in Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_312__ios_performance_and_power_optimization_with_instruments.m4v
out=[2011] [Session 312] iOS Performance and Power Optimization with Instruments.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_313__mastering_schemes_in_xcode_4.m4v
out=[2011] [Session 313] Mastering Schemes in Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_315__whats_new_in_core_data_on_mac_os_x.m4v
out=[2011] [Session 315] What's New in Core Data on Mac OS X.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_316__llvm_technologies_in_depth.m4v
out=[2011] [Session 316] LLVM Technologies in Depth.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_317__device_management_and_app_submission_with_xcode_4.m4v
out=[2011] [Session 317] Device Management and App Submission with Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_319__effective_debugging_with_xcode_4.m4v
out=[2011] [Session 319] Effective Debugging with Xcode 4.m4v
https://download.developer.apple.com/videos/wwdc_2011__sd/session_320__adopting_multitasking_in_your_app.m4v
out=[2011] [Session 320] Adopting Multitasking in Your App.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_321__migrating_from_gdb_to_lldb.m4v
out=[2011] [Session 321] Migrating from GDB to LLDB.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_322__objectivec_advancements_in_depth.m4v
out=[2011] [Session 322] Objective-C Advancements In-Depth.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_323__introducing_automatic_reference_counting.m4v
out=[2011] [Session 323] Introducing Automatic Reference Counting.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_400__graphics_media_and_games_kickoff.m4v
out=[2011] [Session 400] Graphics, Media, and Games Kickoff.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_402__essential_game_technologies_for_ios_part_1.m4v
out=[2011] [Session 402] Essential Game Technologies for iOS, Pt 1.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_403__essential_game_technologies_for_ios_part_2.m4v
out=[2011] [Session 403] Essential Game Technologies for iOS, Pt 2.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_404__audio_development_for_games.m4v
out=[2011] [Session 404] Audio Development for Games.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_405__exploring_av_foundation.m4v
out=[2011] [Session 405] Exploring AV Foundation.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_406__airplay_and_external_displays_in_ios_apps.m4v
out=[2011] [Session 406] AirPlay and External Displays in iOS apps.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_407__introduction_to_game_center.m4v
out=[2011] [Session 407] Introduction to Game Center.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_408__http_live_streaming_update.m4v
out=[2011] [Session 408] HTTP Live Streaming Update.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_409__working_with_game_center.m4v
out=[2011] [Session 409] Working with Game Center.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_401__whats_new_in_opencl.m4v
out=[2011] [Session 401] What's New in OpenCL.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_410__multiplayer_gaming_with_game_center.m4v
out=[2011] [Session 410] Multi-Player Gaming with Game Center.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_411__music_in_ios_and_lion.m4v
out=[2011] [Session 411] Music in iOS and Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_412__turnbased_gaming_with_game_center.m4v
out=[2011] [Session 412] Turn-Based Gaming with Game Center.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_413__audio_session_management_for_ios.m4v
out=[2011] [Session 413] Audio Session Management for iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_414__advances_in_opengl_es_for_ios_5.m4v
out=[2011] [Session 414] Advances in OpenGL ES for iOS 5.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_415__working_with_media_in_av_foundation.m4v
out=[2011] [Session 415] Working with Media in AV Foundation.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_416__tools_for_tuning_opengl_es_apps_on_ios.m4v
out=[2011] [Session 416] Tools for Tuning OpenGL ES Apps on iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_417__introducing_avfoundation_capture_for_lion.m4v
out=[2011] [Session 417] Introducing AV Foundation Capture For Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_418__best_practices_for_opengl_es_on_ios.m4v
out=[2011] [Session 418] Best Practices for OpenGL ES Apps in iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_419__capture_from_camera_using_avfoundation_on_ios.m4v
out=[2011] [Session 419] Capturing from the Camera using AV Foundation on iOS 5.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_420__advances_in_opengl_for_mac_os_lion.m4v
out=[2011] [Session 420] Advances in OpenGL for Mac OS X Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_421__core_animation_essentials.m4v
out=[2011] [Session 421] Core Animation Essentials.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_422__using_core_image_on_ios_and_mac_os_x.m4v
out=[2011] [Session 422] Using Core Image on iOS .m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_423__whats_new_in_core_motion.m4v
out=[2011] [Session 423] What's New in Core Motion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_500__whats_new_in_core_location.m4v
out=[2011] [Session 500] What's New in Core Location.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_501__icloud_storage_overview.m4v
out=[2011] [Session 501] iCloud Storage Overview.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_502__advanced_html5_media_controllers_in_safari.m4v
out=[2011] [Session 502] Advanced HTML5 Media Controllers in Safari.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_503__hidden_gems_for_web_apps.m4v
out=[2011] [Session 503] Hidden Gems for Web Apps.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_504__building_newsstand_apps.m4v
out=[2011] [Session 504] Building Newsstand Apps.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_505__iad_implementation_best_practices.m4v
out=[2011] [Session 505] iAd Implementation Best Practices.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_506__building_iad_rich_media_ads_with_iad_producer.m4v
out=[2011] [Session 506] Building iAd Rich Media Ads with iAd Producer.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_507__ibooks.m4v
out=[2011] [Session 507] iBooks - Create Beautiful Books with HTML5, CSS3 and EPUB.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_508__understanding_and_optimizing_web_graphics.m4v
out=[2011] [Session 508] Understanding And Optimizing Web Graphics.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_509__whats_new_in_css_effects_and_animation.m4v
out=[2011] [Session 509] What's New in CSS Effects and Animations.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_510__inapp_purchase_for_ios_and_mac_os_x.m4v
out=[2011] [Session 510] In-App Purchase for iOS and Mac OS X.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_511__rich_text_editing_in_safari_on_ios.m4v
out=[2011] [Session 511] Rich Text Editing in Safari on iOS.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_512__whats_new_in_app_publishing_with_itunes_connect.m4v
out=[2011] [Session 512] What's New in App Publishing With iTunes Connect.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_514__whats_new_in_safari_extensions.m4v
out=[2011] [Session 514] What's New in Safari Extensions.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_515__using_html5_offline_storage.m4v
out=[2011] [Session 515] Using HTML5 Offline Storage.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_516__understanding_layout_and_gestures.m4v
out=[2011] [Session 516] Understanding Layout and Gestures in Safari on iOS and Lion.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_517__using_local_and_push_notifications_on_ios_and_mac_os_x.m4v
out=[2011] [Session 517] Using Local And Push Notifications on iOS and Mac OS X.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_518__testing_your_locationaware_application.m4v
out=[2011] [Session 518] Testing Your Location-Aware App Without Leaving Your Chair.m4v
https://download.developer.apple.com/videos/wwdc_2011__hd/session_519__combining_web_accessibility_and_automation_on_ios.m4v
out=[2011] [Session 519] Combining Web Accessibility and Automation on iOS.m4v
https://download.developer.apple.com/videos/wwdc_2012__hd/session_101__platforms_kickoff.mov
out=[2012] [Session 101] Platforms Kickoff.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_200__whats_new_in_cocoa_touch.mov
out=[2012] [Session 200] What's New in Cocoa Touch.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_202__introduction_to_auto_layout_for_ios_and_os_x.mov
out=[2012] [Session 202] Introduction to Auto Layout for iOS and OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_203__accessibility_for_os_x.mov
out=[2012] [Session 203] Accessibility for OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_204__whats_new_in_cocoa.mov
out=[2012] [Session 204] What's New in Cocoa.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_205__introducing_collection_views.mov
out=[2012] [Session 205] Introducing Collection Views.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_206__secure_automation_techniques_in_os_x.mov
out=[2012] [Session 206] Secure Automation Techniques in OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_208__saving_and_restoring_application_state_on_ios.mov
out=[2012] [Session 208] Saving and Restoring Application State on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_209__icloud_storage_overview.mov
out=[2012] [Session 209] iCloud Storage Overview.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_210__accessibility_for_ios.mov
out=[2012] [Session 210] Accessibility for iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_211__building_concurrent_user_interfaces_on_ios.mov
out=[2012] [Session 211] Building Concurrent User Interfaces on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_212__basicshabits__building_your_software_projects_to_last.mov
out=[2012] [Session 212] Basics + habits - Building Your Software Projects to Last.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_213__introduction_to_high_resolution_on_os_x.mov
out=[2012] [Session 213] Introduction to High Resolution on OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_214__core_data_best_practices.mov
out=[2012] [Session 214] Core Data Best Practices.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_215__text_and_linguistic_analysis.mov
out=[2012] [Session 215] Text and Linguistic Analysis.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_216__advanced_appearance_customization_on_ios.mov
out=[2012] [Session 216] Advanced Appearance Customization on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_217__layerbacked_views__appkit__core_animation.mov
out=[2012] [Session 217] Layer-Backed Views - AppKit + Core Animation.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_218__using_icloud_with_uidocument.mov
out=[2012] [Session 218] Using iCloud with UIDocument.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_219__advanced_collection_views_and_building_custom_layouts.mov
out=[2012] [Session 219] Advanced Collection Views and Building Custom Layouts.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_220__keyboard_input_in_ios.mov
out=[2012] [Session 220] Keyboard Input in iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_221__ios_user_interface_design.mov
out=[2012] [Session 221] iOS User Interface Design.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_222__introduction_to_attributed_strings_for_ios.mov
out=[2012] [Session 222] Introduction to Attributed Strings for iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_223__enhancing_user_experience_with_scroll_views.mov
out=[2012] [Session 223] Enhancing User Experience with Scroll Views.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_224__using_icloud_with_nsdocument.mov
out=[2012] [Session 224] Using iCloud with NSDocument.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_225__up_and_running__making_a_great_impression_with_every_launch.mov
out=[2012] [Session 225] Up and Running - Making a Great Impression with Every Launch.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_226__core_text_and_fonts.mov
out=[2012] [Session 226] Core Text and Fonts.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_227__using_icloud_with_core_data.mov
out=[2012] [Session 227] Using iCloud with Core Data.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_228__best_practices_for_mastering_auto_layout.mov
out=[2012] [Session 228] Best Practices for Mastering Auto Layout.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_230__advanced_attributed_strings_for_ios.mov
out=[2012] [Session 230] Advanced Attributed Strings for iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_231__whats_new_with_gestures.mov
out=[2012] [Session 231] What's New with Gestures.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_232__auto_layout_by_example.mov
out=[2012] [Session 232] Auto Layout by Example.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_233__building_advanced_gesture_recognizers.mov
out=[2012] [Session 233] Building Advanced Gesture Recognizers.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_234__airprint.mov
out=[2012] [Session 234] AirPrint.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_235__ios_app_performance__responsiveness.mov
out=[2012] [Session 235] iOS App Performance - Responsiveness.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_236__the_evolution_of_view_controllers_on_ios.mov
out=[2012] [Session 236] The Evolution of View Controllers on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_237__advanced_icloud_document_storage.mov
out=[2012] [Session 237] Advanced iCloud Document Storage.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_238__ios_app_performance__graphics_and_animations.mov
out=[2012] [Session 238] iOS App Performance - Graphics and Animations.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_240__polishing_your_interface_rotations.mov
out=[2012] [Session 240] Polishing Your Interface Rotations.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_241__cocoa_interprocess_communication_with_xpc.mov
out=[2012] [Session 241] Cocoa Inter-process Communication with XPC.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_242__ios_app_performance__memory.mov
out=[2012] [Session 242] iOS App Performance - Memory.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_243__iphoto_for_ios__ui_progression_and_animation_design.mov
out=[2012] [Session 243] iPhoto for iOS - UI Progression and Animation Design.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_244__internationalization_tips_and_tricks.mov
out=[2012] [Session 244] Internationalization Tips and Tricks.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_245__advanced_tips_and_tricks_for_high_resolution_on_os_x.mov
out=[2012] [Session 245] Advanced Tips and Tricks for High Resolution on OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_300__getting_around_using_map_kit.mov
out=[2012] [Session 300] Getting Around Using Map Kit.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_301__introducing_passbook_part_1.mov
out=[2012] [Session 301] Introducing Passbook, Part 1.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_302__selling_products_with_store_kit.mov
out=[2012] [Session 302] Selling Products with Store Kit.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_303__staying_on_track_with_location_services.mov
out=[2012] [Session 303] Staying on Track with Location Services.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_304__events_and_reminders_in_event_kit.mov
out=[2012] [Session 304] Events and Reminders in Event Kit.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_305__whats_new_in_itunes_connect_for_app_developers.mov
out=[2012] [Session 305] What's New in iTunes Connect for App Developers.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_306__integrating_with_facebook_twitter_and_sina_weibo.mov
out=[2012] [Session 306] Integrating with Facebook, Twitter and Sina Weibo.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_307__building_great_newsstand_apps.mov
out=[2012] [Session 307] Building Great Newsstand Apps.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_308__managing_subscriptions_with_inapp_purchase.mov
out=[2012] [Session 308] Managing Subscriptions with In-App Purchase.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_309__introducing_passbook_part_2.mov
out=[2012] [Session 309] Introducing Passbook, Part 2.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_311__building_and_distributing_custom_b2b_apps_for_ios.mov
out=[2012] [Session 311] Building and Distributing Custom B2B Apps for iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_400__developer_tools_kickoff.mov
out=[2012] [Session 400] Developer Tools Kickoff.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_402__working_efficiently_with_xcode.mov
out=[2012] [Session 402] Working Efficiently with Xcode.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_404__building_from_the_command_line_with_xcode.mov
out=[2012] [Session 404] Building from the Command Line with Xcode.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_405__modern_objectivec.mov
out=[2012] [Session 405] Modern Objective-C.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_406__adopting_automatic_reference_counting.mov
out=[2012] [Session 406] Adopting Automatic Reference Counting.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_407__adopting_storyboards_in_your_app.mov
out=[2012] [Session 407] Adopting Storyboards in Your App.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_408__working_with_schemes_and_projects_in_xcode.mov
out=[2012] [Session 408] Working with schemes and Projects in Xcode.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_409__learning_instruments.mov
out=[2012] [Session 409] Learning Instruments.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_410__whats_new_in_llvm.mov
out=[2012] [Session 410] What's New in LLVM.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_411__source_control_management_in_xcode.mov
out=[2012] [Session 411] Source Control Management in Xcode.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_412__debugging_in_xcode.mov
out=[2012] [Session 412] Debugging in Xcode.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_413__migrating_to_modern_objectivec.mov
out=[2012] [Session 413] Migrating to Modern Objective-C.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_414__building_archiving_and_submitting_your_app.mov
out=[2012] [Session 414] Building, Archiving and Submitting Your App.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_415__debugging_with_lldb.mov
out=[2012] [Session 415] Debugging with LLDB.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_500__game_technologies_kickoff.mov
out=[2012] [Session 500] Game Technologies Kickoff.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_501__publishing_with_the_ibookstore.mov
out=[2012] [Session 501] Publishing with the iBookStore.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_502__effective_http_live_streaming.mov
out=[2012] [Session 502] Effective HTTP Live Streaming.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_503__building_books_with_ibooks_author.mov
out=[2012] [Session 503] Building Books with iBooks Author.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_504__introducing_scene_kit.mov
out=[2012] [Session 504] Introducing Scene Kit.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_505__audio_session_and_multiroute_audio_in_ios.mov
out=[2012] [Session 505] Audio Session and Multiroute Audio in iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_506__optimizing_2d_graphics_and_animation_performance.mov
out=[2012] [Session 506] Optimizing 2D Graphics and Animation Performance.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_508__whats_new_in_game_center.mov
out=[2012] [Session 508] What's New in Game Center.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_509__building_interactive_books_with_epub_3_and_javascript.mov
out=[2012] [Session 509] Building Interactive Books with EPUB 3 and JavaScript.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_510__getting_started_with_core_image.mov
out=[2012] [Session 510] Getting Started with Core Image.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_511__core_image_techniques.mov
out=[2012] [Session 511] Core Image Techniques.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_512__whats_new_in_http_live_streaming.mov
out=[2012] [Session 512] What's New in HTTP Live Streaming.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_513__advances_in_opengl_and_opengl_es.mov
out=[2012] [Session 513] Advances in OpenGL and OpenGL ES.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_514__opengl_es_tools_and_techniques.mov
out=[2012] [Session 514] OpenGL ES Tools and Techniques.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_515__html_css_and_dom_for_book_authors.mov
out=[2012] [Session 515] HTML, CSS and DOM for Book Authors.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_516__integrating_your_games_with_game_center.mov
out=[2012] [Session 516] Integrating Your Games with Game Center.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_517__realtime_media_effects_and_processing_during_playback.mov
out=[2012] [Session 517] Real-Time Media Effects and Processing During Playback.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_518__improving_accessibility_in_books.mov
out=[2012] [Session 518] Improving Accessibility in Books.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_519__multiplayer_gaming_with_game_center.mov
out=[2012] [Session 519] Multiplayer Gaming with Game Center.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_520__whats_new_in_camera_capture.mov
out=[2012] [Session 520] What's New in Camera Capture.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_521__building_game_center_games_for_os_x.mov
out=[2012] [Session 521] Building Game Center Games for OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_522__adopting_opencl_in_your_application.mov
out=[2012] [Session 522] Adopting OpenCL in Your Application.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_523__best_practices_for_color_management.mov
out=[2012] [Session 523] Best Practices for Color Management.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_524__understanding_core_motion.mov
out=[2012] [Session 524] Understanding Core Motion.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_600__debugging_uiwebviews_and_websites_on_ios.mov
out=[2012] [Session 600] Debugging UIWebViews and Websites on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_601__optimizing_web_content_in_uiwebviews_and_websites_on_ios.mov
out=[2012] [Session 601] Optimizing Web Content in UIWebViews and Websites on iOS.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_602__delivering_web_content_on_high_resolution_displays.mov
out=[2012] [Session 602] Delivering Web Content on High Resolution Displays.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_603__tools_services_and_apis_for_itunes_affiliate_program_marketing.mov
out=[2012] [Session 603] Tools, Services and APIs for iTunes Affiliate Program Marketing.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_604__advanced_effects_with_html5_media_technologies.mov
out=[2012] [Session 604] Advanced Effects with HTML5 Media Technologies.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_605__producing_rich_media_advertisements_for_iad.mov
out=[2012] [Session 605] Producing Rich Media Advertisements for iAd.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_700__the_os_x_app_sandbox.mov
out=[2012] [Session 700] The OS X App Sandbox.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_701__ios_accessories.mov
out=[2012] [Session 701] iOS Accessories.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_702__gatekeeper_and_developer_id.mov
out=[2012] [Session 702] GateKeeper and Developer ID.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_703__core_bluetooth_101.mov
out=[2012] [Session 703] Core Bluetooth 101.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_704__the_security_framework.mov
out=[2012] [Session 704] The Security Framework.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_705__advanced_core_bluetooth.mov
out=[2012] [Session 705] Advanced Core Bluetooth.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_706__networking_best_practices.mov
out=[2012] [Session 706] Networking Best Practices.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_707__simplify_networking_with_bonjour.mov
out=[2012] [Session 707] Simplify Networking with Bonjour.mov
https://download.developer.apple.com/videos/wwdc_2012__sd/session_708__the_accelerate_framework.mov
out=[2012] [Session 708] The Accelerate Framework.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_709__whats_new_in_the_filesystem.mov
out=[2012] [Session 709] What's New in the Filesystem.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_710__privacy_support_in_ios_and_os_x.mov
out=[2012] [Session 710] Privacy Support in iOS and OS X.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_711__power_management.mov
out=[2012] [Session 711] Power Management.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_712__asynchronous_design_patterns_with_blocks_gcd_and_xpc.mov
out=[2012] [Session 712] Asynchronous Design Patterns with Blocks, GCD and XPC.mov
https://download.developer.apple.com/videos/wwdc_2012__hd/session_714__protecting_the_users_data.mov
out=[2012] [Session 714] Protecting the Users Data.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/100xex1xb4fuo9xiu0/100/100-HD.mov?dl=1
out=[2013] [Session 100] Keynote.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2013/101xex1x82z7rpszsw/101/101-HD.mov?dl=1
out=[2013] [Session 101] Platforms State of the Union.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/102xex1x2e4xpykz1y/102/102-HD.mov?dl=1
out=[2013] [Session 102] Apple Design Awards.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/109xxxjfr9zgakbgrzxk23n2/109/109-HD.mov?dl=1
out=[2013] [Session 109] Painting the Future.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/200xdx2x35e1pxiinm/200/200-HD.mov?dl=1
out=[2013] [Session 200] Accessibility in OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/201xex2xxf5ynwnsgl/201/201-HD.mov?dl=1
out=[2013] [Session 201] Building User Interfaces for iOS 7.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/202xdx2x47ezp1wein/202/202-HD.mov?dl=1
out=[2013] [Session 202] Accessibility in iOS.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/203xex2xro3o27pyntvhsqsohil/203/203-HD.mov?dl=1
out=[2013] [Session 203] What’s New in Cocoa Touch.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/204xex2xvpdncz9kdb17lmfooh/204/204-HD.mov?dl=1
out=[2013] [Session 204] What’s New with Multitasking.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/205xbx2xfbtmyu1l18h36mfqxmy/205/205-HD.mov?dl=1
out=[2013] [Session 205] What’s New in Cocoa.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/206xex2xws29m12p69m7s169q/206/206-HD.mov?dl=1
out=[2013] [Session 206] Getting Started with UIKit Dynamics.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/207xdx3xbarjw2d2va5olp57qh8/207/207-HD.mov?dl=1
out=[2013] [Session 207] What’s New in Core Data and iCloud.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/208xex3xyxmpz8s37fk59avul0c5/208/208-HD.mov?dl=1
out=[2013] [Session 208] What’s New in iOS User Interface Design.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/209xdx3xahizhph6dg8wk631i/209/209-HD.mov?dl=1
out=[2013] [Session 209] Improving Power Efficiency with App Nap.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/210xbx3xpg6jhh8okmc7zc8j89/210/210-HD.mov?dl=1
out=[2013] [Session 210] Introducing Text Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/211xcx3xeognrgah6anssirb/211/211-HD.mov?dl=1
out=[2013] [Session 211] Core Data Performance Optimization and Debugging.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/213xax3xr33a8oxfsxg8bha/213/213-HD.mov?dl=1
out=[2013] [Session 213] Best Practices for Cocoa Animation.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/214xex3xkbq0z93doa6o31c0/214/214-HD.mov?dl=1
out=[2013] [Session 214] Customizing Your App’s Appearance for iOS 7.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/215xax3xz5pbbxeaxxe7z1mk3q/215/215-HD.mov?dl=1
out=[2013] [Session 215] Optimizing Drawing and Scrolling on OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/216xcx4x7if809qdggi7vcc/216/216-HD.mov?dl=1
out=[2013] [Session 216] Bringing Your iOS Apps to OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/217xex4xi4ws3f5wrv3w2wkh/217/217-HD.mov?dl=1
out=[2013] [Session 217] Exploring Scroll Views on iOS 7.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/218xdx4xj2umojkv3e8dbk6i/218/218-HD.mov?dl=1
out=[2013] [Session 218] Custom Transitions Using View Controllers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/219xax4xjor8i6b9h77lafay32/219/219-HD.mov?dl=1
out=[2013] [Session 219] Making Your App World-Ready.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/220xbx4xipaxfd1tggxuoib/220/220-HD.mov?dl=1
out=[2013] [Session 220] Advanced Text Layouts and Effects with Text Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/221xex4xxohbllf4hblyngt/221/221-HD.mov?dl=1
out=[2013] [Session 221] Advanced Techniques with UIKit Dynamics.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/222xbx4xitmr47hmc2ulz1tli4hv/222/222-HD.mov?dl=1
out=[2013] [Session 222] What’s New in State Restoration.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/223xex5xsgdfh1ergtjrqwoghbj/223/223-HD.mov?dl=1
out=[2013] [Session 223] Using Fonts with Text Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/224xcx5x1y1yx8ra5jbmfyhf/224/224-HD.mov?dl=1
out=[2013] [Session 224] Designing Code for Performance.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/225xex5xkk51ehr0z54gd9kt/225/225-HD.mov?dl=1
out=[2013] [Session 225] Best Practices for Great iOS UI Design.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/226xbx5xinmlvbdabxux9k3kt/226/226-HD.mov?dl=1
out=[2013] [Session 226] Implementing Engaging UI on iOS.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/227xax5xif2s7s531dsmfs1afo2/227/227-HD.mov?dl=1
out=[2013] [Session 227] Solutions to Common Date and Time Challenges.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/228xax5xif2s7s53df5ffjfao2/228/228-HD.mov?dl=1
out=[2013] [Session 228] Hidden Gems in Cocoa and Cocoa Touch.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/300xdx2xem8o4pmrhvraq9ty76/300/300-HD.mov?dl=1
out=[2013] [Session 300] Managing Apple Devices.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/301xcx2xzxf8qjdcu3y2k1itm/301/301-HD.mov?dl=1
out=[2013] [Session 301] Extending Your Apps for Enterprise and Education Use.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/302xdx3xf65k8c0kkajsjy2mh9jj/302/302-HD.mov?dl=1
out=[2013] [Session 302] What’s New in Passbook.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/303xdx3xodi2951d3kopnrhlg/303/303-HD.mov?dl=1
out=[2013] [Session 303] Integrating Passbook into your Ecosystem.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/304xex4x7qun15qmlzgf1s39fn08/304/304-HD.mov?dl=1
out=[2013] [Session 304] What’s New in Map Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/305xbx4xqongltzvuja8xrmsrq1/305/305-HD.mov?dl=1
out=[2013] [Session 305] Using Store Kit for In-App Purchases.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/306xdx4xq2n1jhue4dfou0nemckj/306/306-HD.mov?dl=1
out=[2013] [Session 306] What’s New in iTunes Connect.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/307xex4xl1ey243ksyxqfip0xowr/307/307-HD.mov?dl=1
out=[2013] [Session 307] What’s New in Core Location.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/308xex4x6ybggtlw4ztv0sg5btp/308/308-HD.mov?dl=1
out=[2013] [Session 308] Using Receipts to Protect Your Digital Sales.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/309xdx4x891fj1ing58e5cayt1z/309/309-HD.mov?dl=1
out=[2013] [Session 309] Putting Map Kit in Perspective.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/310xex5xg29dwip7fgthel9z2/310/310-HD.mov?dl=1
out=[2013] [Session 310] Harnessing iOS to Create Magic in Your Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/400xex2xbskwa5bkxr17zihju9uf/400/400-HD.mov?dl=1
out=[2013] [Session 400] What’s New in Xcode 5.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/401xbx2xq50gv7mqafyfdns2yhxl/401/401-HD.mov?dl=1
out=[2013] [Session 401] Xcode Core Concepts.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/402xdx2x3ccrfzk85j9dysimvsui/402/402-HD.mov?dl=1
out=[2013] [Session 402] What’s New in the LLVM Compiler.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/403xex2xoo3u74gemi4q9vhvs/403/403-HD.mov?dl=1
out=[2013] [Session 403] From Zero to App Store in Xcode 5.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/404xbx2xvp1eaaqonr8zokm/404/404-HD.mov?dl=1
out=[2013] [Session 404] Advances in Objective-C.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/405xcx3x5ud6sopkxfqg7ikk/405/405-HD.mov?dl=1
out=[2013] [Session 405] Interface Builder Core Concepts.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/406xex3x90a7ka0kyhsfjxfqfbi/406/406-HD.mov?dl=1
out=[2013] [Session 406] Taking Control of Auto Layout in Xcode 5.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/407xdx3xw3kl5xx1h5cs73sp/407/407-HD.mov?dl=1
out=[2013] [Session 407] Debugging with Xcode.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/408xcx3x0l4e2phvin8xrhsn23/408/408-HD.mov?dl=1
out=[2013] [Session 408] Optimize Your Code Using LLVM.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/409xdx4x4adcwca5ok0rtsup0sg/409/409-HD.mov?dl=1
out=[2013] [Session 409] Testing in Xcode 5.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/410xcx4x9x0ry3zbw3rzq14kx/410/410-HD.mov?dl=1
out=[2013] [Session 410] Fixing Memory Issues.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/412xdx4x6xpjownhu5d4as36/412/412-HD.mov?dl=1
out=[2013] [Session 412] Continuous Integration with Xcode 5.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/413xdx5x97itb5ek4yex3r7/413/413-HD.mov?dl=1
out=[2013] [Session 413] Advanced Debugging with LLDB.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/414xdx5xbjc8ls04ewrox0a160i/414/414-HD.mov?dl=1
out=[2013] [Session 414] Understanding Source Control in Xcode.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/415xdx5x0wygxidaf0ifiey/415/415-HD.mov?dl=1
out=[2013] [Session 415] Maximizing Apple Development Resources.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/416xxx3x90yhsjxfqfbi/416/416-HD.mov?dl=1
out=[2013] [Session 416] Introducing AppleScript Libraries.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/417xxx0oh4r99eed2hb1k3ce/417/417-HD.mov?dl=1
out=[2013] [Session 417] OS X Automation Update.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/500xbx2xh3dv43mpm46sd0qzj8d0/500/500-HD.mov?dl=1
out=[2013] [Session 500] What’s New in Scene Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/501xdx2xat8ocml4nv7i08noe/501/501-HD.mov?dl=1
out=[2013] [Session 501] Integrating with Game Controllers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/502xex3x2iwfiaeglpjw0mh54u/502/502-HD.mov?dl=1
out=[2013] [Session 502] Introduction to Sprite Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/503xbx3xoaktjug4e05xvl04/503/503-HD.mov?dl=1
out=[2013] [Session 503] Designing Games with Sprite Kit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/504xbx3x55lc470bv6s8dk2lcg28/504/504-HD.mov?dl=1
out=[2013] [Session 504] What’s New in Game Center.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/505xbx4xrgmhwby4oiwkrpp/505/505-HD.mov?dl=1
out=[2013] [Session 505] Advances in OpenGL ES.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/506xbx4x8brixcxa41wrzgph0gw/506/506-HD.mov?dl=1
out=[2013] [Session 506] Turn-Based Gaming with Game Center.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/507xax4xgxp9uuxl9i7y0emdv5ib/507/507-HD.mov?dl=1
out=[2013] [Session 507] What’s New in OpenGL for OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/508xax4xqkee4rd9rsmbb86dw5cu/508/508-HD.mov?dl=1
out=[2013] [Session 508] Working with OpenCL.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/509xbx5xydkscnk7eyuyj1qi/509/509-HD.mov?dl=1
out=[2013] [Session 509] Core Image Effects and Techniques.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/600xbx2x3eaj3ryz3w5zw5gozz39/600/600-HD.mov?dl=1
out=[2013] [Session 600] What’s New in Safari and WebKit for Web Developers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/601xfx2xk7wrmhwsa5gao39ln/601/601-HD.mov?dl=1
out=[2013] [Session 601] Getting to Know Web Inspector.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/602xcx2xk6ipx0cusjryu1sx5eu/602/602-HD.mov?dl=1
out=[2013] [Session 602] What’s New in Core Audio for iOS.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/603xfx2xhszvvn0zgc1cbgx1j/603/603-HD.mov?dl=1
out=[2013] [Session 603] Getting the Most Out of Web Inspector.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/604xfx2xl2ujhx7vffbjmtqu2t/604/604-HD.mov?dl=1
out=[2013] [Session 604] Introducing iAd Workbench, The Best Way to Market Your App.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/605xfx2xbot31cme1uns8w647vsw/605/605-HD.mov?dl=1
out=[2013] [Session 605] What’s New in iBooks Author.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/606xdx2xbp31zp28fdov8p0b6d/606/606-HD.mov?dl=1
out=[2013] [Session 606] Moving to AV Kit and AV Foundation.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/607xfx3xox1jscc7z24fl2jf4mf/607/607-HD.mov?dl=1
out=[2013] [Session 607] Power and Performance - Optimizing Your Website for Great Battery Life and Responsive Scrolling.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/608xcx3xafjdvmnjpo5dzvou97r/608/608-HD.mov?dl=1
out=[2013] [Session 608] Preparing and Presenting Media for Accessibility.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/609xfx3xpwcil5bz8h6ot4f871/609/609-HD.mov?dl=1
out=[2013] [Session 609] Introduction to iBooks Author Widget and iAd Rich Media Ad Development with iAd Producer 4.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/610xcx3xv9xjy916g3wzes0ze63/610/610-HD.mov?dl=1
out=[2013] [Session 610] What’s New in Camera Capture.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/611xfx3x2l2zzkb2oaovson/611/611-HD.mov?dl=1
out=[2013] [Session 611] Building Advanced iBooks HTML 5 Widgets and iAd Rich Media Ads.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/612xax4xx65z1ervy5np1qb/612/612-HD.mov?dl=1
out=[2013] [Session 612] Advanced Editing with AV Foundation.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/613xfx4xp91m26w7iu790d3nx/613/613-HD.mov?dl=1
out=[2013] [Session 613] iAd Integration and Best Practices.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/614xax5x602jmihlq4c4edtrl/614/614-HD.mov?dl=1
out=[2013] [Session 614] Implementing OS X Push Notifications for Websites.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/615xax5xpcdns8jyhaiszkz2p/615/615-HD.mov?dl=1
out=[2013] [Session 615] Integrating JavaScript into Native Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/700xcx2xuedgs1rni4qry1yumg/700/700-HD.mov?dl=1
out=[2013] [Session 700] Designing Accessories for iOS and OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/701xbx2xqblo39z6tpbdrcz/701/701-HD.mov?dl=1
out=[2013] [Session 701] Maximizing Battery Life on OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/702xfx2xmlrics5pyrjfwu2m/702/702-HD.mov?dl=1
out=[2013] [Session 702] Efficient Design with XPC.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/703xcx2xljtlq481grxurla4/703/703-HD.mov?dl=1
out=[2013] [Session 703] Core Bluetooth.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/704xcx2xrmodatdtgs6nf5w4/704/704-HD.mov?dl=1
out=[2013] [Session 704] Building Efficient OS X Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/705xbx3xcjsmrdbtwl5grta6gq6r/705/705-HD.mov?dl=1
out=[2013] [Session 705] What’s New in Foundation Networking.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/707xfx3xysb4yyrvtxbbu6t9fono/707/707-HD.mov?dl=1
out=[2013] [Session 707] What’s New in Kext Development.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/708xbx3x7xusbzidl0j3acxest/708/708-HD.mov?dl=1
out=[2013] [Session 708] Nearby Networking with Multipeer Connectivity.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/709xax3xiafkagts5jfa5705dx6/709/709-HD.mov?dl=1
out=[2013] [Session 709] Protecting Secrets with the Keychain.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/710xfx3xn8197k4i9s2rvyb/710/710-HD.mov?dl=1
out=[2013] [Session 710] A Practical Guide to the App Sandbox.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/711xcx4x8yuutk8sady6t9f/711/711-HD.mov?dl=1
out=[2013] [Session 711] Advances in AirPrint.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/712xax4xb4mh6prvqkesmm75/712/712-HD.mov?dl=1
out=[2013] [Session 712] Energy Best Practices.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/713xcx4xtaue02i1tvk0kpvarvo/713/713-HD.mov?dl=1
out=[2013] [Session 713] The Accelerate Framework.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2013/714xbx5xcen10zkjl5f9sd8ys63/714/714-HD.mov?dl=1
out=[2013] [Session 714] Protecting your Users’ Privacy.mov
#!/bin/bash
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/100xex1xb4fuo9xiu0/100/ipad_c.m3u8 --output "[2013] [Session 100] Keynote.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/101xex1x82z7rpszsw/101/ipad_c.m3u8 --output "[2013] [Session 101] Platforms State of the Union.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/102xex1x2e4xpykz1y/102/ipad_c.m3u8 --output "[2013] [Session 102] Apple Design Awards.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/109xxxjfr9zgakbgrzxk23n2/109/ipad_c.m3u8 --output "[2013] [Session 109] Painting the Future.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/200xdx2x35e1pxiinm/200/ipad_c.m3u8 --output "[2013] [Session 200] Accessibility in OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/201xex2xxf5ynwnsgl/201/ipad_c.m3u8 --output "[2013] [Session 201] Building User Interfaces for iOS 7.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/202xdx2x47ezp1wein/202/ipad_c.m3u8 --output "[2013] [Session 202] Accessibility in iOS.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/203xex2xro3o27pyntvhsqsohil/203/ipad_c.m3u8 --output "[2013] [Session 203] What’s New in Cocoa Touch.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/204xex2xvpdncz9kdb17lmfooh/204/ipad_c.m3u8 --output "[2013] [Session 204] What’s New with Multitasking.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/205xbx2xfbtmyu1l18h36mfqxmy/205/ipad_c.m3u8 --output "[2013] [Session 205] What’s New in Cocoa.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/206xex2xws29m12p69m7s169q/206/ipad_c.m3u8 --output "[2013] [Session 206] Getting Started with UIKit Dynamics.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/207xdx3xbarjw2d2va5olp57qh8/207/ipad_c.m3u8 --output "[2013] [Session 207] What’s New in Core Data and iCloud.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/208xex3xyxmpz8s37fk59avul0c5/208/ipad_c.m3u8 --output "[2013] [Session 208] What’s New in iOS User Interface Design.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/209xdx3xahizhph6dg8wk631i/209/ipad_c.m3u8 --output "[2013] [Session 209] Improving Power Efficiency with App Nap.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/210xbx3xpg6jhh8okmc7zc8j89/210/ipad_c.m3u8 --output "[2013] [Session 210] Introducing Text Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/211xcx3xeognrgah6anssirb/211/ipad_c.m3u8 --output "[2013] [Session 211] Core Data Performance Optimization and Debugging.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/213xax3xr33a8oxfsxg8bha/213/ipad_c.m3u8 --output "[2013] [Session 213] Best Practices for Cocoa Animation.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/214xex3xkbq0z93doa6o31c0/214/ipad_c.m3u8 --output "[2013] [Session 214] Customizing Your App’s Appearance for iOS 7.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/215xax3xz5pbbxeaxxe7z1mk3q/215/ipad_c.m3u8 --output "[2013] [Session 215] Optimizing Drawing and Scrolling on OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/216xcx4x7if809qdggi7vcc/216/ipad_c.m3u8 --output "[2013] [Session 216] Bringing Your iOS Apps to OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/217xex4xi4ws3f5wrv3w2wkh/217/ipad_c.m3u8 --output "[2013] [Session 217] Exploring Scroll Views on iOS 7.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/218xdx4xj2umojkv3e8dbk6i/218/ipad_c.m3u8 --output "[2013] [Session 218] Custom Transitions Using View Controllers.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/219xax4xjor8i6b9h77lafay32/219/ipad_c.m3u8 --output "[2013] [Session 219] Making Your App World-Ready.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/220xbx4xipaxfd1tggxuoib/220/ipad_c.m3u8 --output "[2013] [Session 220] Advanced Text Layouts and Effects with Text Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/221xex4xxohbllf4hblyngt/221/ipad_c.m3u8 --output "[2013] [Session 221] Advanced Techniques with UIKit Dynamics.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/222xbx4xitmr47hmc2ulz1tli4hv/222/ipad_c.m3u8 --output "[2013] [Session 222] What’s New in State Restoration.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/223xex5xsgdfh1ergtjrqwoghbj/223/ipad_c.m3u8 --output "[2013] [Session 223] Using Fonts with Text Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/224xcx5x1y1yx8ra5jbmfyhf/224/ipad_c.m3u8 --output "[2013] [Session 224] Designing Code for Performance.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/225xex5xkk51ehr0z54gd9kt/225/ipad_c.m3u8 --output "[2013] [Session 225] Best Practices for Great iOS UI Design.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/226xbx5xinmlvbdabxux9k3kt/226/ipad_c.m3u8 --output "[2013] [Session 226] Implementing Engaging UI on iOS.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/227xax5xif2s7s531dsmfs1afo2/227/ipad_c.m3u8 --output "[2013] [Session 227] Solutions to Common Date and Time Challenges.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/228xax5xif2s7s53df5ffjfao2/228/ipad_c.m3u8 --output "[2013] [Session 228] Hidden Gems in Cocoa and Cocoa Touch.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/300xdx2xem8o4pmrhvraq9ty76/300/ipad_c.m3u8 --output "[2013] [Session 300] Managing Apple Devices.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/301xcx2xzxf8qjdcu3y2k1itm/301/ipad_c.m3u8 --output "[2013] [Session 301] Extending Your Apps for Enterprise and Education Use.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/302xdx3xf65k8c0kkajsjy2mh9jj/302/ipad_c.m3u8 --output "[2013] [Session 302] What’s New in Passbook.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/303xdx3xodi2951d3kopnrhlg/303/ipad_c.m3u8 --output "[2013] [Session 303] Integrating Passbook into your Ecosystem.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/304xex4x7qun15qmlzgf1s39fn08/304/ipad_c.m3u8 --output "[2013] [Session 304] What’s New in Map Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/305xbx4xqongltzvuja8xrmsrq1/305/ipad_c.m3u8 --output "[2013] [Session 305] Using Store Kit for In-App Purchases.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/306xdx4xq2n1jhue4dfou0nemckj/306/ipad_c.m3u8 --output "[2013] [Session 306] What’s New in iTunes Connect.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/307xex4xl1ey243ksyxqfip0xowr/307/ipad_c.m3u8 --output "[2013] [Session 307] What’s New in Core Location.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/308xex4x6ybggtlw4ztv0sg5btp/308/ipad_c.m3u8 --output "[2013] [Session 308] Using Receipts to Protect Your Digital Sales.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/309xdx4x891fj1ing58e5cayt1z/309/ipad_c.m3u8 --output "[2013] [Session 309] Putting Map Kit in Perspective.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/310xex5xg29dwip7fgthel9z2/310/ipad_c.m3u8 --output "[2013] [Session 310] Harnessing iOS to Create Magic in Your Apps.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/400xex2xbskwa5bkxr17zihju9uf/400/ipad_c.m3u8 --output "[2013] [Session 400] What’s New in Xcode 5.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/401xbx2xq50gv7mqafyfdns2yhxl/401/ipad_c.m3u8 --output "[2013] [Session 401] Xcode Core Concepts.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/402xdx2x3ccrfzk85j9dysimvsui/402/ipad_c.m3u8 --output "[2013] [Session 402] What’s New in the LLVM Compiler.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/403xex2xoo3u74gemi4q9vhvs/403/ipad_c.m3u8 --output "[2013] [Session 403] From Zero to App Store in Xcode 5.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/404xbx2xvp1eaaqonr8zokm/404/ipad_c.m3u8 --output "[2013] [Session 404] Advances in Objective-C.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/405xcx3x5ud6sopkxfqg7ikk/405/ipad_c.m3u8 --output "[2013] [Session 405] Interface Builder Core Concepts.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/406xex3x90a7ka0kyhsfjxfqfbi/406/ipad_c.m3u8 --output "[2013] [Session 406] Taking Control of Auto Layout in Xcode 5.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/407xdx3xw3kl5xx1h5cs73sp/407/ipad_c.m3u8 --output "[2013] [Session 407] Debugging with Xcode.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/408xcx3x0l4e2phvin8xrhsn23/408/ipad_c.m3u8 --output "[2013] [Session 408] Optimize Your Code Using LLVM.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/409xdx4x4adcwca5ok0rtsup0sg/409/ipad_c.m3u8 --output "[2013] [Session 409] Testing in Xcode 5.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/410xcx4x9x0ry3zbw3rzq14kx/410/ipad_c.m3u8 --output "[2013] [Session 410] Fixing Memory Issues.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/412xdx4x6xpjownhu5d4as36/412/ipad_c.m3u8 --output "[2013] [Session 412] Continuous Integration with Xcode 5.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/413xdx5x97itb5ek4yex3r7/413/ipad_c.m3u8 --output "[2013] [Session 413] Advanced Debugging with LLDB.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/414xdx5xbjc8ls04ewrox0a160i/414/ipad_c.m3u8 --output "[2013] [Session 414] Understanding Source Control in Xcode.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/415xdx5x0wygxidaf0ifiey/415/ipad_c.m3u8 --output "[2013] [Session 415] Maximizing Apple Development Resources.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/416xxx3x90yhsjxfqfbi/416/ipad_c.m3u8 --output "[2013] [Session 416] Introducing AppleScript Libraries.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/417xxx0oh4r99eed2hb1k3ce/417/ipad_c.m3u8 --output "[2013] [Session 417] OS X Automation Update.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/500xbx2xh3dv43mpm46sd0qzj8d0/500/ipad_c.m3u8 --output "[2013] [Session 500] What’s New in Scene Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/501xdx2xat8ocml4nv7i08noe/501/ipad_c.m3u8 --output "[2013] [Session 501] Integrating with Game Controllers.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/502xex3x2iwfiaeglpjw0mh54u/502/ipad_c.m3u8 --output "[2013] [Session 502] Introduction to Sprite Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/503xbx3xoaktjug4e05xvl04/503/ipad_c.m3u8 --output "[2013] [Session 503] Designing Games with Sprite Kit.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/504xbx3x55lc470bv6s8dk2lcg28/504/ipad_c.m3u8 --output "[2013] [Session 504] What’s New in Game Center.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/505xbx4xrgmhwby4oiwkrpp/505/ipad_c.m3u8 --output "[2013] [Session 505] Advances in OpenGL ES.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/506xbx4x8brixcxa41wrzgph0gw/506/ipad_c.m3u8 --output "[2013] [Session 506] Turn-Based Gaming with Game Center.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/507xax4xgxp9uuxl9i7y0emdv5ib/507/ipad_c.m3u8 --output "[2013] [Session 507] What’s New in OpenGL for OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/508xax4xqkee4rd9rsmbb86dw5cu/508/ipad_c.m3u8 --output "[2013] [Session 508] Working with OpenCL.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/509xbx5xydkscnk7eyuyj1qi/509/ipad_c.m3u8 --output "[2013] [Session 509] Core Image Effects and Techniques.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/600xbx2x3eaj3ryz3w5zw5gozz39/600/ipad_c.m3u8 --output "[2013] [Session 600] What’s New in Safari and WebKit for Web Developers.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/601xfx2xk7wrmhwsa5gao39ln/601/ipad_c.m3u8 --output "[2013] [Session 601] Getting to Know Web Inspector.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/602xcx2xk6ipx0cusjryu1sx5eu/602/ipad_c.m3u8 --output "[2013] [Session 602] What’s New in Core Audio for iOS.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/603xfx2xhszvvn0zgc1cbgx1j/603/ipad_c.m3u8 --output "[2013] [Session 603] Getting the Most Out of Web Inspector.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/604xfx2xl2ujhx7vffbjmtqu2t/604/ipad_c.m3u8 --output "[2013] [Session 604] Introducing iAd Workbench, The Best Way to Market Your App.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/605xfx2xbot31cme1uns8w647vsw/605/ipad_c.m3u8 --output "[2013] [Session 605] What’s New in iBooks Author.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/606xdx2xbp31zp28fdov8p0b6d/606/ipad_c.m3u8 --output "[2013] [Session 606] Moving to AV Kit and AV Foundation.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/607xfx3xox1jscc7z24fl2jf4mf/607/ipad_c.m3u8 --output "[2013] [Session 607] Power and Performance - Optimizing Your Website for Great Battery Life and Responsive Scrolling.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/608xcx3xafjdvmnjpo5dzvou97r/608/ipad_c.m3u8 --output "[2013] [Session 608] Preparing and Presenting Media for Accessibility.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/609xfx3xpwcil5bz8h6ot4f871/609/ipad_c.m3u8 --output "[2013] [Session 609] Introduction to iBooks Author Widget and iAd Rich Media Ad Development with iAd Producer 4.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/610xcx3xv9xjy916g3wzes0ze63/610/ipad_c.m3u8 --output "[2013] [Session 610] What’s New in Camera Capture.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/611xfx3x2l2zzkb2oaovson/611/ipad_c.m3u8 --output "[2013] [Session 611] Building Advanced iBooks HTML 5 Widgets and iAd Rich Media Ads.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/612xax4xx65z1ervy5np1qb/612/ipad_c.m3u8 --output "[2013] [Session 612] Advanced Editing with AV Foundation.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/613xfx4xp91m26w7iu790d3nx/613/ipad_c.m3u8 --output "[2013] [Session 613] iAd Integration and Best Practices.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/614xax5x602jmihlq4c4edtrl/614/ipad_c.m3u8 --output "[2013] [Session 614] Implementing OS X Push Notifications for Websites.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/615xax5xpcdns8jyhaiszkz2p/615/ipad_c.m3u8 --output "[2013] [Session 615] Integrating JavaScript into Native Apps.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/700xcx2xuedgs1rni4qry1yumg/700/ipad_c.m3u8 --output "[2013] [Session 700] Designing Accessories for iOS and OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/701xbx2xqblo39z6tpbdrcz/701/ipad_c.m3u8 --output "[2013] [Session 701] Maximizing Battery Life on OS X.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/702xfx2xmlrics5pyrjfwu2m/702/ipad_c.m3u8 --output "[2013] [Session 702] Efficient Design with XPC.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/703xcx2xljtlq481grxurla4/703/ipad_c.m3u8 --output "[2013] [Session 703] Core Bluetooth.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/704xcx2xrmodatdtgs6nf5w4/704/ipad_c.m3u8 --output "[2013] [Session 704] Building Efficient OS X Apps.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/705xbx3xcjsmrdbtwl5grta6gq6r/705/ipad_c.m3u8 --output "[2013] [Session 705] What’s New in Foundation Networking.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/707xfx3xysb4yyrvtxbbu6t9fono/707/ipad_c.m3u8 --output "[2013] [Session 707] What’s New in Kext Development.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/708xbx3x7xusbzidl0j3acxest/708/ipad_c.m3u8 --output "[2013] [Session 708] Nearby Networking with Multipeer Connectivity.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/709xax3xiafkagts5jfa5705dx6/709/ipad_c.m3u8 --output "[2013] [Session 709] Protecting Secrets with the Keychain.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/710xfx3xn8197k4i9s2rvyb/710/ipad_c.m3u8 --output "[2013] [Session 710] A Practical Guide to the App Sandbox.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/711xcx4x8yuutk8sady6t9f/711/ipad_c.m3u8 --output "[2013] [Session 711] Advances in AirPrint.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/712xax4xb4mh6prvqkesmm75/712/ipad_c.m3u8 --output "[2013] [Session 712] Energy Best Practices.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/713xcx4xtaue02i1tvk0kpvarvo/713/ipad_c.m3u8 --output "[2013] [Session 713] The Accelerate Framework.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2013/714xbx5xcen10zkjl5f9sd8ys63/714/ipad_c.m3u8 --output "[2013] [Session 714] Protecting your Users’ Privacy.mp4"
https://devstreaming-cdn.apple.com/videos/wwdc/2014/101xx36lr6smzjo/101/101_hd.mov?dl=1
out=[2014] [Session 101] Keynote.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/102xxw2o82y78a4/102/102_hd_platforms_state_of_the_union.mov?dl=1
out=[2014] [Session 102] Platforms State of the Union.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/103xx8s53gk94hl/103/103_hd_apple_design_awards.mov?dl=1
out=[2014] [Session 103] Apple Design Awards.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/201xx2xfazhzce8/201/201_hd_advanced_topics_in_internationalization.mov?dl=1
out=[2014] [Session 201] Advanced Topics in Internationalization.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/202xx3ane09vxdz/202/202_hd_whats_new_in_cocoa_touch.mov?dl=1
out=[2014] [Session 202] What's New in Cocoa Touch.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/203xxh9oqtm0piw/203/203_hd_introducing_healthkit.mov?dl=1
out=[2014] [Session 203] Introducing HealthKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/204xxhe1lli87dm/204/204_hd_whats_new_in_cocoa.mov?dl=1
out=[2014] [Session 204] What's New in Cocoa.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/205xxqzduadzo14/205/205_hd_creating_extensions_for_ios_and_os_x,_part_1.mov?dl=1
out=[2014] [Session 205] Creating Extensions for iOS and_OS X, Part 1.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/206xxdiurnffagr/206/206_hd_introducing_the_modern_webkit_api.mov?dl=1
out=[2014] [Session 206] Introducing the Modern WebKit API.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/207xx270npvffao/207/207_hd_accessibility_on_os_x.mov?dl=1
out=[2014] [Session 207] Accessibility on OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/208xx42tf0hw3vv/208/208_hd_introducing_cloudkit.mov?dl=1
out=[2014] [Session 208] Introducing CloudKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/209xxbyg01mfqt8/209/209_hd_adapting_your_app_to_the_new_ui_of_os_x_yosemite.mov?dl=1
out=[2014] [Session 209] Adapting Your App to the New UI of OS X Yosemite.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/210xxksa9s9ewsa/210/210_hd_accessibility_on_ios.mov?dl=1
out=[2014] [Session 210] Accessibility on iOS.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/211xxmyz80g30i9/211/211_hd_designing_intuitive_user_experiences.mov?dl=1
out=[2014] [Session 211] Designing Intuitive User Experiences.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/212xxi1kzzkdr54/212/212_hd_storyboards_and_controllers_on_os_x.mov?dl=1
out=[2014] [Session 212] Storyboards and Controllers on OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/213xxbmca4in9u5/213/213_hd_introducing_homekit.mov?dl=1
out=[2014] [Session 213] Introducing HomeKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/214xxq2mdbtmp23/214/214_hd_view_controller_advancements_in_ios_8.mov?dl=1
out=[2014] [Session 214] View Controller Advancements in iOS 8.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/216xxcnxc6wnkf3/216/216_hd_building_adaptive_apps_with_uikit.mov?dl=1
out=[2014] [Session 216] Building Adaptive Apps with UIKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/217xxsvxdga3rh5/217/217_hd_creating_extensions_for_ios_and_os_x_part_2.mov?dl=1
out=[2014] [Session 217] Creating Extensions for iOS and OS X, Part 2.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/218xx267rleu4n8/218/218_hd_designing_a_great_in-app_purchase_experience.mov?dl=1
out=[2014] [Session 218] Designing a Great In-App Purchase Experience.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/219xxebl6quoz05/219/219_hd_adopting_handoff_on_ios_and_os_x.mov?dl=1
out=[2014] [Session 219] Adopting Handoff on iOS and OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/220xx01yweszmjv/220/220_hd_adopting_advanced_features_of_the_new_ui_of_os_x_yosemite.mov?dl=1
out=[2014] [Session 220] Adopting Advanced Features of the New UI of OS X Yosemite.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/221xxobzcm2j26x/221/221_hd_creating_custom_ios_user_interfaces.mov?dl=1
out=[2014] [Session 221] Creating Custom iOS User Interfaces.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/222xxz9991l36ro/222/222_hd_optimize_your_earning_power_with_iad.mov?dl=1
out=[2014] [Session 222] Optimize Your Earning Power with iAd.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/223xxp1uag2jn3n/223/223_hd_prototyping_fake_it_till_you_make_it.mov?dl=1
out=[2014] [Session 223] Prototyping - Fake It Till You Make It.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/224xxxlsvigdoc0/224/224_hd_core_os_ios_application_architectural_patterns.mov?dl=1
out=[2014] [Session 224] Core iOS Application Architectural Patterns.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/225xxgzhqylosff/225/225_hd_whats_new_in_core_data.mov?dl=1
out=[2014] [Session 225] What's New in Core Data.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/226xxf6phq7ufzl/226/226_hd_whats_new_in_table_and_collection_views.mov?dl=1
out=[2014] [Session 226] What's New in Table and Collection Views.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/227xx1g0sa1mhjf/227/227_hd_creating_modern_cocoa_apps.mov?dl=1
out=[2014] [Session 227] Creating Modern Cocoa Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/228xxnfgueiskhi/228/228_hd_a_look_inside_presentation_controllers.mov?dl=1
out=[2014] [Session 228] A Look Inside Presentation Controllers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/229xx77tq0pmkwo/229/229_hd_advanced_ios_architecture_and_patterns.mov?dl=1
out=[2014] [Session 229] Advanced iOS Architecture and Patterns.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/230xxe44dq1m2da/230/230_hd_making_a_great_first_impression_with_strong_onboarding_design.mov?dl=1
out=[2014] [Session 230] Making a Great First Impression with Strong Onboarding Design.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/231xx9bil1zgee7/231/231_hd_advanced_cloudkit.mov?dl=1
out=[2014] [Session 231] Advanced CloudKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/232xxz8gxpbstio/232/232_hd_advanced_user_interfaces_with_collection_views.mov?dl=1
out=[2014] [Session 232] Advanced User Interfaces with Collection Views.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/233xxwktnowwj0u/233/233_hd_sharing_code_between_ios_and_os_x.mov?dl=1
out=[2014] [Session 233] Sharing Code Between iOS and OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/234xxi5cismq5hn/234/234_hd_building_a_document_based_app.mov?dl=1
out=[2014] [Session 234] Building A Document-Based App.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/235xxsugqo8pxak/235/235_hd_advanced_scrollviews_and_touch_handling_techniques.mov?dl=1
out=[2014] [Session 235] Advanced Scroll Views and Touch Handling Techniques.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/236xxwk3fv82sx2/236/236_hd_building_interruptible_and_responsive_interactions.mov?dl=1
out=[2014] [Session 236] Building Interruptible and Responsive Interactions.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/237xxcyp7vhx2xt/237/237_hd_a_strategy_for_great_work.mov?dl=1
out=[2014] [Session 237] A Strategy for Great Work.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/301xxu0xo3hhg9h/301/301_hd_affiliate_tools_for_app_developers.mov?dl=1
out=[2014] [Session 301] Affiliate Tools for App Developers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/302xxo8xxixuera/302/302_hd_the_new_itunes_connect.mov?dl=1
out=[2014] [Session 302] The New iTunes Connect.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/303xxqw0yb14u0r/303/303_hd_optimizing_in-app_purchases.mov?dl=1
out=[2014] [Session 303] Optimizing In-App Purchases.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/305xxjjl70ix0y1/305/305_hd_preventing_unauthorized_purchases_with_receipts.mov?dl=1
out=[2014] [Session 305] Preventing Unauthorized Purchases with Receipts.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/304xxc65wjxydj8/304/304_hd_creating_great_app_previews.mov?dl=1
out=[2014] [Session 304] Creating Great App Previews.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/306xxjtg7uz13v0/306/306_hd_javascript_for_automation.mov?dl=1
out=[2014] [Session 306] JavaScript for Automation.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/401xxfkzfrjyb93/401/401_hd_whats_new_in_xcode_6.mov?dl=1
out=[2014] [Session 401] What's New in Xcode 6.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/402xxgg8o88ulsr/402/402_hd_introduction_to_swift.mov?dl=1
out=[2014] [Session 402] Introduction to Swift.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/403xxksrj0qs8c0/403/403_hd_intermediate_swift.mov?dl=1
out=[2014] [Session 403] Intermediate Swift.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/404xxdxsstkaqjb/404/404_hd_advanced_swift.mov?dl=1
out=[2014] [Session 404] Advanced Swift.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/406xxssvkspk997/406/406_hd_integrating_swift_with_objective_c.mov?dl=1
out=[2014] [Session 406] Integrating Swift with Objective-C.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/407xxptt888z5jv/407/407_hd_swift_interoperability_in_depth.mov?dl=1
out=[2014] [Session 407] Swift Interoperability in Depth.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/408xxcm26svis12/408/408_hd_swift_playgrounds.mov?dl=1
out=[2014] [Session 408] Swift Playgrounds.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/409xxfw34pado34/409/409_hd_introduction_to_lldb_and_the_swift_repl.mov?dl=1
out=[2014] [Session 409] Introduction to LLDB and the Swift REPL.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/410xx1s19e83i5z/410/410_hd_advanced_swift_debugging_in_lldb.mov?dl=1
out=[2014] [Session 410] Advanced Swift Debugging in LLDB.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/411xx0xo98zzoor/411/411_hd_whats_new_in_interface_builder.mov?dl=1
out=[2014] [Session 411] What's New in Interface Builder.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/412xx80au1lrfcn/412/412_hd_localizing_with_xcode_6.mov?dl=1
out=[2014] [Session 412] Localizing with Xcode 6.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/413xxr7gdc60u2p/413/413_hd_debugging_in_xcode_6.mov?dl=1
out=[2014] [Session 413] Debugging in Xcode 6.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/414xx4l5du0f408/414/414_hd_testing_in_xcode_6.mov?dl=1
out=[2014] [Session 414] Testing in Xcode 6.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/415xx83xkyr55fj/415/415_hd_continuous_integration_with_xcode_6.mov?dl=1
out=[2014] [Session 415] Continuous Integration with Xcode 6.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/416xxuit620s53g/416/416_hd_building_modern_frameworks.mov?dl=1
out=[2014] [Session 416] Building Modern Frameworks.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/417xx2zsyyp8zcs/417/417_hd_whats_new_in_llvm.mov?dl=1
out=[2014] [Session 417] What's New in LLVM.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/418xxtihju1a7v4/418/418_hd_improving_your_app_with_instruments.mov?dl=1
out=[2014] [Session 418] Improving Your App with Instruments.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/419xxli6f60a6bs/419/419_hd_advanced_graphics_and_animation_performance.mov?dl=1
out=[2014] [Session 419] Advanced Graphics and Animation Performance.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/501xxfo4d68h054/501/501_hd_whats_new_in_core_audio.mov?dl=1
out=[2014] [Session 501] What's New in Core Audio.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/502xxvo7vov799k/502/502_hd_avaudioengine_in_practice.mov?dl=1
out=[2014] [Session 502] AVAudioEngine in Practice.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/503xx50xm4n63qe/503/503_hd_mastering_modern_media_playback.mov?dl=1
out=[2014] [Session 503] Mastering Modern Media Playback.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/504xx5n1n7eie65/504/504_hd_advanced_media_for_the_web.mov?dl=1
out=[2014] [Session 504] Advanced Media for the Web.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/505xx5j7n7h3a1q/505/505_hd_harnessing_metadata_in_audiovisual_media.mov?dl=1
out=[2014] [Session 505] Harnessing Metadata in Audiovisual Media.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/506xxeo80e5kykp/506/506_hd_ensuring_continuity_between_your_app_and_web_site.mov?dl=1
out=[2014] [Session 506] Ensuring Continuity Between Your App, WebSite and Safari.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/508xxfvaehrll14/508/508_hd_camera_capture_manual_controls.mov?dl=1
out=[2014] [Session 508] Camera Capture Manual Controls.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/509xxwli42i4gs6/509/509_hd_creating_3d_interactive_content_with_webgl.mov?dl=1
out=[2014] [Session 509] _Creating 3D Interactive Content with WebGL.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/510xx6yeo9go0lo/510/510_hd_whats_new_in_iad_workbench.mov?dl=1
out=[2014] [Session 510] What's New in iAd Workbench.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/511xxegx4yyhbt9/511/511_hd_introducing_the_photos_frameworks.mov?dl=1
out=[2014] [Session 511] Introducing the Photos Frameworks.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/512xxj53iuolu78/512/512_hd_web_inspector_and_modern_javascript.mov?dl=1
out=[2014] [Session 512] Web Inspector and Modern JavaScript.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/513xxhfudagscto/513/513_hd_direct_access_to_media_encoding_and_decoding.mov?dl=1
out=[2014] [Session 513] Direct Access to Media Encoding and Decoding.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/514xxio5buvlu16/514/514_hd_advances_in_core_image.mov?dl=1
out=[2014] [Session 514] Advances in Core Image.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/515xxv01d9tcg3o/515/515_hd_developing_core_image_filters_for_ios.mov?dl=1
out=[2014] [Session 515] Developing Core Image Filters for iOS.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/516xxanja9ziaar/516/516_hd_improving_the_accessibility_and_usability_of_complex_web_applications.mov?dl=1
out=[2014] [Session 516] Improving the Accessibility and Usability of Complex Web Applications.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/517xxlpmjgeqazd/517/517_hd_designing_responsive_web_experiences.mov?dl=1
out=[2014] [Session 517] Designing Responsive Web Experiences.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/601xxu3eg5ttkcj/601/601_hd_harnessing_the_power_of_the_mac_pro_with_opengl_and_opencl.mov?dl=1
out=[2014] [Session 601] Harnessing the Power of the Mac Pro with OpenGL and OpenCL.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/602xx0qpmdkc2ki/602/602_hd_ingredients_of_great_games.mov?dl=1
out=[2014] [Session 602] Ingredients of Great Games.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/603xx33n8igr5n1/603/603_hd_working_with_metal_overview.mov?dl=1
out=[2014] [Session 603] Working with Metal - Overview.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/604xxg7crkljcr8/604/604_hd_working_with_metal_fundamentals.mov?dl=1
out=[2014] [Session 604] Working with Metal - Fundamentals.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/605xxygcz4pd0h6/605/605_hd_working_with_metal_advanced.mov?dl=1
out=[2014] [Session 605] Working with Metal - Advanced.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/606xxql3qoibema/606/606_hd_whats_new_in_sprite_kit.mov?dl=1
out=[2014] [Session 606] What's New in SpriteKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/608xx0tzmkcqkrn/608/608_hd_best_practices_for_building_spritekit_games.mov?dl=1
out=[2014] [Session 608] Best Practices for Building SpriteKit Games.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/609xxkxq1v95fju/609/609_hd_whats_new_in_scenekit.mov?dl=1
out=[2014] [Session 609] What's New in SceneKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/610xxc04fgmv80x/610/610_hd_building_a_game_with_scenekit.mov?dl=1
out=[2014] [Session 610] Building a Game with SceneKit.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/611xxblieag1z2a/611/611_hd_designing_for_game_controllers.mov?dl=1
out=[2014] [Session 611] Designing for Game Controllers.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/612xxnsoq5fis79/612/612_hd_motion_tracking_with_the_core_motion_framework.mov?dl=1
out=[2014] [Session 612] Motion Tracking with the Core Motion Framework.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/701xx8n8ca3aq4j/701/701_hd_designing_accessories_for_ios_and_os_x.mov?dl=1
out=[2014] [Session 701] Designing Accessories for iOS and OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/702xxvsjwkmhw2e/702/702_hd_managing_apple_devices.mov?dl=1
out=[2014] [Session 702] Managing Apple Devices.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/703xx9ich9e8mkn/703/703_hd_whats_new_in_the_accelerate_framework.mov?dl=1
out=[2014] [Session 703] What's New in the Accelerate Framework.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/704xx7dmqd5m9l4/704/704_hd_building_apps_for_enterprise_and_education.mov?dl=1
out=[2014] [Session 704] Building Apps for Enterprise and Education.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/705xx0r0x0fsaf5/705/705_hd_distributing_enterprise_apps.mov?dl=1
out=[2014] [Session 705] Distributing Enterprise Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/706xxjytntg51wd/706/706_hd_whats_new_in_core_location.mov?dl=1
out=[2014] [Session 706] What's New in Core Location.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/707xx1o5tdjnvg9/707/707_hd_whats_new_in_foundation_networking.mov?dl=1
out=[2014] [Session 707] What's New in Foundation Networking.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/708xxvfd08bdof2/708/708_hd_taking_core_location_indoors.mov?dl=1
out=[2014] [Session 708] Taking Core Location Indoors.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/709xx1q8hdvo14x/709/709_hd_cross_platform_nearby_networking.mov?dl=1
out=[2014] [Session 709] Cross Platform Nearby Networking.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/710xxwwk9jiqtu2/710/710_hd_writing_energy_efficient_code_part_1.mov?dl=1
out=[2014] [Session 710] Writing Energy Efficient Code, Part 1.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/711xx6j5wzufu78/711/711_hd_keychain_and_authentication_with_touch_id.mov?dl=1
out=[2014] [Session 711] Keychain and Authentication with Touch ID.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/712xx1pl2u942g2/712/712_hd_writing_energy_efficient_code_part_2.mov?dl=1
out=[2014] [Session 712] Writing Energy Efficient Code, Part 2.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/713xx1il4h4ur9c/713/713_hd_whats_new_in_ios_notifications.mov?dl=1
out=[2014] [Session 713] What's New in iOS Notifications.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/714xx1h4szxdnyz/714/714_hd_fix_bugs_faster_using_activity_tracing.mov?dl=1
out=[2014] [Session 714] Fix Bugs Faster using Activity Tracing.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/715xx4loqo5can9/715/715_hd_user_privacy_in_ios_and_os_x.mov?dl=1
out=[2014] [Session 715] User Privacy in iOS and OS X.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/716xx8q4shlqcp8/716/716_hd_power_performance_and_diagnostics_whats_new_in_gcd_and_xpc_for.mov?dl=1
out=[2014] [Session 716] Power, Performance and Diagnostics - What's New in GCD and XPC.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/717xxux5eg6f9v4/717/717_hd_kids_and_apps.mov?dl=1
out=[2014] [Session 717] Kids and Apps.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2014/718xxctf8ley20j/718/718_hd_adopting_airprint.mov?dl=1
out=[2014] [Session 718] Adopting Airprint.mov
https://devstreaming-cdn.apple.com/videos/wwdc/2015/1014o78qhj07pbfxt9g7/101/101_hd_keynote.mp4?dl=1
out=[2015] [Session 101] Keynote.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/1026npwuy2crj2xyuq11/102/102_hd_platforms_state_of_the_union.mp4?dl=1
out=[2015] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/103ot7lzkdri2fvn1iyh/103/103_hd_apple_design_awards.mp4?dl=1
out=[2015] [Session 103] Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/104usewvb5m0qbwafx8p/104/104_hd_whats_new_in_xcode.mp4?dl=1
out=[2015] [Session 104] What's New in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/105ncyldc6ofunvsgtan/105/105_hd_introducing_watchkit_for_watchos_2.mp4?dl=1
out=[2015] [Session 105] Introducing WatchKit for WatchOS 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/106z3yjwpfymnauri96m/106/106_hd_whats_new_in_swift.mp4?dl=1
out=[2015] [Session 106] What's New in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/1075hpxmc54818sn59su/107/107_hd_whats_new_in_cocoa_touch.mp4?dl=1
out=[2015] [Session 107] What's New in Cocoa Touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/1086gvs7f4vryixs49s6/108/108_hd_building_watch_apps.mp4?dl=1
out=[2015] [Session 108] Building Watch Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/201pps6n6g0nsnz/201/201_hd_ios_accessibility.mp4?dl=1
out=[2015] [Session 201] iOS Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2023wpov1sxpnf9/202/202_hd_whats_new_in_cocoa.mp4?dl=1
out=[2015] [Session 202] What's New in Cocoa.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/203bxvbtrom9t1t/203/203_hd_whats_new_in_healthkit.mp4?dl=1
out=[2015] [Session 203] What's New in HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2048w4vdjhe1i1m/204/204_hd_apple_watch_accessibility.mp4?dl=1
out=[2015] [Session 204] Apple Watch Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2058z3fx76huw93/205/205_hd_getting_started_with_multitasking_on_ipad_in_ios_9.mp4?dl=1
out=[2015] [Session 205] Getting Started with Multitasking on iPad in iOS 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/206v5ce46maax7s/206/206_hd_whats_new_in_mapkit.mp4?dl=1
out=[2015] [Session 206] What's New in MapKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/207id8oiaxrt6lh/207/207_hd_watchkit_indepth_part_1.mp4?dl=1
out=[2015] [Session 207] WatchKit In-Depth, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/208wc2mdvock1md/208/208_hd_watchkit_indepth_part_2.mp4?dl=1
out=[2015] [Session 208] WatchKit In-Depth, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/209c9277tttlt9/209/209_hd_creating_complications_with_clockkit.mp4?dl=1
out=[2015] [Session 209] Creating Complications with ClockKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/210oyq5peqlavb/210/210_hd_whats_new_in_homekit.mp4?dl=1
out=[2015] [Session 210] What's New in HomeKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/211dseo3cn0bnw/211/211_hd_multitasking_essentials_for_mediabased_apps_on_ipad_in_ios_9.mp4?dl=1
out=[2015] [Session 211] Multitasking Essentials for Media-Based Apps on iPad in iOS 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/212mm5ra3oau66/212/212_hd_optimizing_your_app_for_multitasking_on_ipad_in_ios_9.mp4?dl=1
out=[2015] [Session 212] Optimizing Your App for Multitasking on iPad in iOS 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/213w6grumlfm0q/213/213_hd_building_apps_with_researchkit.mp4?dl=1
out=[2015] [Session 213] Building Apps with ResearchKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/214dh5q5d0kswh/214/214_hd_introducing_on_demand_resources.mp4?dl=1
out=[2015] [Session 214] Introducing On Demand Resources.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/215972d0hjjcfx/215/215_hd_whats_new_in_storyboards.mp4?dl=1
out=[2015] [Session 215] What's New in Storyboards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/216isrjt4ku9w4/216/216_hd_layout_and_animation_techniques_for_watchkit.mp4?dl=1
out=[2015] [Session 216] Layout and Animation Techniques for WatchKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/217wu453thu1r1/217/217_hd_adopting_new_trackpad_features.mp4?dl=1
out=[2015] [Session 217] Adopting New Trackpad Features.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2187le7kpyhdff/218/218_hd_mysteries_of_auto_layout_part_1.mp4?dl=1
out=[2015] [Session 218] Mysteries of Auto Layout, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/219u3bqgvsz2g/219/219_hd_mysteries_of_auto_layout_part_2.mp4?dl=1
out=[2015] [Session 219] Mysteries of Auto Layout, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/220lgx5lvphj2/220/220_hd_whats_new_in_core_data.mp4?dl=1
out=[2015] [Session 220] What's New in Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/22160ycymy0qg/221/221_hd_improving_the_full_screen_window_experience.mp4?dl=1
out=[2015] [Session 221] Improving the Full Screen Window Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/222ngkqh58b52/222/222_hd_new_uikit_support_for_international_user_interfaces.mp4?dl=1
out=[2015] [Session 222] New UIKit Support for International User Interfaces.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/223rmo6dv9hxh/223/223_hd_introducing_the_contacts_framework_for_ios_and_os_x.mp4?dl=1
out=[2015] [Session 223] Introducing the Contacts Framework for iOS and OS X.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/224o6pqmtb4ik/224/224_hd_app_extension_best_practices.mp4?dl=1
out=[2015] [Session 224] App Extension Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/225629tzulwe0/225/225_hd_whats_new_in_nscollectionview.mp4?dl=1
out=[2015] [Session 225] What's New in NSCollectionView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2267p2ni281ba/226/226_hd_advanced_nsoperations.mp4?dl=1
out=[2015] [Session 226] Advanced NSOperations.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/227s0ti458qgg/227/227_hd_whats_new_in_internationalization.mp4?dl=1
out=[2015] [Session 227] What's New in Internationalization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/228eahxjbaops/228/228_hd_watchkit_tips_and_tricks.mp4?dl=1
out=[2015] [Session 228] WatchKit Tips and Tricks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/229fksrj39nd/229/229_hd_whats_new_in_uikit_dynamics_and_visual_effects.mp4?dl=1
out=[2015] [Session 229] What's New in UIKit Dynamics and Visual Effects.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/230wt8hs0wt8/230/230_hd_performance_on_ios_and_watchos.mp4?dl=1
out=[2015] [Session 230] Performance on iOS and WatchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/2313dt427pmq/231/231_hd_cocoa_touch_best_practices.mp4?dl=1
out=[2015] [Session 231] Cocoa Touch Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/232f1zopzycv/232/232_hd_best_practices_for_progress_reporting.mp4?dl=1
out=[2015] [Session 232] Best Practices for Progress Reporting.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/233l9q8hj9mw/233/233_hd_advanced_touch_input_on_ios.mp4?dl=1
out=[2015] [Session 233] Advanced Touch Input on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/234reaz1byqc/234/234_hd_building_document_based_apps.mp4?dl=1
out=[2015] [Session 234] Building Document-Based Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/301tcfp66f/301/301_hd_whats_new_in_managing_apple_devices.mp4?dl=1
out=[2015] [Session 301] What's New in Managing Apple Devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/302sxabxp0/302/302_hd_whats_new_in_itunes_connect.mp4?dl=1
out=[2015] [Session 302] What's New in iTunes Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/303qzm09e7/303/303_hd_getting_the_most_out_of_app_analytics.mp4?dl=1
out=[2015] [Session 303] Getting the Most out of App Analytics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/304ywrr62d/304/304_hd_itunes_connect_development_to_distribution.mp4?dl=1
out=[2015] [Session 304] iTunes Connect Development to Distribution.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/306vjwcqnm/306/306_hd_supporting_the_enterprise_with_os_x_automation.mp4?dl=1
out=[2015] [Session 306] Supporting the Enterprise with OS X Automation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/401gee20yy5v2men/401/401_hd_swift_and_objectivec_interoperability.mp4?dl=1
out=[2015] [Session 401] Swift and Objective-C Interoperability.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/402c0mhxbs8tt52t/402/402_hd_whats_new_in_lldb.mp4?dl=1
out=[2015] [Session 402] What's New in LLDB.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/403l7ohdidhmnkgx/403/403_hd_improving_your_existing_apps_with_swift.mp4?dl=1
out=[2015] [Session 403] Improving Your Existing Apps with Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/404l17yio30l549x/404/404_hd_app_thinning_in_xcode.mp4?dl=1
out=[2015] [Session 404] App Thinning in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/405t69ymgwkmfzc9/405/405_hd_authoring_rich_playgrounds.mp4?dl=1
out=[2015] [Session 405] Authoring Rich Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/406o0doszwo8r15m/406/406_hd_ui_testing_in_xcode.mp4?dl=1
out=[2015] [Session 406] UI Testing in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/4072909wwb9o9j3/407/407_hd_implementing_ui_designs_in_interface_builder.mp4?dl=1
out=[2015] [Session 407] Implementing UI Ddesigns in Interface Builder.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/408509vyudbqvts/408/408_hd_protocoloriented_programming_in_swift.mp4?dl=1
out=[2015] [Session 408] Protocol-Oriented Programming in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/4097c25o0qhs6g5/409/409_hd_optimizing_swift_performance.mp4?dl=1
out=[2015] [Session 409] Optimizing Swift Performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/41097fby32x3opk/410/410_hd_continuous_integration_and_code_coverage_in_xcode.mp4?dl=1
out=[2015] [Session 410] Continuous Integration and Code Coverage in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/4119flfsnsgmlfy/411/411_hd_swift_in_practice.mp4?dl=1
out=[2015] [Session 411] Swift in Practice.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/412rhea5amj6iaf/412/412_hd_profiling_in_depth.mp4?dl=1
out=[2015] [Session 412] Profiling in Depth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/413eflf3lrh1tyo/413/413_hd_advanced_debugging_and_the_address_sanitizer.mp4?dl=1
out=[2015] [Session 413] Advanced Debugging and the Address Sanitizer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/414sklk5h2k3ki3/414/414_hd_building_better_apps_with_value_types_in_swift.mp4?dl=1
out=[2015] [Session 414] Building Better Apps with Value Types in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/501g8vwlgg2/501/501_hd_whats_new_in_web_development_in_webkit_and_safari.mp4?dl=1
out=[2015] [Session 501] What's New in Web Development in WebKit and Safari.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/502sufwcpog/502/502_hd_content_protection_for_http_live_streaming.mp4?dl=1
out=[2015] [Session 502] Content Protection for HTTP Live Streaming.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/503oad8l55m/503/503_hd_monetize_and_promote_your_app_with_iad.mp4?dl=1
out=[2015] [Session 503] Monetize and Promote Your App with iAd.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/5048tyhotl6/504/504_hd_introducing_safari_view_controller.mp4?dl=1
out=[2015] [Session 504] Introducing Safari View Controller.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/5059xl75l59/505/505_hd_using_safari_to_deliver_and_debug_a_responsive_web_design.mp4?dl=1
out=[2015] [Session 505] Using Safari to Deliver and Debug a Responsive Web Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/5062qehwhs/506/506_hd_editing_movies_in_av_foundation.mp4?dl=1
out=[2015] [Session 506] Editing Movies in AVFoundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/507pq8rldk/507/507_hd_whats_new_in_core_audio.mp4?dl=1
out=[2015] [Session 507] What's New in Core Audio.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/508691kyzp/508/508_hd_audio_unit_extensions.mp4?dl=1
out=[2015] [Session 508] Audio Unit Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/5091mxk00t/509/509_hd_seamless_linking_to_your_app.mp4?dl=1
out=[2015] [Session 509] Seamless Linking to Your App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/510jiccqsz/510/510_hd_whats_new_in_core_image.mp4?dl=1
out=[2015] [Session 510] What's New in Core Image.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/511kmynuza/511/511_hd_safari_extensibility_content_blocking_and_shared_links.mp4?dl=1
out=[2015] [Session 511] Safari Extensibilily Content Blocking and Shared Links.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/602868pb0ow6idb3w/602/602_hd_managing_3d_assets_with_model_io.mp4?dl=1
out=[2015] [Session 602] Managing 3D Assets with Model IO.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/6037pi9rxl6tfss8w/603/603_hd_whats_new_in_metal_part_1.mp4?dl=1
out=[2015] [Session 603] What' New in Metal, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/604gq12qghmv39znb/604/604_hd_whats_new_in_spritekit.mp4?dl=1
out=[2015] [Session 604] What's New in SpriteKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/6053hq2fz0ebo0lm/605/605_hd_going_social_with_replaykit_and_game_center.mp4?dl=1
out=[2015] [Session 605] Going Social with ReplayKit and Game Center.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/606ui2ppsvalj4nn/606/606_hd_enhancements_to_scenekit.mp4?dl=1
out=[2015] [Session 606] Enhancements to SceneKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/607g5z16fpl7pzgi/607/607_hd_whats_new_in_metal_part_2.mp4?dl=1
out=[2015] [Session 607] What's New in Metal, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/608rpwq1ltvg5nmk/608/608_hd_introducing_gameplaykit.mp4?dl=1
out=[2015] [Session 608] Introducing GameplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/609pzlyunriyjupp/609/609_hd_deeper_into_gameplaykit_with_demobots.mp4?dl=1
out=[2015] [Session 609] Deeper into GameplayKit with DemoBots.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/610kn68riy9ms89m/610/610_hd_metal_performance_optimization_techniques.mp4?dl=1
out=[2015] [Session 610] Metal Performance Optimization Techniques.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/701i2qis0reg/701/701_hd_wallet__the_home_for_apple_pay_and_more.mp4?dl=1
out=[2015] [Session 701] Wallet - the Home for Apple Pay and More.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/702lp563ezbr/702/702_hd_apple_pay_within_apps.mp4?dl=1
out=[2015] [Session 702] Apple Pay Within Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/703kp2dwbwkr/703/703_hd_privacy_and_your_app.mp4?dl=1
out=[2015] [Session 703] Privacy and Your App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/704ci202euy/704/704_hd_whats_new_in_cloudkit.mp4?dl=1
out=[2015] [Session 704] Whats New in CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/705qrxhfxo0/705/705_hd_whats_new_in_core_motion.mp4?dl=1
out=[2015] [Session 705] What's New in Core Motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/706nu20qkag/706/706_hd_security_and_your_apps.mp4?dl=1
out=[2015] [Session 706] Security and Your Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/707ysegpumy/707/707_hd_achieving_allday_battery_life.mp4?dl=1
out=[2015] [Session 707] Achieving All-day Battery Life.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/708xzs0dtwx/708/708_hd_debugging_energy_issues.mp4?dl=1
out=[2015] [Session 708] Debugging Energy Issues.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/709jcaer6su/709/709_hd_introducing_search_apis.mp4?dl=1
out=[2015] [Session 709] Introducing Search APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/710jle9eakx/710/710_hd_cloudkit_js_and_web_services.mp4?dl=1
out=[2015] [Session 710] CloudKit JS and Web Services.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/711y6zlz0ll/711/711_hd_networking_with_nsurlsession.mp4?dl=1
out=[2015] [Session 711] Networking with NSURLSession.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/7125ovmdf36/712/712_hd_low_energy_high_performance_compression_and_accelerate.mp4?dl=1
out=[2015] [Session 712] Low Energy, High Performance - Compression and Accelerate.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/713gc2tqvvb/713/713_hd_introducing_watch_connectivity.mp4?dl=1
out=[2015] [Session 713] Introducing Watch Connectivity.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/714tqy593v/714/714_hd_whats_new_in_core_location.mp4?dl=1
out=[2015] [Session 714] What's New in Core Location.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/7153rwmu2r/715/715_hd_cloudkit_tips_and_tricks.mp4?dl=1
out=[2015] [Session 715] CloudKit Tips and Tricks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/717yq4y85w/717/717_hd_whats_new_in_network_extension_and_vpn.mp4?dl=1
out=[2015] [Session 717] What's New in Network Extension and VPN.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/718b7aw9tq/718/718_hd_building_responsive_and_efficient_apps_with_gcd.mp4?dl=1
out=[2015] [Session 718] Building Responsive and Efficient Apps with GCD.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/719ui2k57m/719/719_hd_your_app_and_next_generation_networks.mp4?dl=1
out=[2015] [Session 719] Your App and Next Generation Networks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/720xwbi9nl/720/720_hd_whats_new_in_notifications.mp4?dl=1
out=[2015] [Session 720] What's New in Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/801auxyvb1pgtkufjk/801/801_hd_designing_for_future_hardware.mp4?dl=1
out=[2015] [Session 801] Designing for Future Hardware.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/802mpzd3nzovlygpbg/802/802_hd_designing_for_apple_watch.mp4?dl=1
out=[2015] [Session 802] Designing for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/803q4kw6eqia7ssp17/803/803_hd_designing_with_animation.mp4?dl=1
out=[2015] [Session 803] Designing with Animation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/804eub264zh3x4j9yb/804/804_hd_introducing_the_new_system_fonts.mp4?dl=1
out=[2015] [Session 804] Introducing the New System Fonts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2015/805yjy11epjkgmnn11/805/805_hd_apple_watch_design_tips_and_tricks.mp4?dl=1
out=[2015] [Session 805] Apple Watch Design Tips and Tricks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/101g0jrsvv5qcoduisk/101/101_hd_keynote.mp4?dl=1
out=[2016] [Session 101] Keynote.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/102w0bsn0ge83qfv7za/102/102_hd_platforms_state_of_the_union.mp4?dl=1
out=[2016] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/103m0752oxdkymyk6gy/103/103_hd_apple_design_awards.mp4?dl=1
out=[2016] [Session 103] Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/104b1061nbty638w2cd/104/104_hd_disability_and_innovation_the_universal_benefits_of_accessible_design.mp4?dl=1
out=[2016] [Session 104] Disability and Innovation - The Universal Benefits of Accessible Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/105o1y9n857rpjpmu27/105/105_hd_tapping_into_innovative_solutions_to_save_the_worlds_wildlife.mp4?dl=1
out=[2016] [Session 105] Tapping into Innovative Solutions to Save the World's Wildlife.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/106r1nsdtsnrih7t6id/106/106_hd_talking_in_pictures_reconstructing_the_building_blocks_of_language.mp4?dl=1
out=[2016] [Session 106] Talking In Pictures - Reconstructing the Building Blocks of Language.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/108h16qehvq9hdjuf96/108/108_hd_marvel_making_a_difference_in_the_real_world.mp4?dl=1
out=[2016] [Session 108] Marvel - Making a Difference in the Real World.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/201h1g4asm31ti2l9n1/201/201_hd_internationalization_best_practices.mp4?dl=1
out=[2016] [Session 201] Internationalization Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/202w2zhc4l8yomptqnt/202/202_hd_whats_new_in_accessibility.mp4?dl=1
out=[2016] [Session 202] What's New in Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/203x2w42att1kdzg1ce/203/203_hd_whats_new_in_cocoa.mp4?dl=1
out=[2016] [Session 203] What's New in Cocoa.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/204t23fvanrkj7a1oj7/204/204_hd_imessage_apps_and_stickers_part_1.mp4?dl=1
out=[2016] [Session 204] iMessage Apps and Stickers, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/205n2okotvilcayc8rc/205/205_hd_whats_new_in_cocoa_touch.mp4?dl=1
out=[2016] [Session 205] What's New in Cocoa Touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/206a38wgme6uponcuwd/206/206_hd_whats_new_in_tvos.mp4?dl=1
out=[2016] [Session 206] What's New in tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/207i37356qcyyh2yxos/207/207_hd_whats_new_in_foundation_for_swift.mp4?dl=1
out=[2016] [Session 207] What's New in Foundation for Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/208j30f4v1a1i9i5fg9/208/208_hd_whats_new_in_watchos_3.mp4?dl=1
out=[2016] [Session 208] What's New in watchOS 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/209e37d5ks3pfj21ij5/209/209_hd_getting_the_most_out_of_healthkit.mp4?dl=1
out=[2016] [Session 209] Getting the Most Out of HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/210e4481b1cnwor4n1q/210/210_hd_mastering_uikit_on_tvos.mp4?dl=1
out=[2016] [Session 210] Mastering UIKit on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/211m4cro5y3rrsfzfdj/211/211_hd_quick_interaction_techniques_for_watchos.mp4?dl=1
out=[2016] [Session 211] Quick Interaction Techniques for watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/212s41rh77qgdg26s86/212/212_hd_developing_tvos_apps_using_tvmlkit_part_1.mp4?dl=1
out=[2016] [Session 212] Developing tvOS Apps Using TVMLKit, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/213r47rtymgcyythv7w/213/213_hd_improving_existing_apps_with_modern_best_practices.mp4?dl=1
out=[2016] [Session 213] Improving Existing Apps with Modern Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/214b51jlndqja1bpptt/214/214_hd_extending_your_app_with_safari_app_extensions.mp4?dl=1
out=[2016] [Session 214] Extending your App with Safari App Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/215e597a1en6wrh89hm/215/215_hd_focus_interaction_on_tvos.mp4?dl=1
out=[2016] [Session 215] Focus Interaction on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/216v55u6zpxizxkml6k/216/216_hd_advances_in_uikit_animations_and_transitions.mp4?dl=1
out=[2016] [Session 216] Advances in UIKit Animations and Transitions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/217x5143f51ztsxao1u/217/217_hd_introducing_sirikit.mp4?dl=1
out=[2016] [Session 217] Introducing SiriKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/218e59uvbkp1smncrss/218/218_hd_keeping_your_watch_app_up_to_date.mp4?dl=1
out=[2016] [Session 218] Keeping Your Watch App Up to Date.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/219g66mxt0n74iogsgp/219/219_hd_whats_new_in_uicollectionview_in_ios_10.mp4?dl=1
out=[2016] [Session 219] What's New in UICollectionView in iOS 10.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/220c6lnr7wkcjewnj1g/220/220_hd_leveraging_touch_input_on_ios.mp4?dl=1
out=[2016] [Session 220] Leveraging Touch Input on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/221l723gdmjyvv5pmw7/221/221_hd_optimizing_ondemand_resources.mp4?dl=1
out=[2016] [Session 221] Optimizing On-Demand Resources.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/222l873ttj77llkzbzs/222/222_hd_making_apps_adaptive_part_1.mp4?dl=1
out=[2016] [Session 222] Making Apps Adaptive, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/223j90dqr7q1xyld1mv/223/223_hd_making_the_most_of_search_apis.mp4?dl=1
out=[2016] [Session 223] Making the Most of Search APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/224g9mui5qb06o6ukpf/224/224_hd_imessage_apps_and_stickers_part_2.mp4?dl=1
out=[2016] [Session 224] iMessage Apps and Stickers, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/225e97ww3majsu3bvt8/225/225_hd_extending_your_apps_with_sirikit.mp4?dl=1
out=[2016] [Session 225] Extending Your Apps with SiriKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/226aey4ryxex6rvqvn1/226/226_hd_whats_new_with_cloudkit.mp4?dl=1
out=[2016] [Session 226] What's New with CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/227a480gfx4hwinv5x9/227/227_hd_architecting_for_performance_on_watchos_3.mp4?dl=1
out=[2016] [Session 227] Architecting for Performance on watchOS 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/228a1kbxogojm4fviqc/228/228_hd_a_peek_at_3d_touch.mp4?dl=1
out=[2016] [Session 228] A Peek at 3D Touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/229b09xkrv3t6tdzwsu/229/229_hd_developing_tvos_apps_using_tvmlkit_part_2.mp4?dl=1
out=[2016] [Session 229] Developing tvOS Apps Using TVMLKit, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/230b83wfxc7m69dm90q/230/230_hd_enhancing_voip_apps_with_callkit.mp4?dl=1
out=[2016] [Session 230] Enhancing VoIP Apps with CallKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/231bhrh1z1fzrejhbz7/231/231_hd_cloudkit_best_practices.mp4?dl=1
out=[2016] [Session 231] CloudKit Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/232biqdny8x84wjag07/232/232_hd_whats_new_in_international_user_interfaces.mp4?dl=1
out=[2016] [Session 232] What's New in International User Interfaces.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/233c3uhytv8cxwoanja/233/233_hd_making_apps_adaptive_part_2.mp4?dl=1
out=[2016] [Session 233] Making Apps Adaptive, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/234dvn2mhmc3klk7vy4/234/234_hd_whats_new_in_researchkit.mp4?dl=1
out=[2016] [Session 234] What's New in ResearchKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/235dk9q4a4mflq2dbms/235/235_hd_building_great_workout_apps.mp4?dl=1
out=[2016] [Session 235] Building Great Workout Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/236dnxhy85jkit108dh/236/236_hd_whats_new_in_auto_layout.mp4?dl=1
out=[2016] [Session 236] What's New in Auto Layout.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/237e12rha4rg2t0p53u/237/237_hd_getting_started_with_carekit.mp4?dl=1
out=[2016] [Session 237] Getting Started with CareKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/238eemv232k9lp2px30/238/238_hd_measurements_and_units.mp4?dl=1
out=[2016] [Session 238] Measurements and Units.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/239ebj00keggvd2m2fx/239/239_hd_crafting_modern_cocoa_apps.mp4?dl=1
out=[2016] [Session 239] Crafting Modern Cocoa Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/240f49ca5uvbzg5pwk5/240/240_hd_increase_usage_of_your_app_with_proactive_suggestions.mp4?dl=1
out=[2016] [Session 240] Increase Usage of Your App With Proactive Suggestions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/241fgk9sdmxcb6c6wz2/241/241_hd_public_transit_in_apple_maps.mp4?dl=1
out=[2016] [Session 241] Public Transit in Apple Maps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/242vdhuk4hmwrxnb465/242/242_hd_whats_new_in_core_data.mp4?dl=1
out=[2016] [Session 242] What's New in Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/301fbtjd9exjetky78s/301/301_hd_introducing_expanded_subscriptions_in_itunes_connect.mp4?dl=1
out=[2016] [Session 301] Introducing Expanded Subscriptions in iTunes Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/302f5hkfjyg13j84oda/302/302_hd_introducing_search_ads.mp4?dl=1
out=[2016] [Session 302] Introducing Search Ads.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/303g7ecrjttz4lpqd7y/303/303_hd_whats_new_in_apple_device_management.mp4?dl=1
out=[2016] [Session 303] What's New in Apple Device Management.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/304heg1mrvxxz5lhd4h/304/304_hd_best_practices_for_building_apps_used_in_business_and_education.mp4?dl=1
out=[2016] [Session 304] Best Practices for Building Apps Used in Business and Education.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/305h9fsce1kcqkvmtvk/305/305_hd_whats_new_in_itunes_connect.mp4?dl=1
out=[2016] [Session 305] What's New in iTunes Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/401hmew12wifry4svvi/401/401_hd_whats_new_in_xcode_app_signing.mp4?dl=1
out=[2016] [Session 401] What's New in Xcode App Signing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/402h429l9d0hy98c9m6/402/402_hd_whats_new_in_swift.mp4?dl=1
out=[2016] [Session 402] What's New in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/403hb0ie2m86hvs7yyn/403/403_hd_swift_api_design_guidelines.mp4?dl=1
out=[2016] [Session 403] Swift API Design Guidelines.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/404hskg1ijeev16mdej/404/404_hd_getting_started_with_swift.mp4?dl=1
out=[2016] [Session 404] Getting Started with Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/405i2ilotov3bazyei1/405/405_hd_whats_new_in_llvm.mp4?dl=1
out=[2016] [Session 405] What's New in LLVM.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/406i3zbazbegkeh0udt/406/406_hd_optimizing_app_startup_time.mp4?dl=1
out=[2016] [Session 406] Optimizing App Startup Time.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/407itxn2ujs52fwcgw5/407/407_hd_auditing_your_apps_for_accessibility.mp4?dl=1
out=[2016] [Session 407] Auditing Your Apps for Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/408j7syjtdlxnl2rq4j/408/408_hd_introducing_swift_playgrounds.mp4?dl=1
out=[2016] [Session 408] Introducing Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/409jh83sf1h8dqrt00q/409/409_hd_advanced_testing_and_continuous_integration.mp4?dl=1
out=[2016] [Session 409] Advanced Testing and Continuous Integration.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/410jaf5ko3ob8asajlf/410/410_hd_visual_debugging_with_xcode.mp4?dl=1
out=[2016] [Session 410] Visual Debugging with Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/411jge60tmuuh7dolja/411/411_hd_system_trace_in_depth.mp4?dl=1
out=[2016] [Session 411] System Trace in Depth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/412jzguxz4h8hykgjlm/412/412_hd_thread_sanitizer_and_static_analysis.mp4?dl=1
out=[2016] [Session 412] Thread Sanitizer and Static Analysis.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/413jz6eb2wkfuzwx1me/413/413_hd_introduction_to_xcode.mp4?dl=1
out=[2016] [Session 413] Introduction to Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/414k6h6qdzyihpowpaa/414/414_hd_using_and_extending_the_xcode_source_editor.mp4?dl=1
out=[2016] [Session 414] Using and Extending the Xcode Source Editor.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/415kvwo632dbu5csn3g/415/415_hd_going_serverside_with_swift_open_source.mp4?dl=1
out=[2016] [Session 415] Going Server-side with Swift Open Source.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/416k7f0xkmz28rvlvwb/416/416_hd_understanding_swift_performance.mp4?dl=1
out=[2016] [Session 416] Understanding Swift Performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/417kbvnnlivhyfnn98p/417/417_hd_debugging_tips_and_tricks.mp4?dl=1
out=[2016] [Session 417] Debugging Tips and Tricks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/418kmcxcwg4psxzsjuy/418/418_hd_using_time_profiler_in_instruments.mp4?dl=1
out=[2016] [Session 418] Using Time Profiler in Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/419lgbsyhjrmqtmq0qh/419/419_hd_protocol_and_value_oriented_programming_in_uikit_apps.mp4?dl=1
out=[2016] [Session 419] Protocol and Value Oriented Programming in UIKit Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/420lbx5afix4io0xo9p/420/420_hd_optimizing_web_content_in_your_app.mp4?dl=1
out=[2016] [Session 420] Optimizing Web Content in Your App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/501l32ujtbnw2ad06wy/501/501_hd_advances_in_ios_photography.mp4?dl=1
out=[2016] [Session 501] Advances in iOS Photography.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/502lezynlddsti4drbq/502/502_hd_getting_published_in_apple_news.mp4?dl=1
out=[2016] [Session 502] Getting Published in Apple News.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/503lkp4vimgv7tqecn7/503/503_hd_advances_in_avfoundation_playback.mp4?dl=1
out=[2016] [Session 503] Advances in AVFoundation Playback.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/504m956dgg4hlw2uez9/504/504_hd_whats_new_in_http_live_streaming.mp4?dl=1
out=[2016] [Session 504] What's New in HTTP Live Streaming.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/505mia12r7dwmk3aumw/505/505_hd_live_photo_editing_and_raw_processing_with_core_image.mp4?dl=1
out=[2016] [Session 505] Live Photo Editing and RAW Processing with Core Image.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/506ms2tv71tcduwp3dm/506/506_hd_avkit_on_tvos.mp4?dl=1
out=[2016] [Session 506] AVKit on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/507n0zrhzxdzmg20zcl/507/507_hd_delivering_an_exceptional_audio_experience.mp4?dl=1
out=[2016] [Session 507] Delivering an Exceptional Audio Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/508nbofuzf16hljuwqe/508/508_hd_using_apple_news_format_to_create_rich_and_responsive_stories.mp4?dl=1
out=[2016] [Session 508] Using Apple News Format to Create Rich and Responsive Stories.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/509n1cnykqms19r9jyp/509/509_hd_speech_recognition_api.mp4?dl=1
out=[2016] [Session 509] Speech Recognition API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/510ndmh9wkcvzneegv2/510/510_hd_validating_http_live_streams.mp4?dl=1
out=[2016] [Session 510] Validating HTTP Live Streams.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/511nqyciexman7sf932/511/511_hd_avcapturephotooutput__beyond_the_basics.mp4?dl=1
out=[2016] [Session 511] AVCapturePhotoOutput - Beyond the Basics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/601nsio90cd7ylwimk9/601/601_hd_go_live_with_replaykit.mp4?dl=1
out=[2016] [Session 601] Go Live with ReplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/602o05a86ysk0ngvlgj/602/602_hd_adopting_metal_part_1.mp4?dl=1
out=[2016] [Session 602] Adopting Metal, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/603oba298b1v4z54011/603/603_hd_adopting_metal_part_2.mp4?dl=1
out=[2016] [Session 603] Adopting Metal, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/604oezpg3wmqrkxl0t7/604/604_hd_whats_new_in_metal_part_1.mp4?dl=1
out=[2016] [Session 604] What's New in Metal, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/605ooaey8tbzegv8fth/605/605_hd_whats_new_in_metal_part_2.mp4?dl=1
out=[2016] [Session 605] What's New in Metal, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/606oluchfgwakjbymy8/606/606_hd_advanced_metal_shader_optimization.mp4?dl=1
out=[2016] [Session 606] Advanced Metal Shader Optimization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/607odzb3n443nv9ei5p/607/607_hd_controlling_game_input_for_apple_tv.mp4?dl=1
out=[2016] [Session 607] Controlling Game Input for Apple TV.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/608p3mqohp4bat0id7s/608/608_hd_whats_new_in_gameplaykit.mp4?dl=1
out=[2016] [Session 608] What's New in GameplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/609pxdzx9vsps1l0qdh/609/609_hd_advances_in_scenekit_rendering.mp4?dl=1
out=[2016] [Session 609] Advances in SceneKit Rendering.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/610p9xtklo7t2au11md/610/610_hd_whats_new_in_spritekit.mp4?dl=1
out=[2016] [Session 610] What's New in SpriteKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/611qdyg26bqfivpaww1/611/611_hd_whats_new_in_game_center.mp4?dl=1
out=[2016] [Session 611] What's New in Game Center.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/612qhqi7kh3399jwhy7/612/612_hd_game_technologies_for_apple_watch.mp4?dl=1
out=[2016] [Session 612] Game Technologies for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/701q0pnn0ietcautcrv/701/701_hd_introducing_apple_file_system.mp4?dl=1
out=[2016] [Session 701] Introducing Apple File System.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/702rhpkb0ux7uuzixps/702/702_hd_using_store_kit_for_inapp_purchases_with_swift_3.mp4?dl=1
out=[2016] [Session 702] Using Store Kit for In-App Purchases with Swift 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/703rx8zlfedjfom6l93/703/703_hd_apple_pay_on_the_web.mp4?dl=1
out=[2016] [Session 703] Apple Pay on the Web.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/704s1a6rjyi2dqhhyi7/704/704_hd_whats_new_with_wallet_and_apple_pay.mp4?dl=1
out=[2016] [Session 704] What's New with Wallet and Apple Pay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/705s57mrvm8so193i8c/705/705_hd_how_ios_security_really_works.mp4?dl=1
out=[2016] [Session 705] How iOS Security Really Works.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/706sgjvzkvg6rrg9icw/706/706_hd_whats_new_in_security.mp4?dl=1
out=[2016] [Session 706] What's New in Security.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/707s77u9e6pv0dy9ggm/707/707_hd_introduction_to_notifications.mp4?dl=1
out=[2016] [Session 707] Introduction to Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/708tbh8wnspsg01hxwx/708/708_hd_advanced_notifications.mp4?dl=1
out=[2016] [Session 708] Advanced Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/709tvxadw201avg5v7n/709/709_hd_engineering_privacy_for_your_users.mp4?dl=1
out=[2016] [Session 709] Engineering Privacy for Your Users.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/710tkhyprou9hhbnc6g/710/710_hd_whats_new_in_homekit.mp4?dl=1
out=[2016] [Session 710] What's New in HomeKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/711tlraheg74mofg3uq/711/711_hd_nsurlsession_new_features_and_best_practices.mp4?dl=1
out=[2016] [Session 711] NSURLSession - New Features and Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/712ugi7vg8jznn3pc3u/712/712_hd_working_with_wide_color.mp4?dl=1
out=[2016] [Session 712] Working with Wide Color.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/713uqrvfj3uo0xewc37/713/713_hd_health_and_fitness_with_core_motion.mp4?dl=1
out=[2016] [Session 713] Health and Fitness with Core Motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/714urluxe140lardrb7/714/714_hd_networking_for_the_modern_internet.mp4?dl=1
out=[2016] [Session 714] Networking for the Modern Internet.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/715v2nxofqo5an4q79a/715/715_hd_neural_networks_and_accelerate.mp4?dl=1
out=[2016] [Session 715] Neural Networks and Accelerate.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/716vyncka4gcaxxwuvq/716/716_hd_core_location_best_practices.mp4?dl=1
out=[2016] [Session 716] Core Location Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/719wve0t1j24kny0f9r/719/719_hd_optimizing_io_for_performance_and_battery_life.mp4?dl=1
out=[2016] [Session 719] Optimizing IO for Performance and Battery Life.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/720w6g8t9zhd23va0ai/720/720_hd_concurrent_programming_with_gcd_in_swift_3.mp4?dl=1
out=[2016] [Session 720] Concurrent Programming With GCD in Swift 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/721wh2etddp4ghxhpcg/721/721_hd_unified_logging_and_activity_tracing.mp4?dl=1
out=[2016] [Session 721] Unified Logging and Activity Tracing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/722x2eefo3u2rp8k8qs/722/722_hd_developing_carplay_systems_part_1.mp4?dl=1
out=[2016] [Session 722] Developing CarPlay Systems, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/723x16j75lwkg414uxk/723/723_hd_developing_carplay_systems_part_2.mp4?dl=1
out=[2016] [Session 723] Developing CarPlay Systems, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/724x4wbpmrtkjpgfdlj/724/724_hd_whats_new_in_the_apple_push_notification_service.mp4?dl=1
out=[2016] [Session 724] What's New in the Apple Push Notification Service.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/725xk1hwmcfqkiv0jfh/725/725_hd_deploying_airprint_in_enterprise.mp4?dl=1
out=[2016] [Session 725] Deploying AirPrint in Enterprise.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/801y753jw8vxmjblocq/801/801_hd_inclusive_app_design.mp4?dl=1
out=[2016] [Session 801] Inclusive App Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/802z6j79sd7g5drr7k7/802/802_hd_designing_for_tvos.mp4?dl=1
out=[2016] [Session 802] Designing for tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/803z7m1ln9vmbpg35x9/803/803_hd_typography_and_fonts.mp4?dl=1
out=[2016] [Session 803] Typography and Fonts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/804zpr8et6qv87n8j1z/804/804_hd_designing_great_apple_watch_experiences.mp4?dl=1
out=[2016] [Session 804] Designing Great Apple Watch Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2016/805zlxpfexwwzt7x0cr/805/805_hd_iterative_ui_design.mp4?dl=1
out=[2016] [Session 805] Iterative UI Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/102xyar2647hak3e/102/102_hd_platforms_state_of_the_union.mp4?dl=1
out=[2017] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/110agzs7njnnjtee/110/110_hd_convenience_for_you_is_independence_for_me.mp4?dl=1
out=[2017] [Session 110] Convenience for You is Independence for Me.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/201fz90p4yq582o/201/201_hd_whats_new_in_cocoa_touch.mp4?dl=1
out=[2017] [Session 201] What's New in Cocoa Touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/202ximbb9e2dq222/202/202_hd_advances_in_tvmlkit.mp4?dl=1
out=[2017] [Session 202] Advances in TVMLKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/203atfalwz52js4444/203/203_hd_introducing_drag_and_drop.mp4?dl=1
out=[2017] [Session 203] Introducing Drag and Drop.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/204kty9amomlmk222/204/204_hd_updating_your_app_for_ios_11.mp4?dl=1
out=[2017] [Session 204] Updating Your App for iOS 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/205f4nvkct31tv/205/205_hd_whats_new_in_watchos.mp4?dl=1
out=[2017] [Session 205] What's New in watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/206efq12yy8kg/206/206_hd_introducing_password_autofill_for_apps.mp4?dl=1
out=[2017] [Session 206] Introducing Password AutoFill for Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/207mg6u1b7mfd02n/207/207_hd_whats_new_in_cocoa.mp4?dl=1
out=[2017] [Session 207] What's New in Cocoa.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/208tpmh7cwo17vk/208/208_hd_natural_language_processing_and_your_apps.mp4?dl=1
out=[2017] [Session 208] Natural Language Processing and your Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/209dzcjsnhy5ju/209/209_hd_whats_new_in_tvos.mp4?dl=1
out=[2017] [Session 209] What's New in tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/210ihxlzd3oovy9h/210/210_hd_whats_new_in_core_data.mp4?dl=1
out=[2017] [Session 210] What's New in Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/211r8euwwl9x4/211/211_hd_touch_bar_fundamentals.mp4?dl=1
out=[2017] [Session 211] Touch Bar Fundamentals.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/212vz78e2gzl2/212/212_hd_whats_new_in_foundation.mp4?dl=1
out=[2017] [Session 212] What's New in Foundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/213zpcyn0q9if99c/213/213_hd_mastering_drag_and_drop.mp4?dl=1
out=[2017] [Session 213] Mastering Drag and Drop.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/214bugobsy7xw94v/214/214_hd_whats_new_in_sirikit.mp4?dl=1
out=[2017] [Session 214] What's New in SiriKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/215avg3cuo2bu/215/215_hd_whats_new_in_accessibility.mp4?dl=1
out=[2017] [Session 215] What's New in Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/216p00nq8fwzed/216/216_hd_the_life_of_a_watchos_app.mp4?dl=1
out=[2017] [Session 216] The Life of a watchOS App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/217m6q9g9wx6olr/217/217_hd_media_and_gaming_accessibility.mp4?dl=1
out=[2017] [Session 217] Media and Gaming Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/218p1ql8x8ga34/218/218_hd_choosing_the_right_cocoa_container_view.mp4?dl=1
out=[2017] [Session 218] Choosing the Right Cocoa Container View.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/219okz4tp7uyw5n/219/219_hd_modern_user_interaction_on_ios.mp4?dl=1
out=[2017] [Session 219] Modern User Interaction on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/220ugyk0ejmva/220/220_hd_customized_loading_in_wkwebview.mp4?dl=1
out=[2017] [Session 220] Customized Loading in WKWebView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/221izy8b17y2dtiy/221/221_hd_whats_new_in_health.mp4?dl=1
out=[2017] [Session 221] What's New in Health.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/222ijxk2akkrebmr/222/222_hd_advanced_touch_bar.mp4?dl=1
out=[2017] [Session 222] Advanced Touch Bar.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/223ehejg7kebf8wl/223/223_hd_drag_and_drop_with_collection_and_table_view.mp4?dl=1
out=[2017] [Session 223] Drag and Drop with Collection and Table View.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/224sn8vw625k1e86/224/224_hd_focus_interaction_in_tvos_11.mp4?dl=1
out=[2017] [Session 224] Focus Interaction in tvOS 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/225kqn87jg4q699q/225/225_hd_whats_new_in_safari_view_controller.mp4?dl=1
out=[2017] [Session 225] What's New in Safari View Controller.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/226hm9uasv2xilo/226/226_hd_build_better_apps_with_cloudkit_dashboard.mp4?dl=1
out=[2017] [Session 226] Build Better Apps with CloudKit Dashboard.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/227jjbmtoqrzj00/227/227_hd_data_delivery_with_drag_and_drop.mp4?dl=1
out=[2017] [Session 227] Data Delivery with Drag and Drop.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/228b3suet75j9rt2n/228/228_hd_making_great_sirikit_experiences.mp4?dl=1
out=[2017] [Session 228] Making Great SiriKit Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/229pmdntyv1wd/229/229_hd_building_great_documentbased_apps_in_ios_11.mp4?dl=1
out=[2017] [Session 229] Building Great Document-based Apps in iOS 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/230lc4n1loob9/230/230_hd_advanced_animations_with_uikit.mp4?dl=1
out=[2017] [Session 230] Advanced Animations with UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/231wmbuvx0t3sci6ua/231/231_hd_whats_new_in_core_spotlight_for_ios_and_macos.mp4?dl=1
out=[2017] [Session 231] What's New in Core Spotlight for iOS and macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/232avezuj9uzy0hh5n/232/232_hd_whats_new_in_carekit_and_researchkit.mp4?dl=1
out=[2017] [Session 232] What's New in CareKit and ResearchKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/234otwtryzhno89esd/234/234_hd_whats_new_in_imessage_apps.mp4?dl=1
out=[2017] [Session 234] What's New in iMessage Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/235q83l07a9gtq2rhh/235/235_hd_building_visually_rich_user_experiences.mp4?dl=1
out=[2017] [Session 235] Building Visually Rich User Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/236m8wqo6pbcjnqm2k/236/236_hd_cocoa_development_tips.mp4?dl=1
out=[2017] [Session 236] Cocoa Development Tips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/237oyga54hirqaeiwg/237/237_hd_whats_new_in_mapkit.mp4?dl=1
out=[2017] [Session 237] What's New in MapKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/238a3uic99uf9c6iw3/238/238_hd_writing_energy_efficient_apps.mp4?dl=1
out=[2017] [Session 238] Writing Energy Efficient Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/239jf31ojfabtst2rm/239/239_hd_connecting_carekit_to_the_cloud.mp4?dl=1
out=[2017] [Session 239] Connecting CareKit to the Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/240nyzp1eit4xt84w4/240/240_hd_introducing_business_chat.mp4?dl=1
out=[2017] [Session 240] Introducing Business Chat.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/241iivj8rn2fo3ft0r/241/241_hd_introducing_pdfkit_on_ios.mp4?dl=1
out=[2017] [Session 241] Introducing PDFKit on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/242vuobd1jbmqgaxcq/242/242_hd_the_keys_to_a_better_text_input_experience.mp4?dl=1
out=[2017] [Session 242] The Keys to a Better Text Input Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/243eh39ob5y0z0ktg5/243/243_hd_file_provider_enhancements.mp4?dl=1
out=[2017] [Session 243] File Provider Enhancements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/244ogyk0iqlop3ecdr/244/244_hd_efficient_interactions_with_frameworks.mp4?dl=1
out=[2017] [Session 244] Efficient Interactions with Frameworks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/245ti8oovkx1hl5005/245/245_hd_building_apps_with_dynamic_type.mp4?dl=1
out=[2017] [Session 245] Building Apps with Dynamic Type.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/246oh3k8zgxi921jxq/246/246_hd_deep_linking_on_tvos.mp4?dl=1
out=[2017] [Session 246] Deep Linking on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/247yvk4zop0czpm7s6/247/247_hd_extend_your_apps_presence_with_sharing.mp4?dl=1
out=[2017] [Session 247] Extend Your App's Presence With Sharing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/248l3bagtus6l8jwxh/248/248_hd_localization_best_practices_on_tvos.mp4?dl=1
out=[2017] [Session 248] Localization Best Practices on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/249alewpia5158ow5k/249/249_hd_filtering_unwanted_messages_with_identity_lookup.mp4?dl=1
out=[2017] [Session 249] Filtering Unwanted Messages with Identity Lookup.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/250lnw83hnjfutowrg/250/250_hd_extend_your_apps_presence_with_deep_linking.mp4?dl=1
out=[2017] [Session 250] Extend Your App’s Presence with Deep Linking.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/251txgutnwpkc4740f/251/251_hd_now_playing_and_remote_commands_on_tvos.mp4?dl=1
out=[2017] [Session 251] Now Playing and Remote Commands on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/301nfvhdbpifiun/301/301_hd_introducing_the_new_app_store.mp4?dl=1
out=[2017] [Session 301] Introducing the New App Store.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/302gfkat3b267/302/302_hd_whats_new_in_itunes_connect.mp4?dl=1
out=[2017] [Session 302] What's New in iTunes Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/303f0u5froddl13/303/303_hd_whats_new_in_storekit.mp4?dl=1
out=[2017] [Session 303] What's New in StoreKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/304jud27ysms3xno/304/304_hd_whats_new_in_device_configuration_deployment_and_management.mp4?dl=1
out=[2017] [Session 304] What's New in Device Configuration, Deployment, and Management.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/305k3ed4sd37at/305/305_hd_advanced_storekit.mp4?dl=1
out=[2017] [Session 305] Advanced StoreKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/401ugfluogxen0222/401/401_hd_localizing_with_xcode_9.mp4?dl=1
out=[2017] [Session 401] Localizing with Xcode 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/402ynph39nk5sn4222/402/402_hd_whats_new_in_swift.mp4?dl=1
out=[2017] [Session 402] What's New in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/403yv29uwyamwsi222/403/403_hd_whats_new_in_signing_for_xcode_and_xcode_server.mp4?dl=1
out=[2017] [Session 403] What's New in Signing for Xcode and Xcode Server.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/404z7uj3xincdb0/404/404_hd_debugging_with_xcode_9.mp4?dl=1
out=[2017] [Session 404] Debugging with Xcode 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/405jj1fb4x5ol/405/405_hd_github_and_the_new_source_control_workflows_in_xcode_9.mp4?dl=1
out=[2017] [Session 405] GitHub and the New Source Control Workflows in Xcode 9.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/406hi7pbvl7ez0j/406/406_hd_finding_bugs_using_xcode_runtime_tools.mp4?dl=1
out=[2017] [Session 406] Finding Bugs Using Xcode Runtime Tools.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/407kc2s6vvx95/407/407_hd_understanding_undefined_behavior.mp4?dl=1
out=[2017] [Session 407] Understanding Undefined Behavior.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/408qiszgcawlgvhh/408/408_hd_whats_new_in_swift_playgrounds.mp4?dl=1
out=[2017] [Session 408] What’s New in Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/409cjm7echviyzl/409/409_hd_whats_new_in_testing.mp4?dl=1
out=[2017] [Session 409] What's New in Testing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/410ozg0v8cc7h/410/410_hd_localizing_content_for_swift_playgrounds.mp4?dl=1
out=[2017] [Session 410] Localizing Content for Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/411a7o9phe4uekm/411/411_hd_whats_new_in_llvm.mp4?dl=1
out=[2017] [Session 411] What's New in LLVM.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/412icy0vh6ays/412/412_hd_auto_layout_techniques_in_interface_builder.mp4?dl=1
out=[2017] [Session 412] Auto Layout Techniques in Interface Builder.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/413fmx92zo14voet8/413/413_hd_app_startup_time_past_present_and_future.mp4?dl=1
out=[2017] [Session 413] App Startup Time - Past, Present, and Future.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/414qr3121b1oieq/414/414_hd_engineering_for_testability.mp4?dl=1
out=[2017] [Session 414] Engineering for Testability.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/416mytru0s49ohk/416/416_hd_teaching_with_swift_playgrounds.mp4?dl=1
out=[2017] [Session 416] Teaching with Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/501fo36iwi2moz2l222/501/501_hd_whats_new_in_audio.mp4?dl=1
out=[2017] [Session 501] What's New in Audio.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/502cdkomuy9vbj4222/502/502_hd_introducing_musickit.mp4?dl=1
out=[2017] [Session 502] Introducing MusicKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/503i6plfvfi7o3222/503/503_hd_introducing_heif_and_hevc.mp4?dl=1
out=[2017] [Session 503] Introducing HEIF and HEVC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/504op4c3001w2f222/504/504_hd_advances_in_http_live_streaming.mp4?dl=1
out=[2017] [Session 504] Advances in HTTP Live Streaming.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/505e36yrkhhfv/505/505_hd_whats_new_in_photos_apis.mp4?dl=1
out=[2017] [Session 505] What's New in Photos APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/506jgz9rblchh/506/506_hd_vision_framework_building_on_core_ml.mp4?dl=1
out=[2017] [Session 506] Vision Framework - Building on Core ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/507koao27wdpt/507/507_hd_capturing_depth_in_iphone_photography.mp4?dl=1
out=[2017] [Session 507] Capturing Depth in iPhone Photography.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/508wdyl5rm2jy9z8/508/508_hd_image_editing_with_depth.mp4?dl=1
out=[2017] [Session 508] Image Editing with Depth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/509v96e4gd96rlqyq/509/509_hd_introducing_airplay_2.mp4?dl=1
out=[2017] [Session 509] Introducing AirPlay 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/510lf4jlju5s1/510/510_hd_advances_in_core_image_filters_metal_vision_and_more.mp4?dl=1
out=[2017] [Session 510] Advances in Core Image - Filters, Metal, Vision, and More.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/511tj33587vdhds/511/511_hd_working_with_heif_and_hevc.mp4?dl=1
out=[2017] [Session 511] Working with HEIF and HEVC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/512u8r4crqanrp/512/512_hd_apple_podcasts.mp4?dl=1
out=[2017] [Session 512] Apple Podcasts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/513fzgbviu23l/513/513_hd_high_efficiency_image_file_format.mp4?dl=1
out=[2017] [Session 513] High Efficiency Image File Format.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/514tjrrgnguh4k/514/514_hd_error_handling_best_practices_for_http_live_streaming.mp4?dl=1
out=[2017] [Session 514] Error Handling Best Practices for HTTP Live Streaming.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/515vy4sl7iu70/515/515_hd_hls_authoring_update.mp4?dl=1
out=[2017] [Session 515] HLS Authoring Update.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/601nzg4idodih222/601/601_hd_introducing_metal_2.mp4?dl=1
out=[2017] [Session 601] Introducing Metal 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/602pxa6f2vw71ze/602/602_hd_introducing_arkit_augmented_reality_for_ios.mp4?dl=1
out=[2017] [Session 602] Introducing ARKit - Augmented Reality for iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/603anuihzisyb2a3/603/603_hd_vr_with_metal_2.mp4?dl=1
out=[2017] [Session 603] VR with Metal 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/604r7b4rnjq86/604/604_hd_scenekit_whats_new.mp4?dl=1
out=[2017] [Session 604] SceneKit - What's New.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/605al19s0mq8dhrdv/605/605_hd_scenekit_in_swift_playgrounds.mp4?dl=1
out=[2017] [Session 605] SceneKit in Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/606n77zpcxs5ir2/606/606_hd_whats_new_with_screen_recording_and_live_broadcast.mp4?dl=1
out=[2017] [Session 606] What's New with Screen Recording and Live Broadcast.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/607x3ix6ocbh8/607/607_hd_metal_2_optimization_and_debugging.mp4?dl=1
out=[2017] [Session 607] Metal 2 Optimization and Debugging.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/608gcvcpr8gs2/608/608_hd_using_metal_2_for_compute.mp4?dl=1
out=[2017] [Session 608] Using Metal 2 for Compute.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/609ir1t2xrat06i/609/609_hd_going_beyond_2d_with_spritekit.mp4?dl=1
out=[2017] [Session 609] Going Beyond 2D with SpriteKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/610b2hmj0oh62l0/610/610_hd_from_art_to_engine_with_model_io.mp4?dl=1
out=[2017] [Session 610] From Art to Engine with Model IO.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/701jvytnoey2yc7222/701/701_hd_your_apps_and_evolving_network_security_standards.mp4?dl=1
out=[2017] [Session 701] Your Apps and Evolving Network Security Standards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/702lyr2y2j09fro222/702/702_hd_privacy_and_your_apps.mp4?dl=1
out=[2017] [Session 702] Privacy and Your Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/703muvahj3880222/703/703_hd_introducing_core_ml.mp4?dl=1
out=[2017] [Session 703] Introducing Core ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/704rn4fu5zbv1b8s222/704/704_hd_creating_immersive_apps_with_core_motion.mp4?dl=1
out=[2017] [Session 704] Creating Immersive Apps with Core Motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/705d3czqkho1a6u/705/705_hd_whats_new_in_homekit.mp4?dl=1
out=[2017] [Session 705] What's New in HomeKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/706byvveyendgv5l/706/706_hd_modernizing_grand_central_dispatch_usage.mp4?dl=1
out=[2017] [Session 706] Modernizing Grand Central Dispatch Usage.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/707h2gkb95cx1l/707/707_hd_advances_in_networking_part_1.mp4?dl=1
out=[2017] [Session 707] Advances in Networking, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/708n9dvm3oden/708/708_hd_best_practices_and_whats_new_in_user_notifications.mp4?dl=1
out=[2017] [Session 708] Best Practices and What’s New in User Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/709e7ilkvrjhjr/709/709_hd_advances_in_networking_part_2.mp4?dl=1
out=[2017] [Session 709] Advances in Networking, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/710vxa4hl8hyb72/710/710_hd_core_ml_in_depth.mp4?dl=1
out=[2017] [Session 710] Core ML in depth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/711d9xpgp3203tlq/711/711_hd_accelerate_and_sparse_solvers.mp4?dl=1
out=[2017] [Session 711] Accelerate and Sparse Solvers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/712jqzhsxoww3zn/712/712_hd_whats_new_in_core_bluetooth.mp4?dl=1
out=[2017] [Session 712] What's New in Core Bluetooth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/713tkef4yl0sv3k/713/713_hd_whats_new_in_location_technologies.mp4?dl=1
out=[2017] [Session 713] What's New in Location Technologies.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/714nzbj3q51ksj/714/714_hd_whats_new_in_apple_pay__wallet.mp4?dl=1
out=[2017] [Session 714] What's New in Apple Pay & Wallet.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/715gk347h3udl/715/715_hd_whats_new_in_apple_file_system.mp4?dl=1
out=[2017] [Session 715] What's New in Apple File System.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/716op0un8kq3o4n/716/716_hd_ios_configuration_and_apis_for_kiosk_and_assessment_apps.mp4?dl=1
out=[2017] [Session 716] iOS Configuration and APIs for Kiosk and Assessment Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/717tmz5rl6c2t2k/717/717_hd_developing_wireless_carplay_systems.mp4?dl=1
out=[2017] [Session 717] Developing Wireless CarPlay Systems.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/718jes6q3aac0f1a/718/718_hd_introducing_core_nfc.mp4?dl=1
out=[2017] [Session 718] Introducing Core NFC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/719d0c0vj588o/719/719_hd_enabling_your_app_for_carplay.mp4?dl=1
out=[2017] [Session 719] Enabling Your App for CarPlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/802i3ngpjoeupj/802/802_hd_essential_design_principles.mp4?dl=1
out=[2017] [Session 802] Essential Design Principles.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/803gyqggd62btz0/803/803_hd_designing_sound.mp4?dl=1
out=[2017] [Session 803] Designing Sound.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/804imgsi9d6q5n/804/804_hd_designing_across_platforms.mp4?dl=1
out=[2017] [Session 804] Designing Across Platforms.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/806ph0c9ysyu1/806/806_hd_design_for_everyone.mp4?dl=1
out=[2017] [Session 806] Design For Everyone.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/808qnk3ctygo5hd/808/808_hd_planning_a_great_apple_watch_experience.mp4?dl=1
out=[2017] [Session 808] Planning a Great Apple Watch Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/809dxbck5y8h8e1/809/809_hd_communication_between_designers_and_engineers.mp4?dl=1
out=[2017] [Session 809] Communication Between Designers and Engineers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/810rf5oudq18pus/810/810_hd_whats_new_in_ios_11.mp4?dl=1
out=[2017] [Session 810] What’s New in iOS 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/811evqx1dsujdj5222/811/811_hd_design_tips_for_great_games.mp4?dl=1
out=[2017] [Session 811] Design Tips for Great Games.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/812be3ra1bugc3w/812/812_hd_size_classes_and_core_components.mp4?dl=1
out=[2017] [Session 812] Size Classes and Core Components.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/813vq78d4cyc3/813/813_hd_writing_great_alerts.mp4?dl=1
out=[2017] [Session 813] Writing Great Alerts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/814w4jr9s0yp3cym8222/814/814_hd_designing_for_subscription_success.mp4?dl=1
out=[2017] [Session 814] Designing for Subscription Success.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/815hn3cbczzv55/815/815_hd_how_to_pick_a_custom_font.mp4?dl=1
out=[2017] [Session 815] How to Pick a Custom Font.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/816mg1phgy05k3v222/816/816_hd_love_at_first_launch.mp4?dl=1
out=[2017] [Session 816] Love at First Launch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/817p12uvpl9vgt/817/817_hd_rich_notifications.mp4?dl=1
out=[2017] [Session 817] Rich Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/818xw12wzot6au/818/818_hd_60_second_prototyping.mp4?dl=1
out=[2017] [Session 818] 60 Second Prototyping.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/819bp5li4iugvy222/819/819_hd_designing_for_a_global_audience.mp4?dl=1
out=[2017] [Session 819] Designing for a Global Audience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/820i9qakfac65nsp/820/820_hd_express_yourself.mp4?dl=1
out=[2017] [Session 820] Express Yourself!.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/821kjtggolzxsv/821/821_hd_get_started_with_display_p3.mp4?dl=1
out=[2017] [Session 821] Get Started with Display P3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/822qxyzd1qk9l222/822/822_hd_app_icon_design.mp4?dl=1
out=[2017] [Session 822] App Icon Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2017/823sgu0b9ofbkip/823/823_hd_designing_glyphs.mp4?dl=1
out=[2017] [Session 823] Designing Glyphs.mp4
#!/bin/bash
youtube-dl -f best --hls-prefer-native https://events-delivery.apple.com/17qopibbefvoiuhbsefvbsefvopihb06/m3u8/hls_vod_mvp.m3u8 --output "[2017] [Session 101] Keynote.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2017/102xyar2647hak3e/102/hls_vod_mvp.m3u8 --output "[2017] [Session 102] Platforms State of the Union.mp4"
https://devstreaming-cdn.apple.com/videos/wwdc/2018/102ly3xmvz1ssb1ill/102/102_hd_platforms_state_of_the_union.mp4?dl=1
out=[2018] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/103zvtnsrnrijr/103/103_hd_apple_design_awards.mp4?dl=1
out=[2018] [Session 103] Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/201bam0z9pcq7bs5km/201/201_hd_creating_apps_for_a_global_audience.mp4?dl=1
out=[2018] [Session 201] Creating Apps for a Global Audience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/202gr4vfnb8iayqu/202/202_hd_whats_new_in_cocoa_touch.mp4?dl=1
out=[2018] [Session 202] What's New in Cocoa Touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/203zyni18c4phf/203/203_hd_i_have_this_idea_for_an_app.mp4?dl=1
out=[2018] [Session 203] I Have This Idea For An App....mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/204jfuuku83cex/204/204_hd_automatic_strong_passwords_and_security_code_autofill.mp4?dl=1
out=[2018] [Session 204] Automatic Strong Passwords and Security Code AutoFill.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/205tyzmd4sury4r/205/205_hd_advances_in_research_and_care_frameworks.mp4?dl=1
out=[2018] [Session 205] Advances in Research and Care Frameworks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/206jn5qnngdzy9/206/206_hd_whats_new_in_watchos.mp4?dl=1
out=[2018] [Session 206] What's New in watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/207m5757sq9wfhvby/207/207_hd_strategies_for_securing_web_content.mp4?dl=1
out=[2018] [Session 207] Strategies for Securing Web Content.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/208piymryv9im6/208/208_hd_whats_new_in_tvos_12.mp4?dl=1
out=[2018] [Session 208] What's New in tvOS 12.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/209pydirtfgavpnj/209/209_hd_whats_new_in_cocoa_for_macos.mp4?dl=1
out=[2018] [Session 209] What's New in Cocoa for macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/210y2fene7yk01/210/210_hd_introducing_dark_mode.mp4?dl=1
out=[2018] [Session 210] Introducing Dark Mode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/211fjjqs9t1cbwzwgf0/211/211_hd_introduction_to_siri_shortcuts.mp4?dl=1
out=[2018] [Session 211] Introduction to Siri Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/212nan45edr4qp/212/212_hd_introducing_mapkit_js.mp4?dl=1
out=[2018] [Session 212] Introducing MapKit JS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/213ivbgp77y4z4/213/213_hd_carplay_audio_and_navigation_apps.mp4?dl=1
out=[2018] [Session 213] CarPlay Audio and Navigation Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/214w2w1racklnrc0l/214/214_hd_building_for_voice_with_siri_shortcuts.mp4?dl=1
out=[2018] [Session 214] Building for Voice with Siri Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/215xraudwwyzg2lgu2l/215/215_hd_introducing_classkit.mp4?dl=1
out=[2018] [Session 215] Introducing ClassKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/216dvfcqmzmak5qs/216/216_hd_managing_documents_in_your_ios_apps.mp4?dl=1
out=[2018] [Session 216] Managing Documents In Your iOS Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/217qlkasup9hplnx0r3/217/217_hd_siri_shortcuts_on_the_siri_watch_face.mp4?dl=1
out=[2018] [Session 217] Siri Shortcuts on the Siri Watch Face.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/218o6oial8c68yom/218/218_hd_advanced_dark_mode.mp4?dl=1
out=[2018] [Session 218] Advanced Dark Mode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/219mybpx95zm9x/219/219_hd_image_and_graphics_best_practices.mp4?dl=1
out=[2018] [Session 219] Image and Graphics Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/220f49ijgby0rma/220/220_hd_high_performance_auto_layout.mp4?dl=1
out=[2018] [Session 220] High Performance Auto Layout.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/221dm4k4kaqjqapkxt/221/221_hd_textkit_best_practices.mp4?dl=1
out=[2018] [Session 221] TextKit Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/222krhixqaeggyrn33/222/222_hd_data_you_can_trust.mp4?dl=1
out=[2018] [Session 222] Data You Can Trust.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/223plbqb0sfpv80/223/223_hd_embracing_algorithms.mp4?dl=1
out=[2018] [Session 223] Embracing Algorithms.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/224esqliuhnac9p11/224/224_hd_core_data_best_practices.mp4?dl=1
out=[2018] [Session 224] Core Data Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/225s90wcvt1fjg6b/225/225_hd_a_tour_of_uicollectionview.mp4?dl=1
out=[2018] [Session 225] A Tour of UICollectionView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/226s1li4vc2mjvj4j/226/226_hd_voiceover_app_testing_beyond_the_visuals.mp4?dl=1
out=[2018] [Session 226] VoiceOver - App Testing Beyond The Visuals.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/227r61xi77ucgjz6zm/227/227_hd_optimizing_app_assets.mp4?dl=1
out=[2018] [Session 227] Optimizing App Assets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/228cp3feot1iav3gy4x/228/228_hd_whats_new_in_energy_debugging.mp4?dl=1
out=[2018] [Session 228] What’s New in Energy Debugging.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/229aa99vrkiplc/229/229_hd_using_collections_effectively.mp4?dl=1
out=[2018] [Session 229] Using Collections Effectively.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/230bqynnqagiq4p8/230/230_hd_deliver_an_exceptional_accessibility_experience.mp4?dl=1
out=[2018] [Session 230] Deliver an Exceptional Accessibility Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/231yewsuorvvh0v47z/231/231_hd_homekit_deep_dive.mp4?dl=1
out=[2018] [Session 231] HomeKit Deep Dive.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/232mj2p4q92uls5n/232/232_hd_getting_ready_for_business_chat.mp4?dl=1
out=[2018] [Session 232] Getting Ready for Business Chat.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/233uq0n4zauq0ili/233/233_hd_adding_delight_to_your_ios_app.mp4?dl=1
out=[2018] [Session 233] Adding Delight to your iOS App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/234iphi7iwpe8ew16w/234/234_hd_whats_new_in_safari_and_webkit.mp4?dl=1
out=[2018] [Session 234] What’s New in Safari and WebKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/235gkyrtsva0gy/235/235_hd_uikit_apps_for_every_size_and_shape.mp4?dl=1
out=[2018] [Session 235] UIKit - Apps for Every Size and Shape.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/236mwbxbxjfsvns4jan/236/236_hd_avspeechsynthesizer_making_ios_talk.mp4?dl=1
out=[2018] [Session 236] AVSpeechSynthesizer - Making iOS Talk.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/237fjfpla4kbr1m/237/237_hd_quick_look_previews_from_the_ground_up.mp4?dl=1
out=[2018] [Session 237] Quick Look Previews from the Ground Up.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/238l85zhwz7192hqb/238/238_hd_whats_new_in_tvmlkit.mp4?dl=1
out=[2018] [Session 238] What's New in TVMLKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/239oqke16leldnu3010/239/239_hd_designing_web_content_for_watchos.mp4?dl=1
out=[2018] [Session 239] Designing Web Content for watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/241fyqqiogmd6sv/241/241_hd_accessible_drag_and_drop.mp4?dl=1
out=[2018] [Session 241] Accessible Drag and Drop.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/301k4gd0t7y955ppg/301/301_hd_whats_new_in_app_store_connect.mp4?dl=1
out=[2018] [Session 301] What's New in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/302tw1pd3hkgmzuw47/302/302_hd_whats_new_in_managing_apple_devices.mp4?dl=1
out=[2018] [Session 302] What's New in Managing Apple Devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/303ewlysk7t1l43/303/303_hd_automating_app_store_connect.mp4?dl=1
out=[2018] [Session 303] Automating App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/304o1mulfeyvd4wd/304/304_hd_whats_new_in_search_ads.mp4?dl=1
out=[2018] [Session 304] What's New in Search Ads.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/401ieeclipzse3tz3fg/401/401_hd_whats_new_in_swift.mp4?dl=1
out=[2018] [Session 401] What's New in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/402ta235oio1spobfi/402/402_hd_getting_the_most_out_of_playgrounds_in_xcode.mp4?dl=1
out=[2018] [Session 402] Getting the Most out of Playgrounds in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/403r3eh2u29dfeml/403/403_hd_whats_new_in_testing.mp4?dl=1
out=[2018] [Session 403] What's New in Testing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/404cpduaxf6gola/404/404_hd_new_localization_workflows_in_xcode_10.mp4?dl=1
out=[2018] [Session 404] New Localization Workflows in Xcode 10.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/405bjty1j94taqv8ii/405/405_hd_measuring_performance_using_logging.mp4?dl=1
out=[2018] [Session 405] Measuring Performance Using Logging.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/406z8wpyv2jdenet9rc/406/406_hd_swift_generics.mp4?dl=1
out=[2018] [Session 406] Swift Generics (Expanded).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/407akll3nbwls9yn4qt/407/407_hd_practical_approaches_to_great_app_performance.mp4?dl=1
out=[2018] [Session 407] Practical Approaches to Great App Performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/408bhgyeffq8acmv/408/408_hd_building_faster_in_xcode.mp4?dl=1
out=[2018] [Session 408] Building Faster in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/409t8zw7rumablsh/409/409_hd_whats_new_in_llvm.mp4?dl=1
out=[2018] [Session 409] What's New in LLVM.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/410naz8a8zy0rq9cg/410/410_hd_creating_custom_instruments.mp4?dl=1
out=[2018] [Session 410] Creating Custom Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/411gl7b9ztm2imp/411/411_hd_getting_to_know_swift_package_manager.mp4?dl=1
out=[2018] [Session 411] Getting to Know Swift Package Manager.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/412zw88j5aa4mr9/412/412_hd_advanced_debugging_with_xcode_and_lldb.mp4?dl=1
out=[2018] [Session 412] Advanced Debugging with Xcode and LLDB.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/413mapolqk6ca7mozr/413/413_hd_create_your_own_swift_playgrounds_subscription.mp4?dl=1
out=[2018] [Session 413] Create Your Own Swift Playgrounds Subscription.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/414djzbkfdpkvf50/414/414_hd_understanding_crashes_and_crash_logs.mp4?dl=1
out=[2018] [Session 414] Understanding Crashes and Crash Logs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/415o65ozc2l1bc3/415/415_hd_behind_the_scenes_of_the_xcode_build_process.mp4?dl=1
out=[2018] [Session 415] Behind the Scenes of the Xcode Build Process.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/416n2fmzz0fz88f/416/416_hd_ios_memory_deep_dive.mp4?dl=1
out=[2018] [Session 416] iOS Memory Deep Dive.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/417j8ucs9p8w7seip/417/417_hd_testing_tips__tricks.mp4?dl=1
out=[2018] [Session 417] Testing Tips & Tricks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/418ernlc0c54xrb8sn/418/418_hd_source_control_workflows_in_xcode.mp4?dl=1
out=[2018] [Session 418] Source Control Workflows in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/501rzej45eysiycpu/501/501_hd_introducing_podcast_analytics.mp4?dl=1
out=[2018] [Session 501] Introducing Podcast Analytics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/502plwzfxg5p7w4na/502/502_hd_measuring_and_optimizing_hls_performance.mp4?dl=1
out=[2018] [Session 502] Measuring and Optimizing HLS Performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/503rfgg72ckqxj2fi/503/503_hd_creating_photo_and_video_effects_using_depth.mp4?dl=1
out=[2018] [Session 503] Creating Photo and Video Effects Using Depth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/504uv2gj8r9250n/504/504_hd_creating_audio_apps_for_watchos.mp4?dl=1
out=[2018] [Session 504] Creating Audio Apps for watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/505em1a6u6lq35/505/505_hd_integrating_with_photos_on_macos.mp4?dl=1
out=[2018] [Session 505] Integrating with Photos on macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/506dgb08enfpgn2c58s/506/506_hd_musickit_on_the_web.mp4?dl=1
out=[2018] [Session 506] MusicKit on the Web.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/507axjplrd0yjzixfz/507/507_hd_avcontentkeysession_best_practices.mp4?dl=1
out=[2018] [Session 507] AVContentKeySession Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/508g9tgxpjyfuwr1ap/508/508_hd_getting_and_using_a_mapkit_js_key.mp4?dl=1
out=[2018] [Session 508] Getting and Using a MapKit JS Key.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/601nz4m863hyf0/601/601_hd_live_screen_broadcast_with_replaykit.mp4?dl=1
out=[2018] [Session 601] Live Screen Broadcast with ReplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/602r0zx2q17fqbk/602/602_hd_whats_new_in_arkit_2.mp4?dl=1
out=[2018] [Session 602] What’s New in ARKit 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/603augiuv41xoowslk8/603/603_hd_integrating_apps_and_content_with_ar_quick_look.mp4?dl=1
out=[2018] [Session 603] Integrating Apps and Content with AR Quick Look.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/604lh97z18yv96g6nhf/604/604_hd_metal_for_opengl_developers.mp4?dl=1
out=[2018] [Session 604] Metal for OpenGL Developers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/605sgm2hb3oxmy/605/605_hd_inside_swiftshot_creating_an_ar_game.mp4?dl=1
out=[2018] [Session 605] Inside SwiftShot - Creating an AR Game.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/606id8hzoex3kf/606/606_hd_metal_for_ray_tracing_acceleration.mp4?dl=1
out=[2018] [Session 606] Metal for Ray Tracing Acceleration.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/607buro3d9jn66/607/607_hd_metal_for_game_developers.mp4?dl=1
out=[2018] [Session 607] Metal for Game Developers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/608u6qpg6mh0uq/608/608_hd_metal_shader_debugging_and_profiling.mp4?dl=1
out=[2018] [Session 608] Metal Shader Debugging and Profiling.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/609yyw42hw6wq6mte8p/609/609_hd_metal_for_accelerating_machine_learning.mp4?dl=1
out=[2018] [Session 609] Metal for Accelerating Machine Learning.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/610qbth3em1ngixst/610/610_hd_understanding_arkit_tracking_and_detection.mp4?dl=1
out=[2018] [Session 610] Understanding ARKit Tracking and Detection.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/611q31k82j69jxqw/611/611_hd_metal_for_vr.mp4?dl=1
out=[2018] [Session 611] Metal for VR.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/612wlpc4tnd47e9245/612/612_hd_metal_game_performance_optimization.mp4?dl=1
out=[2018] [Session 612] Metal Game Performance Optimization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/701bd0jri1hppm1q4/701/701_hd_using_accelerate_and_simd.mp4?dl=1
out=[2018] [Session 701] Using Accelerate and simd.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/702zi9t7twhu9310kz5/702/702_hd_your_apps_and_the_future_of_macos_security.mp4?dl=1
out=[2018] [Session 702] Your Apps and the Future of macOS Security.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/703r5lx362so6b/703/703_hd_introducing_create_ml.mp4?dl=1
out=[2018] [Session 703] Introducing Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/704n9oeu4famgn/704/704_hd_best_practices_and_whats_new_with_inapp_purchases.mp4?dl=1
out=[2018] [Session 704] Best Practices and What’s New with In-App Purchases.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/705u9699a9lzqsghf2c/705/705_hd_engineering_subscriptions.mp4?dl=1
out=[2018] [Session 705] Engineering Subscriptions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/706pjh63zj75v07w6/706/706_hd_accessing_health_records_with_healthkit.mp4?dl=1
out=[2018] [Session 706] Accessing Health Records with HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/707liyrusj4qu2rj1z/707/707_hd_new_ways_to_work_with_workouts.mp4?dl=1
out=[2018] [Session 707] New Ways to Work with Workouts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/708ax570wjtpxze/708/708_hd_whats_new_in_core_ml_part_1.mp4?dl=1
out=[2018] [Session 708] What’s New in Core ML, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/709ofa44hqrgje7a4c/709/709_hd_whats_new_in_core_ml_part_2.mp4?dl=1
out=[2018] [Session 709] What’s New in Core ML, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/710kz0ncc1u8bfxn6/710/710_hd_whats_new_in_user_notifications.mp4?dl=1
out=[2018] [Session 710] What’s New in User Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/711c5be5c6ma8yy/711/711_hd_using_grouped_notifications.mp4?dl=1
out=[2018] [Session 711] Using Grouped Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/712rgcvlbuehdk/712/712_hd_a_guide_to_turi_create.mp4?dl=1
out=[2018] [Session 712] A Guide to Turi Create.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/713u3ysohtlec95j3ir/713/713_hd_introducing_natural_language_framework.mp4?dl=1
out=[2018] [Session 713] Introducing Natural Language Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/714px070n75l8ri/714/714_hd_optimizing_your_app_for_todays_internet.mp4?dl=1
out=[2018] [Session 714] Optimizing Your App for Today’s Internet.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/715o2fzpdzzzf5f0/715/715_hd_introducing_networkframework_a_modern_alternative_to_sockets.mp4?dl=1
out=[2018] [Session 715] Introducing Network.framework - A modern alternative to Sockets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/716xqb0exkswff/716/716_hd_object_tracking_in_vision.mp4?dl=1
out=[2018] [Session 716] Object Tracking in Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/717nagdm5s7ynqf/717/717_hd_vision_with_core_ml.mp4?dl=1
out=[2018] [Session 717] Vision with Core ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/718twnl0ca4qp1rrm7/718/718_hd_better_apps_through_better_privacy.mp4?dl=1
out=[2018] [Session 718] Better Apps through Better Privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/719mml6x0gqj3b7udf/719/719_hd_core_image_performance_prototyping_and_python.mp4?dl=1
out=[2018] [Session 719] Core Image - Performance, Prototyping, and Python.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/720gofzcqcp431kcasf/720/720_hd_wallet_and_apple_pay_creating_great_customer_experiences.mp4?dl=1
out=[2018] [Session 720] Wallet and Apple Pay - Creating Great Customer Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/721w2b36lz4yno7f4/721/721_hd_implementing_autofill_credential_provider_extensions.mp4?dl=1
out=[2018] [Session 721] Implementing AutoFill Credential Provider Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/801srpnrtij2lqi6/801/801_hd_the_qualities_of_great_design.mp4?dl=1
out=[2018] [Session 801] The Qualities of Great Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/802shgxe9sj19r/802/802_hd_intentional_design.mp4?dl=1
out=[2018] [Session 802] Intentional Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/803lpnlacvg2jsndx/803/803_hd_designing_fluid_interfaces.mp4?dl=1
out=[2018] [Session 803] Designing Fluid Interfaces.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/804hwsr1us28uuau99o/804/804_hd_the_life_of_a_button.mp4?dl=1
out=[2018] [Session 804] The Life of a Button.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/805llmiw0zwkox4zhuc/805/805_hd_creating_great_ar_experiences.mp4?dl=1
out=[2018] [Session 805] Creating Great AR Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/806d34jrsj444iqhb/806/806_hd_designing_notifications.mp4?dl=1
out=[2018] [Session 806] Designing Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/808j4pqwu6uymymjq/808/808_hd_prototyping_for_ar.mp4?dl=1
out=[2018] [Session 808] Prototyping for AR.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/809kx2o95wevp48/809/809_hd_apple_pencil_design_essentials.mp4?dl=1
out=[2018] [Session 809] Apple Pencil Design Essentials.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/810yhhz7j3k7d7y/810/810_hd_tips_for_great_maps.mp4?dl=1
out=[2018] [Session 810] Tips for Great Maps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2018/811tcr2wk13t3uq/811/811_hd_presenting_design_work.mp4?dl=1
out=[2018] [Session 811] Presenting Design Work.mp4
#!/bin/bash
youtube-dl -f best --hls-prefer-native https://events-delivery.apple.com/18oijbasfvuhbfsdvoijhbsdfvljkb6/m3u8/hls_vod_mvp.m3u8 --output "[2018] [Session 101] Keynote.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2018/102ly3xmvz1ssb1ill/102/hls_vod_mvp.m3u8 --output "[2018] [Session 102] Platforms State of the Union.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2018/715o2fzpdzzzf5f0/715/hls_vod_mvp.m3u8 --output "[2018] [Session 715] Introducing Network.framework - A modern alternative to Sockets.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2018/803lpnlacvg2jsndx/803/hls_vod_mvp.m3u8 --output "[2018] [Session 803] Designing Fluid Interfaces.mp4"
youtube-dl -f best --hls-prefer-native https://devstreaming-cdn.apple.com/videos/wwdc/2018/805llmiw0zwkox4zhuc/805/hls_vod_mvp.m3u8 --output "[2018] [Session 805] Creating Great AR Experiences.mp4"
https://devstreaming-cdn.apple.com/videos/wwdc/2019/103bax22h2udxu0n/103/103_hd_platforms_state_of_the_union.mp4?dl=1
out=[2019] [Session 103] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/104d6zyhb21vki/104/104_hd_apple_design_awards.mp4?dl=1
out=[2019] [Session 104] Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/202mm1h4jl4wiz1h3/202/202_hd_using_core_data_with_cloudkit.mp4?dl=1
out=[2019] [Session 202] Using Core Data With CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/203d4wzq0eky2pgtir3/203/203_hd_introducing_desktopclass_browsing_on_ipad.mp4?dl=1
out=[2019] [Session 203] Introducing Desktop-class Browsing on iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/204isgnpbqud244/204/204_hd_introducing_swiftui_building_your_first_app.mp4?dl=1
out=[2019] [Session 204] Introducing SwiftUI - Building Your First App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/205uk2opbsrhdunlbn/205/205_hd_introducing_ipad_apps_for_mac.mp4?dl=1
out=[2019] [Session 205] Introducing iPad Apps for Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/206u451oe8jmzj52/206/206_hd_introducing_sf_symbols.mp4?dl=1
out=[2019] [Session 206] Introducing SF Symbols.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/207k9p5h61k6sovy6hr/207/207_hd_introducing_sirikit_media_intents.mp4?dl=1
out=[2019] [Session 207] Introducing SiriKit Media Intents.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/208ryw5t6xyu0a6/208/208_hd_creating_independent_watch_apps.mp4?dl=1
out=[2019] [Session 208] Creating Independent Watch Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/209w6qieg12bqlrpjzu/209/209_hd_whats_new_in_machine_learning.mp4?dl=1
out=[2019] [Session 209] What's New in Machine Learning.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/210fo5cr4fwdfn0/210/210_hd_whats_new_in_appkit_for_macos.mp4?dl=1
out=[2019] [Session 210] What’s New in AppKit for macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/211p61zvgdkn99y/211/211_hd_mastering_the_living_room_with_tvos.mp4?dl=1
out=[2019] [Session 211] Mastering the Living Room With tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/212nyxqyrke8a9t/212/212_hd_introducing_multiple_windows_on_ipad.mp4?dl=1
out=[2019] [Session 212] Introducing Multiple Windows on iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/213q1mftanbup84jc/213/213_hd_introducing_parameters_for_shortcuts.mp4?dl=1
out=[2019] [Session 213] Introducing Parameters for Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/214iqtpuhih53fw2/214/214_hd_implementing_dark_mode_on_ios.mp4?dl=1
out=[2019] [Session 214] Implementing Dark Mode on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/215wh1hurdxwcctfc8/215/215_hd_advances_in_collection_view_layout.mp4?dl=1
out=[2019] [Session 215] Advances in Collection View Layout.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/216oe5ad0gu7zw8cqfd/216/216_hd_swiftui_essentials.mp4?dl=1
out=[2019] [Session 216] SwiftUI Essentials.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/217hlrq3o5glluc/217/217_hd_researchkit_and_carekit_reimagined.mp4?dl=1
out=[2019] [Session 217] ResearchKit and CareKit Reimagined.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/218cnjfazt0v1am/218/218_hd_exploring_new_data_representations_in_healthkit.mp4?dl=1
out=[2019] [Session 218] Exploring New Data Representations in HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/219s60i7y7dovs8r4/219/219_hd_swiftui_on_watchos.mp4?dl=1
out=[2019] [Session 219] SwiftUI on watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/220xl4hxzzr7b19/220/220_hd_advances_in_ui_data_sources.mp4?dl=1
out=[2019] [Session 220] Advances in UI Data Sources.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/221xy1ko7h8ub79is/221/221_hd_introducing_pencilkit.mp4?dl=1
out=[2019] [Session 221] Introducing PencilKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/222z7uanb8bo1e/222/222_hd_understanding_images_in_vision_framework.mp4?dl=1
out=[2019] [Session 222] Understanding Images in Vision Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/223ignoocw8xnuqx5di/223/223_hd_expanding_the_sensory_experience_with_core_haptics.mp4?dl=1
out=[2019] [Session 223] Expanding the Sensory Experience with Core Haptics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/224xnuourakjstfak/224/224_hd_modernizing_your_ui_for_ios_13.mp4?dl=1
out=[2019] [Session 224] Modernizing Your UI for iOS 13.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/225dh4oy0vvscxxr/225/225_hd_advances_in_camera_capture__photo_segmentation.mp4?dl=1
out=[2019] [Session 225] Advances in Camera Capture & Photo Segmentation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/226mq9pvm28zqfqer2a/226/226_hd_data_flow_through_swiftui.mp4?dl=1
out=[2019] [Session 226] Data Flow Through SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/227a5yni0swztyj0/227/227_hd_font_management_and_text_scaling.mp4?dl=1
out=[2019] [Session 227] Font Management and Text Scaling.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/228l55lz3fc9f4/228/228_hd_creating_great_apps_using_core_ml_and_arkit.mp4?dl=1
out=[2019] [Session 228] Creating Great Apps Using Core ML and ARKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/230p2cw8ht4ow4invto/230/230_hd_making_apps_with_core_data.mp4?dl=1
out=[2019] [Session 230] Making Apps with Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/231qbm6xl2bbd5t/231/231_hd_integrating_swiftui.mp4?dl=1
out=[2019] [Session 231] Integrating SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/232kg63jt891ci/232/232_hd_advances_in_natural_language_framework.mp4?dl=1
out=[2019] [Session 232] Advances in Natural Language Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/233zklqtgixxmuulng/233/233_hd_mastering_xcode_previews.mp4?dl=1
out=[2019] [Session 233] Mastering Xcode Previews.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/234rye7511ohnx5dmvl/234/234_hd_text_recognition_in_vision_framework.mp4?dl=1
out=[2019] [Session 234] Text Recognition in Vision Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/235piwr25l1xxn6/235/235_hd_taking_ipad_apps_for_mac_to_the_next_level.mp4?dl=1
out=[2019] [Session 235] Taking iPad Apps for Mac to the Next Level.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/236an22jpbgtmv9ya/236/236_hd_whats_new_in_mapkit_and_mapkit_js.mp4?dl=1
out=[2019] [Session 236] What’s New in MapKit and MapKit JS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/237x70rryl2b933v/237/237_hd_building_custom_views_with_swiftui.mp4?dl=1
out=[2019] [Session 237] Building Custom Views with SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/238w8avpcuaf5ox/238/238_hd_accessibility_in_swiftui.mp4?dl=1
out=[2019] [Session 238] Accessibility in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/239lnmy9z9ulgdrcej/239/239_hd_great_developer_habits.mp4?dl=1
out=[2019] [Session 239] Great Developer Habits.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/240kqdx1bcyovfjoz/240/240_hd_swiftui_on_all_devices.mp4?dl=1
out=[2019] [Session 240] SwiftUI On All Devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/241j0ejuokeaycdis/241/241_hd_adding_indoor_maps_to_your_app_and_website.mp4?dl=1
out=[2019] [Session 241] Adding Indoor Maps to your App and Website.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/243ce6ir170wt9zmal/243/243_hd_integrating_with_siri_event_suggestions.mp4?dl=1
out=[2019] [Session 243] Integrating with Siri Event Suggestions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/244gmopitz5ezs2kkq/244/244_hd_visual_design_and_accessibility.mp4?dl=1
out=[2019] [Session 244] Visual Design and Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/245hrnwbhlkgmim8y/245/245_hd_introducing_the_indoor_maps_program.mp4?dl=1
out=[2019] [Session 245] Introducing the Indoor Maps Program.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/246bnifwqasd17ytre/246/246_hd_window_management_in_your_multitasking_app.mp4?dl=1
out=[2019] [Session 246] Window Management in Your Multitasking App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/247cie5skcsefhpnhxq/247/247_hd_whats_new_in_classkit.mp4?dl=1
out=[2019] [Session 247] What’s New in ClassKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/248ts94v3ev4q5/248/248_hd_creating_an_accessible_reading_experience.mp4?dl=1
out=[2019] [Session 248] Creating an Accessible Reading Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/249a0jw909n3uq0/249/249_hd_introducing_multicamera_capture_for_ios.mp4?dl=1
out=[2019] [Session 249] Introducing Multi-Camera Capture for iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/250iaz7b18msfiy/250/250_hd_making_apps_more_accessible_with_custom_actions.mp4?dl=1
out=[2019] [Session 250] Making Apps More Accessible With Custom Actions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/251jiw68lhjtoxak/251/251_hd_extended_runtime_for_watchos_apps.mp4?dl=1
out=[2019] [Session 251] Extended Runtime for watchOS Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/252ogueb17a2lv/252/252_hd_advances_in_carplay_systems.mp4?dl=1
out=[2019] [Session 252] Advances in CarPlay Systems.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/253llfvak2onhcnjf3w/253/253_hd_exploring_tinted_graphic_complications.mp4?dl=1
out=[2019] [Session 253] Exploring Tinted Graphic Complications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/254fml0e526wtu2/254/254_hd_writing_great_accessibility_labels.mp4?dl=1
out=[2019] [Session 254] Writing Great Accessibility Labels.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/256p7m9z4yst71ai/256/256_hd_advances_in_speech_recognition.mp4?dl=1
out=[2019] [Session 256] Advances in Speech Recognition.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/257zstehah872m64ht5/257/257_hd_accessibility_inspector.mp4?dl=1
out=[2019] [Session 257] Accessibility Inspector.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/258ggtahutefvsda35yt/258/258_hd_architecting_your_app_for_multiple_windows.mp4?dl=1
out=[2019] [Session 258] Architecting Your App for Multiple Windows.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/259hnbafsdcioplsf653f/259/259_hd_targeting_content_with_multiple_windows.mp4?dl=1
out=[2019] [Session 259] Targeting Content with Multiple Windows.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/260dn5488jol0b/260/260_hd_introducing_photo_segmentation_mattes.mp4?dl=1
out=[2019] [Session 260] Introducing Photo Segmentation Mattes.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/261p8np41tos4h2/261/261_hd_large_content_viewer_ensuring_readability_for_everyone.mp4?dl=1
out=[2019] [Session 261] Large Content Viewer - Ensuring Readability for Everyone.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/262piyu998eqe22u/262/262_hd_embedding_and_sharing_visually_rich_links.mp4?dl=1
out=[2019] [Session 262] Embedding and Sharing Visually Rich Links.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/301xxdtu2sikt7naxe/301/301_hd_whats_new_in_app_store_connect.mp4?dl=1
out=[2019] [Session 301] What's New in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/302e9g1j6q9w575y3/302/302_hd_inapp_purchases_and_using_servertoserver_notifications.mp4?dl=1
out=[2019] [Session 302] In-App Purchases and Using Server-to-Server Notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/303te9o8pf35qp/303/303_hd_whats_new_in_managing_apple_devices.mp4?dl=1
out=[2019] [Session 303] What’s New in Managing Apple Devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/304uxy73xvmgt37/304/304_hd_app_distribution__from_adhoc_to_enterprise.mp4?dl=1
out=[2019] [Session 304] App Distribution – From Ad-hoc to Enterprise.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/305k64jjy5srpt9o/305/305_hd_subscription_offers_best_practices.mp4?dl=1
out=[2019] [Session 305] Subscription Offers Best Practices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/401dpvu3x1d3hgg5i6/401/401_hd_whats_new_in_xcode_11.mp4?dl=1
out=[2019] [Session 401] What's New in Xcode 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/402fd460n3p3w5c/402/402_hd_whats_new_in_swift.mp4?dl=1
out=[2019] [Session 402] What's New in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/403n9n5z0vd71jw4q2/403/403_hd_creating_great_localized_experiences_with_xcode_11.mp4?dl=1
out=[2019] [Session 403] Creating Great Localized Experiences with Xcode 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/404w05ssefca567rh/404/404_hd_getting_started_with_xcode.mp4?dl=1
out=[2019] [Session 404] Getting Started with Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/405sz7ct71lrflqb/405/405_hd_swift_playgrounds_3.mp4?dl=1
out=[2019] [Session 405] Swift Playgrounds 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/408bmshwds7eoqow1ud/408/408_hd_adopting_swift_packages_in_xcode.mp4?dl=1
out=[2019] [Session 408] Adopting Swift Packages in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/409t7ah0xy3ocqab4a/409/409_hd_whats_new_in_clang_and_llvm.mp4?dl=1
out=[2019] [Session 409] What's New in Clang and LLVM.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/410p24ercmpgj258x/410/410_hd_creating_swift_packages.mp4?dl=1
out=[2019] [Session 410] Creating Swift Packages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/411cbc60y12x68arcof/411/411_hd_getting_started_with_instruments.mp4?dl=1
out=[2019] [Session 411] Getting Started with Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/412g1eatropvik82vk/412/412_hd_debugging_in_xcode_11.mp4?dl=1
out=[2019] [Session 412] Debugging in Xcode 11.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/413kpguqjv5fqp9/413/413_hd_testing_in_xcode.mp4?dl=1
out=[2019] [Session 413] Testing in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/414ipe55m84vk1h53/414/414_hd_developing_a_great_profiling_experience.mp4?dl=1
out=[2019] [Session 414] Developing a Great Profiling Experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/415zrx4f6t10b2/415/415_hd_modern_swift_api_design.mp4?dl=1
out=[2019] [Session 415] Modern Swift API Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/416h8485aty341c2/416/416_hd_binary_frameworks_in_swift.mp4?dl=1
out=[2019] [Session 416] Binary Frameworks in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/417vjfis9nusyysvl/417/417_hd_improving_battery_life_and_performance.mp4?dl=1
out=[2019] [Session 417] Improving Battery Life and Performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/418o9bbtoe880sauh/418/418_hd_getting_the_most_out_of_simulator.mp4?dl=1
out=[2019] [Session 418] Getting the Most Out of Simulator.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/419ef9ipua3hnd2y/419/419_hd_optimizing_storage_in_your_app.mp4?dl=1
out=[2019] [Session 419] Optimizing Storage in Your App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/420yz3f4ost5x9c/420/420_hd_drawing_classification_and_oneshot_object_detection_in_turi_create.mp4?dl=1
out=[2019] [Session 420] Drawing Classification and One-Shot Object Detection in Turi Create.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/421pew36g0j6fv4jm/421/421_hd_modeling_in_custom_instruments.mp4?dl=1
out=[2019] [Session 421] Modeling in Custom Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/422vrf3slx9wnqm6/422/422_hd_designing_for_adverse_network_and_temperature_conditions.mp4?dl=1
out=[2019] [Session 422] Designing for Adverse Network and Temperature Conditions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/423lzf3qsjedrzivc7/423/423_hd_optimizing_app_launch.mp4?dl=1
out=[2019] [Session 423] Optimizing App Launch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/424gsffe67thwyafre/424/424_hd_training_object_detection_models_in_create_ml.mp4?dl=1
out=[2019] [Session 424] Training Object Detection Models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/425bfacxsewtyh8uye5/425/425_hd_training_sound_classification_models_in_create_ml.mp4?dl=1
out=[2019] [Session 425] Training Sound Classification Models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/426s9m91e962yqv9/426/426_hd_building_activity_classification_models_in_create_ml.mp4?dl=1
out=[2019] [Session 426] Building Activity Classification Models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/427quw6yo5agrbit/427/427_hd_training_recommendation_models_in_create_ml.mp4?dl=1
out=[2019] [Session 427] Training Recommendation Models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/428c7jhmepea85p6tz/428/428_hd_training_text_classifiers_in_create_ml.mp4?dl=1
out=[2019] [Session 428] Training Text Classifiers in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/429s7ksrdjsg3bql/429/429_hd_lldb_beyond_po.mp4?dl=1
out=[2019] [Session 429] LLDB - Beyond "po".mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/430tw6e8xtxo3btga2/430/430_hd_introducing_the_create_ml_app.mp4?dl=1
out=[2019] [Session 430] Introducing the Create ML App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/501psbqh02kzce/501/501_hd_reaching_the_big_screen_with_airplay_2.mp4?dl=1
out=[2019] [Session 501] Reaching the Big Screen with AirPlay 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/502gzyuhh8p2r8g8/502/502_hd_introducing_lowlatency_hls.mp4?dl=1
out=[2019] [Session 502] Introducing Low-Latency HLS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/503tnc2gfty50jit92m/503/503_hd_delivering_intuitive_media_playback_with_avkit.mp4?dl=1
out=[2019] [Session 503] Delivering Intuitive Media Playback with AVKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/506lqy7sprpfyo800/506/506_hd_hevc_video_with_alpha.mp4?dl=1
out=[2019] [Session 506] HEVC Video with Alpha.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/507fk9wyls0np6piwk/507/507_hd_hls_authoring_for_airplay_2_video.mp4?dl=1
out=[2019] [Session 507] HLS Authoring for AirPlay 2 Video.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/508kk896m9xoeaz1a/508/508_hd_modernizing_your_audio_app.mp4?dl=1
out=[2019] [Session 508] Modernizing Your Audio App.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/509tdjld4pedsigr9/509/509_hd_auv3_extensions_user_presets.mp4?dl=1
out=[2019] [Session 509] AUv3 Extensions User Presets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/510v8txdlekug3npw2m/510/510_hd_whats_new_in_avaudioengine.mp4?dl=1
out=[2019] [Session 510] What's New in AVAudioEngine.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/511e9x950grweijpm9y/511/511_hd_supporting_dark_mode_in_your_web_content.mp4?dl=1
out=[2019] [Session 511] Supporting Dark Mode in Your Web Content.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/513w02gjyhgbk02/513/513_hd_understanding_cpu_usage_with_web_inspector.mp4?dl=1
out=[2019] [Session 513] Understanding CPU Usage with Web Inspector.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/514u8cpyqzkiznkm1/514/514_hd_auditing_web_content_with_web_inspector.mp4?dl=1
out=[2019] [Session 514] Auditing Web Content with Web Inspector.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/515nm8yj4zy65h15/515/515_hd_whats_new_in_safari.mp4?dl=1
out=[2019] [Session 515] What's New in Safari.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/516sogw464mg6d4uv/516/516_hd_whats_new_in_authentication.mp4?dl=1
out=[2019] [Session 516] What's New in Authentication.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/518lfev1wbktx9/518/518_hd_whats_new_for_web_developers.mp4?dl=1
out=[2019] [Session 518] What's New for Web Developers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/520gfafwrte8ytre/520/520_hd_introducing_core_haptics.mp4?dl=1
out=[2019] [Session 520] Introducing Core Haptics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/601fthb9otw94fg/601/601_hd_modern_rendering_with_metal.mp4?dl=1
out=[2019] [Session 601] Modern Rendering with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/602ytoojud5i0kfnj4n/602/602_hd_working_with_usd.mp4?dl=1
out=[2019] [Session 602] Working with USD.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/603y6t9wal4i9m/603/603_hd_introducing_realitykit_and_reality_composer.mp4?dl=1
out=[2019] [Session 603] Introducing RealityKit and Reality Composer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/604o2yt9ky18mbyd/604/604_hd_introducing_arkit_3.mp4?dl=1
out=[2019] [Session 604] Introducing ARKit 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/605a9razz1cphz/605/605_hd_building_apps_with_realitykit.mp4?dl=1
out=[2019] [Session 605] Building Apps with RealityKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/606j537qmnh6o6/606/606_hd_delivering_optimized_metal_apps_and_games.mp4?dl=1
out=[2019] [Session 606] Delivering Optimized Metal Apps and Games.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/607a2lcl8lpd7fnidym/607/607_hd_bringing_people_into_ar.mp4?dl=1
out=[2019] [Session 607] Bringing People into AR.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/608ycxyv84z8ap14wot/608/608_hd_metal_for_pro_apps.mp4?dl=1
out=[2019] [Session 608] Metal for Pro Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/609zbao33tlyym/609/609_hd_building_ar_experiences_with_reality_composer.mp4?dl=1
out=[2019] [Session 609] Building AR Experiences with Reality Composer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/610bh5ws7sw7lxoo/610/610_hd_building_collaborative_ar_experiences.mp4?dl=1
out=[2019] [Session 610] Building Collaborative AR Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/611h7e9ka5i87k5ya/611/611_hd_bringing_opengl_apps_to_metal.mp4?dl=1
out=[2019] [Session 611] Bringing OpenGL Apps to Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/612umedd7bboc1/612/612_hd_advances_in_ar_quick_look.mp4?dl=1
out=[2019] [Session 612] Advances in AR Quick Look.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/613vjxxrkq20jn/613/613_hd_ray_tracing_with_metal.mp4?dl=1
out=[2019] [Session 613] Ray Tracing with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/614o3sph3xudzgm6/614/614_hd_metal_for_machine_learning.mp4?dl=1
out=[2019] [Session 614] Metal for Machine Learning.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/615zdym8i4v282u/615/615_hd_game_center_player_identifiers.mp4?dl=1
out=[2019] [Session 615] Game Center Player Identifiers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/616my96cpgv09ab5lq/616/616_hd_supporting_new_game_controllers.mp4?dl=1
out=[2019] [Session 616] Supporting New Game Controllers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/701ngx868rfo8jlj/701/701_hd_advances_in_macos_security.mp4?dl=1
out=[2019] [Session 701] Advances in macOS Security.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/702vygott3n041/702/702_hd_system_extensions_and_driverkit.mp4?dl=1
out=[2019] [Session 702] System Extensions and DriverKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/703yqvyjv9mi5ur6/703/703_hd_all_about_notarization.mp4?dl=1
out=[2019] [Session 703] All About Notarization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/704t1nfga5vi1x60x/704/704_hd_core_ml_3_framework.mp4?dl=1
out=[2019] [Session 704] Core ML 3 Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/705lx74ghrsthpyfude/705/705_hd_whats_new_in_core_location.mp4?dl=1
out=[2019] [Session 705] What's New in Core Location.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/706sgor5wzq9m15o2r0/706/706_hd_introducing_sign_in_with_apple.mp4?dl=1
out=[2019] [Session 706] Introducing Sign In with Apple.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/707smbqns2s4u1v49bn/707/707_hd_advances_in_app_background_execution.mp4?dl=1
out=[2019] [Session 707] Advances in App Background Execution.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/708pnd9swz5hx9anljy/708/708_hd_designing_for_privacy.mp4?dl=1
out=[2019] [Session 708] Designing for Privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/709uek5h4l7kaefk2oh/709/709_hd_cryptography_and_your_apps.mp4?dl=1
out=[2019] [Session 709] Cryptography and Your Apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/710aunvynji5emrl/710/710_hd_whats_new_in_apple_file_systems.mp4?dl=1
out=[2019] [Session 710] What's New in Apple File Systems.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/712oixq9dtsljwqxm/712/712_hd_advances_in_networking_part_1.mp4?dl=1
out=[2019] [Session 712] Advances in Networking, Part 1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/713b310k72bjpcmz6xn/713/713_hd_advances_in_networking_part_2.mp4?dl=1
out=[2019] [Session 713] Advances in Networking, Part 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/714kr380j0vbvxv/714/714_hd_network_extensions_for_the_modern_mac.mp4?dl=1
out=[2019] [Session 714] Network Extensions for the Modern Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/715qg6xyd3qgplhd3m/715/715_hd_core_nfc_enhancements.mp4?dl=1
out=[2019] [Session 715] Core NFC Enhancements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/716z5h7lh9mzhl/716/716_hd_streaming_audio_on_watchos_6.mp4?dl=1
out=[2019] [Session 716] Streaming Audio on watchOS 6.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/717b3lem5m2glj/717/717_hd_whats_new_in_universal_links.mp4?dl=1
out=[2019] [Session 717] What's New in Universal Links.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/718sn5zybluwhbuq/718/718_hd_introducing_accelerate_for_swift.mp4?dl=1
out=[2019] [Session 718] Introducing Accelerate for Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/719dyb631z49zpjzk/719/719_hd_whats_new_in_file_management_and_quick_look.mp4?dl=1
out=[2019] [Session 719] What’s New in File Management and Quick Look.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/720yo3jm1qljmlbddac/720/720_hd_whats_new_in_safari_extensions.mp4?dl=1
out=[2019] [Session 720] What's New in Safari Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/721ga0kflgr4ypfx/721/721_hd_combine_in_practice.mp4?dl=1
out=[2019] [Session 721] Combine in Practice.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/722l6blhn0efespfgx/722/722_hd_introducing_combine.mp4?dl=1
out=[2019] [Session 722] Introducing Combine.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/723ijngq6f3vi97/723/723_hd_advances_in_foundation.mp4?dl=1
out=[2019] [Session 723] Advances in Foundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/802lc4xsb0ixszml/802/802_hd_designing_award_winning_apps_and_games.mp4?dl=1
out=[2019] [Session 802] Designing Award Winning Apps and Games.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/803acsrw3066p43dqm/803/803_hd_designing_great_ml_experiences.mp4?dl=1
out=[2019] [Session 803] Designing Great ML Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/805fgsgar5ertqwh8k/805/805_hd_building_great_shortcuts.mp4?dl=1
out=[2019] [Session 805] Building Great Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/806xdewrgatyy46/806/806_hd_designing_great_shortcuts.mp4?dl=1
out=[2019] [Session 806] Designing Great Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/808knty6w7kjssfl/808/808_hd_whats_new_in_ios_design.mp4?dl=1
out=[2019] [Session 808] What's New in iOS Design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/809fdcsntdrt6yhjk/809/809_hd_designing_ipad_apps_for_mac.mp4?dl=1
out=[2019] [Session 809] Designing iPad Apps for Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/810fdftstga66w4hfadq/810/810_hd_designing_audiohaptic_experiences.mp4?dl=1
out=[2019] [Session 810] Designing Audio-Haptic Experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2019/901myoscpux9y7nry55/901/901_hd_whats_new_in_core_bluetooth.mp4?dl=1
out=[2019] [Session 901] What's New in Core Bluetooth.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/102/10/7DD15AE9-07BA-4E91-BC72-9DF1EA9729F8/200622_SotuLiveEMv2_HQ2160p29SDR_1080p_dl.mp4?dl=1
out=[2020] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10004/5/7436A537-996F-4CD6-B553-9303BFB99348/wwdc2020_10004_hd.mp4?dl=1
out=[2020] [Session 10004] Expanding automation with the App Store Connect API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10005/3/50CEFA81-2D73-4ACC-B274-399608A1BAAF/wwdc2020_10005_hd.mp4?dl=1
out=[2020] [Session 10005] What's new in assessment.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10006/2/9AEBCF31-6D56-4432-AD25-F0BD213AFA55/wwdc2020_10006_hd.mp4?dl=1
out=[2020] [Session 10006] Introducing Car Keys.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10008/6/42FB3921-E69F-4E23-8E73-1AD4191B5877/wwdc2020_10008_hd.mp4?dl=1
out=[2020] [Session 10008] Optimize the Core Image pipeline for your video app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10009/8/2BA74921-CA85-43BC-8CDD-0C0236B7A44F/wwdc2020_10009_hd.mp4?dl=1
out=[2020] [Session 10009] Edit and play back HDR video with AVFoundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10010/4/BA038DF7-160D-47A0-B92D-DA6F71360CCA/wwdc2020_10010_hd.mp4?dl=1
out=[2020] [Session 10010] Export HDR media in your app with AVFoundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10011/2/090FF01F-98C7-410F-85B3-EB5551BFBD57/wwdc2020_10011_hd.mp4?dl=1
out=[2020] [Session 10011] Author fragmented MPEG-4 content with AVAssetWriter.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10012/5/C35EF7F6-AAB8-4A37-9F4D-21E5ABC1C26A/wwdc2020_10012_hd.mp4?dl=1
out=[2020] [Session 10012] Discover ray tracing with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10013/4/17EAECF9-AE48-4108-B8E1-7214F30DC9AC/wwdc2020_10013_hd.mp4?dl=1
out=[2020] [Session 10013] Get to know Metal function pointers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10017/5/F2FB4653-3146-4087-A264-6EFCE0C197D5/wwdc2020_10017_hd.mp4?dl=1
out=[2020] [Session 10017] Core Data - Sundries and maxims.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10019/8/B498FE5F-E963-44CB-BE5E-1053289B5D7B/wwdc2020_10019_hd.mp4?dl=1
out=[2020] [Session 10019] App accessibility for Switch Control.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10020/6/E082026F-7D80-4814-9A23-5A52E4CBF628/wwdc2020_10020_hd.mp4?dl=1
out=[2020] [Session 10020] Make your app visually accessible.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10021/7/91A7268C-8211-46D3-B08E-9F554CE138A1/wwdc2020_10021_hd.mp4?dl=1
out=[2020] [Session 10021] Build Metal-based Core Image kernels with Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10022/3/286D1613-442C-41FD-A8D9-B7E7E0AC8758/wwdc2020_10022_hd.mp4?dl=1
out=[2020] [Session 10022] Create a seamless speech experience in your apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10026/6/9DBF6E96-B0C9-4104-B03E-F016434855BD/wwdc2020_10026_hd.mp4?dl=1
out=[2020] [Session 10026] Lists in UICollectionView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10027/2/8BF22D86-7C86-4813-980B-183CC5B693DE/wwdc2020_10027_hd.mp4?dl=1
out=[2020] [Session 10027] Modern cell configuration.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10028/5/0329D737-A170-472B-97B9-BFD031C7CD41/wwdc2020_10028_hd.mp4?dl=1
out=[2020] [Session 10028] Meet WidgetKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10031/4/CC07F299-2B37-486D-9BA2-F305684689A2/wwdc2020_10031_hd.mp4?dl=1
out=[2020] [Session 10031] Stacks, Grids, and Outlines in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10033/5/062E0EF4-4132-4E4F-A5E9-807F30DCCBCC/wwdc2020_10033_hd.mp4?dl=1
out=[2020] [Session 10033] Build SwiftUI views for widgets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10034/3/D86D9B81-6A8A-4015-86B1-7784AB7B3731/wwdc2020_10034_hd.mp4?dl=1
out=[2020] [Session 10034] Widgets Code-along, part 1 - The adventure begins.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10035/4/3A0E6D7F-8B87-46BB-A1B8-CE8CFABE7427/wwdc2020_10035_hd.mp4?dl=1
out=[2020] [Session 10035] Widgets Code-along, part 2 - Alternate timelines.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10036/3/7DCA777C-43D0-4737-B04C-3D232B54A481/wwdc2020_10036_hd.mp4?dl=1
out=[2020] [Session 10036] Widgets Code-along, part 3 - Advancing timelines.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10037/4/5067872D-87D8-44F5-9E73-28180361AC31/wwdc2020_10037_hd.mp4?dl=1
out=[2020] [Session 10037] App essentials in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10039/3/AB4F8C69-7A45-4CDB-A382-7D749ADB0891/wwdc2020_10039_hd.mp4?dl=1
out=[2020] [Session 10039] Build document-based apps in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10040/3/76E05CA6-5C92-45FC-8DB0-0009FC6D18F0/wwdc2020_10040_hd.mp4?dl=1
out=[2020] [Session 10040] Data Essentials in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10041/7/85DB087C-0A27-4779-B73A-7C5C888A7C82/wwdc2020_10041_hd.mp4?dl=1
out=[2020] [Session 10041] What's new in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10042/4/B38E5ED8-1188-4675-877A-272A47769177/wwdc2020_10042_hd.mp4?dl=1
out=[2020] [Session 10042] Build SwiftUI apps for tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10043/3/D1F0FA14-5265-4AB7-9D8D-118CA6F3E162/wwdc2020_10043_hd.mp4?dl=1
out=[2020] [Session 10043] Build an Action Classifier with Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10045/2/7473959D-7A47-4AC5-ACC1-1FFD5712F680/wwdc2020_10045_hd.mp4?dl=1
out=[2020] [Session 10045] Advances in diffable data sources.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10046/4/F29A4217-89E7-4D20-A3CE-3764F44B16D8/wwdc2020_10046_hd.mp4?dl=1
out=[2020] [Session 10046] Create complications for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10047/4/01915145-ACB0-4244-86DA-2FBCCFEC9B58/wwdc2020_10047_hd.mp4?dl=1
out=[2020] [Session 10047] Enable encrypted DNS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10048/4/A4A61EDD-9948-4DB8-98BB-8BA633D211CC/wwdc2020_10048_hd.mp4?dl=1
out=[2020] [Session 10048] Build complications in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10049/10/CD3717B4-610A-4738-8C94-A2B995381A44/wwdc2020_10049_hd.mp4?dl=1
out=[2020] [Session 10049] Keep your complications up to date.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10052/5/C534955F-BDE1-4CDE-87C3-320B97F2AF8E/wwdc2020_10052_hd.mp4?dl=1
out=[2020] [Session 10052] Build with iOS pickers, menus and actions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10056/11/7A6C9FD8-33A7-4FA5-BF00-AA6A9D0A1A5B/wwdc2020_10056_hd.mp4?dl=1
out=[2020] [Session 10056] Optimize the interface of your Mac Catalyst app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10057/3/138E68BD-E9B2-4980-8CF7-738D58F9959D/wwdc2020_10057_hd.mp4?dl=1
out=[2020] [Session 10057] Identify trends with the Power and Performance API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10060/9/B52BD896-A151-4C63-B521-62611009D046/wwdc2020_10060_hd.mp4?dl=1
out=[2020] [Session 10060] Design high quality Siri media interactions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10061/7/0C05700A-690E-443C-9984-6792A466E6CA/wwdc2020_10061_hd.mp4?dl=1
out=[2020] [Session 10061] Expand your SiriKit Media Intents to more platforms.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10063/3/2E1C3BA0-2643-4330-A5B2-3A9878453987/wwdc2020_10063_hd.mp4?dl=1
out=[2020] [Session 10063] Background execution demystified.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10068/6/21534713-4524-4D0D-B555-7E3C2D960F96/wwdc2020_10068_hd.mp4?dl=1
out=[2020] [Session 10068] What's new in SiriKit and Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10071/2/07184404-5005-4A26-B469-960B8653ECC9/wwdc2020_10071_hd.mp4?dl=1
out=[2020] [Session 10071] Evaluate and optimize voice interaction for your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10073/3/AA5FAD47-6829-4827-8B36-DB2F30DFC267/wwdc2020_10073_hd.mp4?dl=1
out=[2020] [Session 10073] Empower your intents.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10074/3/8D3993B6-C13D-4BD2-A35A-D5F6D820C45B/wwdc2020_10074_hd.mp4?dl=1
out=[2020] [Session 10074] Decipher and deal with common Siri errors.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10076/4/2E98AB12-04C8-4D40-8FD1-BC186B322664/wwdc2020_10076_hd.mp4?dl=1
out=[2020] [Session 10076] Diagnose performance issues with the Xcode Organizer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10077/2/B3286370-EF32-46C5-AF96-8EF51A8EB971/wwdc2020_10077_hd.mp4?dl=1
out=[2020] [Session 10077] Eliminate animation hitches with XCTest.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10078/3/D1E1D044-F469-4063-8920-60833C2BCE53/wwdc2020_10078_hd.mp4?dl=1
out=[2020] [Session 10078] Why is my app getting killed?.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10081/3/7AC69CDE-C614-4237-9C10-93A3B67C923E/wwdc2020_10081_hd.mp4?dl=1
out=[2020] [Session 10081] What's new in MetricKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10083/3/0A7396FB-7C58-496C-BB03-C3FC6F95A070/wwdc2020_10083_hd.mp4?dl=1
out=[2020] [Session 10083] Integrate your app with Wind Down.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10084/4/E5265AB0-710D-4449-B77E-B49C282280C3/wwdc2020_10084_hd.mp4?dl=1
out=[2020] [Session 10084] Feature your actions in the Shortcuts app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10086/3/F5DA137E-B1E5-4180-96CC-2D6680E5996E/wwdc2020_10086_hd.mp4?dl=1
out=[2020] [Session 10086] Design for intelligence - Apps, evolved.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10087/5/A416CA8C-0A29-45DD-9601-7245BE116636/wwdc2020_10087_hd.mp4?dl=1
out=[2020] [Session 10087] Design for intelligence - Make friends with The System.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10088/3/F305AEBE-F447-4B36-A540-FA6C33F70969/wwdc2020_10088_hd.mp4?dl=1
out=[2020] [Session 10088] Design for intelligence - Discover new opportunities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10089/5/36633315-0427-4533-B65F-57E8A9804A81/wwdc2020_10089_hd.mp4?dl=1
out=[2020] [Session 10089] Discover Core Image debugging techniques.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10090/6/EA16694F-BEEC-44FF-A129-12336E5390B9/wwdc2020_10090_hd.mp4?dl=1
out=[2020] [Session 10090] Decode ProRes with AVFoundation and VideoToolbox.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10091/2/B1C6A6C1-C50B-41C3-826B-AE16864B2245/wwdc2020_10091_hd.mp4?dl=1
out=[2020] [Session 10091] Write tests to fail.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10093/4/3B8A69F7-49AD-49B5-AFD5-1F1AF706199D/wwdc2020_10093_hd.mp4?dl=1
out=[2020] [Session 10093] Build for the iPadOS pointer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10094/3/856B2AFB-E481-490E-A7AC-9446F47C0CFA/wwdc2020_10094_hd.mp4?dl=1
out=[2020] [Session 10094] Handle trackpad and mouse input.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10095/3/ED74BA77-B586-4360-B7A1-ABA71109064A/wwdc2020_10095_hd.mp4?dl=1
out=[2020] [Session 10095] The Push Notifications primer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10096/4/9D01022D-66DF-4B16-B5B6-B01F57252226/wwdc2020_10096_hd.mp4?dl=1
out=[2020] [Session 10096] Explore Packages and Projects with Xcode Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10097/3/CE693EFF-2BF8-4B42-B483-04F69015A601/wwdc2020_10097_hd.mp4?dl=1
out=[2020] [Session 10097] Advances in UICollectionView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10098/3/E024AF2B-1DDA-4974-AA48-4186E6F9E22D/wwdc2020_10098_hd.mp4?dl=1
out=[2020] [Session 10098] What's new in Universal Links.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10099/2/18D72394-029C-4CB4-9420-4185493C4D77/wwdc2020_10099_hd.mp4?dl=1
out=[2020] [Session 10099] Explore the Action & Vision app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10100/2/880A8C5B-FB7B-456E-951B-5D13415E1B70/wwdc2020_10100_hd.mp4?dl=1
out=[2020] [Session 10100] Meet Watch Face Sharing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10103/4/640B143D-B8DE-4811-87EC-9578EA46C952/wwdc2020_10103_hd.mp4?dl=1
out=[2020] [Session 10103] Design great widgets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10104/8/2EE89376-B9BB-467A-B0F9-76651B382977/wwdc2020_10104_hd.mp4?dl=1
out=[2020] [Session 10104] Adopt the new look of macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10105/2/8B0CF78F-98E7-440E-B226-565F58288462/wwdc2020_10105_hd.mp4?dl=1
out=[2020] [Session 10105] Build for iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10106/4/AD9A0416-4A7E-4ED7-86AD-8EEEF7199216/wwdc2020_10106_hd.mp4?dl=1
out=[2020] [Session 10106] Meet Scribble for iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10107/4/91342955-14B4-436D-AE84-4FAA3BCC547F/wwdc2020_10107_hd.mp4?dl=1
out=[2020] [Session 10107] What's new in PencilKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10109/2/B152D3FD-187C-4D34-80ED-152B996E5F6D/wwdc2020_10109_hd.mp4?dl=1
out=[2020] [Session 10109] Support hardware keyboards in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10110/4/DC28151E-DCDB-4D97-9BDF-EEF1FDD14F13/wwdc2020_10110_hd.mp4?dl=1
out=[2020] [Session 10110] Support local network privacy in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10111/5/4F35F04B-7EDA-43C3-84B5-C05765126AD4/wwdc2020_10111_hd.mp4?dl=1
out=[2020] [Session 10111] Boost performance and security with modern networking.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10113/4/246C06C8-0984-49BA-A51A-0EEFDABB9EF3/wwdc2020_10113_hd.mp4?dl=1
out=[2020] [Session 10113] Build local push connectivity for restricted networks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10114/4/6F739926-5C96-42A5-8EAC-176185E35089/wwdc2020_10114_hd.mp4?dl=1
out=[2020] [Session 10114] iPad and iPhone apps on Apple silicon Macs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10115/8/FFE4310A-D8B3-4E53-8BBF-D799F4F858E5/wwdc2020_10115_hd.mp4?dl=1
out=[2020] [Session 10115] AutoFill everywhere.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10116/5/80EA07DE-B3B6-4DA6-80FE-BC03C5F0CB43/wwdc2020_10116_hd.mp4?dl=1
out=[2020] [Session 10116] VoiceOver efficiency with custom rotors.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10117/4/59AF0B72-76C2-4442-8160-967F2A9FDB96/wwdc2020_10117_hd.mp4?dl=1
out=[2020] [Session 10117] Accessibility design for Mac Catalyst.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10118/7/FF98722E-1BF9-4118-8FAA-F5EF0C9B4FAF/wwdc2020_10118_hd.mp4?dl=1
out=[2020] [Session 10118] Create App Clips for other businesses.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10119/7/C3E13536-E82C-4A52-B2E6-1D04D0991648/wwdc2020_10119_hd.mp4?dl=1
out=[2020] [Session 10119] Introduction to SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10120/4/921130DC-4D6D-4D9B-8990-AE17E9068B2F/wwdc2020_10120_hd.mp4?dl=1
out=[2020] [Session 10120] Streamline your App Clip.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10138/6/85D636B1-DF09-40C8-BC83-C25D2E195D95/wwdc2020_10138_hd.mp4?dl=1
out=[2020] [Session 10138] Discover AppleSeed for IT and Managed Software Updates.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10139/5/EE9B8782-2114-4EDC-A2CF-C26D03BB5E54/wwdc2020_10139_hd.mp4?dl=1
out=[2020] [Session 10139] Leverage enterprise identity and authentication.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10140/5/C86424DC-C2CF-464A-BDCE-35C9B4476E4B/wwdc2020_10140_hd.mp4?dl=1
out=[2020] [Session 10140] Build location-aware enterprise apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10142/6/570BD5D0-7BC7-4D3A-A1EC-E67D13CD87E0/wwdc2020_10142_hd.mp4?dl=1
out=[2020] [Session 10142] Build scalable enterprise app suites.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10143/4/EBC484F8-F255-4FC2-8604-1EA888EF5523/wwdc2020_10143_hd.mp4?dl=1
out=[2020] [Session 10143] What's new in Mac Catalyst.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10145/4/4CE0B7D8-290B-4983-B7DE-0FD504DC54C9/wwdc2020_10145_hd.mp4?dl=1
out=[2020] [Session 10145] Design for Game Center.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10146/6/F04CF30D-7D67-44DC-83BA-E9AB09BD12F7/wwdc2020_10146_hd.mp4?dl=1
out=[2020] [Session 10146] Configure and link your App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10147/3/9A1289F5-A542-4604-BB2E-E7A77AF2C41F/wwdc2020_10147_hd.mp4?dl=1
out=[2020] [Session 10147] Distribute binary frameworks as Swift packages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10148/5/A365E915-A01A-478B-9396-0F737E6C8930/wwdc2020_10148_hd.mp4?dl=1
out=[2020] [Session 10148] Inspect, modify, and construct PencilKit drawings.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10149/2/A587A52D-72AD-4566-9747-FB10682D4A3E/wwdc2020_10149_hd.mp4?dl=1
out=[2020] [Session 10149] Structure your app for SwiftUI previews.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10151/2/2DBFC733-6021-45DC-9030-8F0FECFBE409/wwdc2020_10151_hd.mp4?dl=1
out=[2020] [Session 10151] What's new in CareKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10152/7/2EDC8089-D292-4CE8-828D-DCD22EFAD2F9/wwdc2020_10152_hd.mp4?dl=1
out=[2020] [Session 10152] Use model deployment and security with Core ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10153/3/710F0174-7EF1-4E55-9E84-7699484D2B1F/wwdc2020_10153_hd.mp4?dl=1
out=[2020] [Session 10153] Get models on device using Core ML Converters.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10156/4/EA8484C6-7456-457B-B105-A9D03C7FB92B/wwdc2020_10156_hd.mp4?dl=1
out=[2020] [Session 10156] Control training in Create ML with Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10158/5/1244B634-C720-4325-A806-A201BFDF5E51/wwdc2020_10158_hd.mp4?dl=1
out=[2020] [Session 10158] Deliver a better HLS audio experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10159/7/8B7397DB-B3A9-48C8-A9B7-2F8512EFDB29/wwdc2020_10159_hd.mp4?dl=1
out=[2020] [Session 10159] Build an Endpoint Security app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10160/4/CC254390-2967-444F-B9EA-01A5DE7E8D39/wwdc2020_10160_hd.mp4?dl=1
out=[2020] [Session 10160] Formatters - Make data human-friendly.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10162/3/D6788D29-2A26-4A77-B69F-34F28F2044ED/wwdc2020_10162_hd.mp4?dl=1
out=[2020] [Session 10162] Design for location privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10163/5/69E6CEAB-D828-495C-B745-D48BF721F796/wwdc2020_10163_hd.mp4?dl=1
out=[2020] [Session 10163] Advancements in the Objective-C runtime.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10164/4/3A9C343F-42ED-48B9-B8CA-D9645E719CFB/wwdc2020_10164_hd.mp4?dl=1
out=[2020] [Session 10164] XCTSkip your tests.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10165/4/F5BC5595-D6B4-4C08-B9EC-E801F766386B/wwdc2020_10165_hd.mp4?dl=1
out=[2020] [Session 10165] Embrace Swift type inference.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10167/3/5A7F9994-6332-4CE6-8132-10C43C01827B/wwdc2020_10167_hd.mp4?dl=1
out=[2020] [Session 10167] Safely manage pointers in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10168/6/0D041A0B-E4FC-4830-B955-576922C47E29/wwdc2020_10168_hd.mp4?dl=1
out=[2020] [Session 10168] Explore logging in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10169/3/0F6E83BB-5FF5-4627-9C42-F111EF4B4098/wwdc2020_10169_hd.mp4?dl=1
out=[2020] [Session 10169] Swift packages - Resources and localization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10170/7/9782B095-447A-49C8-A7D2-BB3B006CA5E2/wwdc2020_10170_hd.mp4?dl=1
out=[2020] [Session 10170] What's new in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10171/7/6847699B-2742-45B0-8651-9D832223ACFA/wwdc2020_10171_hd.mp4?dl=1
out=[2020] [Session 10171] What's new in watchOS design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10172/5/0DDB775C-9CC9-4DBA-A632-F4D4AF78D301/wwdc2020_10172_hd.mp4?dl=1
out=[2020] [Session 10172] Design great App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10173/3/4C9B78F1-0F45-456A-83FF-83624AE95E25/wwdc2020_10173_hd.mp4?dl=1
out=[2020] [Session 10173] Get the most out of Sign in with Apple.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10174/3/75396F5A-4285-498E-9ED5-29F194CE11AA/wwdc2020_10174_hd.mp4?dl=1
out=[2020] [Session 10174] Explore App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10175/3/250D121A-0E77-44A1-AF27-373B9AF669EA/wwdc2020_10175_hd.mp4?dl=1
out=[2020] [Session 10175] The details of UI typography.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10176/2/4E16A761-E513-4658-9F3F-4BC73B38271A/wwdc2020_10176_hd.mp4?dl=1
out=[2020] [Session 10176] Master Picture in Picture on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10182/4/96BB3F0A-784E-4154-A542-2F681FB93E30/wwdc2020_10182_hd.mp4?dl=1
out=[2020] [Session 10182] What's new in HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10184/3/6519C262-9ECD-4F15-BE9D-15A6B37D1394/wwdc2020_10184_hd.mp4?dl=1
out=[2020] [Session 10184] Synchronize health data with HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10185/3/24CE4DB2-9EB2-4D9F-93F6-D21456EE3366/wwdc2020_10185_hd.mp4?dl=1
out=[2020] [Session 10185] Visually edit SwiftUI views.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10188/3/6E5129F2-8309-4EDE-BEEA-B2B32A39A5FB/wwdc2020_10188_hd.mp4?dl=1
out=[2020] [Session 10188] Discover WKWebView enhancements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10189/4/164A0FEB-D524-40E7-89C9-A40F22CAA89C/wwdc2020_10189_hd.mp4?dl=1
out=[2020] [Session 10189] Secure your app - threat modeling and anti-patterns.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10190/4/4E8B17DE-486E-44AC-BC2C-EA4E4DB20E6E/wwdc2020_10190_hd.mp4?dl=1
out=[2020] [Session 10190] Create quick interactions with Shortcuts on watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10194/2/F906ACBE-2D67-4594-B041-E1F11352CF3A/wwdc2020_10194_hd.mp4?dl=1
out=[2020] [Session 10194] Add configuration and intelligence to your widgets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10197/4/FD55A473-26AA-4BE5-896E-D18F043D0EB4/wwdc2020_10197_hd.mp4?dl=1
out=[2020] [Session 10197] Broaden your reach with Siri Event Suggestions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10200/4/575ED5AA-73D9-48C4-904C-CC97FDE94A36/wwdc2020_10200_hd.mp4?dl=1
out=[2020] [Session 10200] Design for intelligence - Meet people where they are.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10204/3/4851FA64-34F3-4E4F-AFA0-D60383DD9E2D/wwdc2020_10204_hd.mp4?dl=1
out=[2020] [Session 10204] Create great enterprise apps - A chat with Box's Aaron Levie.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10205/6/3F1FA0B1-A578-47C9-A8C8-77126E57FDBF/wwdc2020_10205_hd.mp4?dl=1
out=[2020] [Session 10205] Design with iOS pickers, menus and actions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10206/4/AC4BAFCF-A06F-447C-B8C9-DF858FB6EB07/wwdc2020_10206_hd.mp4?dl=1
out=[2020] [Session 10206] Designed for iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10207/4/56001BC4-A5FE-4734-A5EB-377771B6FED3/wwdc2020_10207_hd.mp4?dl=1
out=[2020] [Session 10207] SF Symbols 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10209/4/A0EF8CFC-5168-44DA-9F88-3ECE05F82ACE/wwdc2020_10209_hd.mp4?dl=1
out=[2020] [Session 10209] What's new in Core NFC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10210/3/CD65DE89-E747-4A3E-A078-13ACD36B9B72/wwdc2020_10210_hd.mp4?dl=1
out=[2020] [Session 10210] Modernize PCI and SCSI drivers with DriverKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10214/7/871FAB69-F6A4-470A-80F0-00028CDC0E58/wwdc2020_10214_hd.mp4?dl=1
out=[2020] [Session 10214] Port your Mac app to Apple silicon.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10216/5/10085282-EADD-4030-9CAF-5F5A1D28C4E7/wwdc2020_10216_hd.mp4?dl=1
out=[2020] [Session 10216] What's new in ResearchKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10217/6/608C3CB1-C8BD-4B19-B5F3-5ADA44E200E3/wwdc2020_10217_hd.mp4?dl=1
out=[2020] [Session 10217] Explore numerical computing in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10219/4/2B66E0C1-3863-4A8E-AD06-54CC51176ED3/wwdc2020_10219_hd.mp4?dl=1
out=[2020] [Session 10219] Build localization-friendly layouts using Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10220/3/3529A3B2-1763-4B11-989D-D5B6B986EFE6/wwdc2020_10220_hd.mp4?dl=1
out=[2020] [Session 10220] Handle interruptions and alerts in UI tests.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10221/2/6B07FDD7-B950-4B25-BA94-E07A733F537F/wwdc2020_10221_hd.mp4?dl=1
out=[2020] [Session 10221] Get your test results faster.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10222/7/8EB4D4CB-2C1F-43E4-B544-53CC7495139A/wwdc2020_10222_hd.mp4?dl=1
out=[2020] [Session 10222] Create custom apps for employees.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10223/9/49D57195-8840-4152-B855-ED08FAA914A7/wwdc2020_10223_hd.mp4?dl=1
out=[2020] [Session 10223] Deploy Apple devices using zero-touch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10224/4/C98E1064-6167-4594-A904-DE63C2C65B6B/wwdc2020_10224_hd.mp4?dl=1
out=[2020] [Session 10224] Meet Audio Workgroups.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10225/1/071CF9A2-F9B9-48A1-8D81-012721D0A52C/wwdc2020_10225_hd.mp4?dl=1
out=[2020] [Session 10225] Improve stream authoring with HLS Tools.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10226/5/C8C3C21B-7FB6-4655-A9C9-7879416D0435/wwdc2020_10226_hd.mp4?dl=1
out=[2020] [Session 10226] Record stereo audio with AVAudioSession.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10228/7/9BBA826D-6117-4305-A587-78FEE220580B/wwdc2020_10228_hd.mp4?dl=1
out=[2020] [Session 10228] What's new in Low-Latency HLS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10229/8/F033AE2E-6D7C-493D-B69F-666634C4E10B/wwdc2020_10229_hd.mp4?dl=1
out=[2020] [Session 10229] Discover HLS Blocking Preload Hints.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10230/10/74A91D84-99EF-443F-86C4-0B8822E9150C/wwdc2020_10230_hd.mp4?dl=1
out=[2020] [Session 10230] Optimize live streams with HLS Playlist Delta Updates.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10231/3/2F8E5799-0623-407E-A395-57E1DE70D4D0/wwdc2020_10231_hd.mp4?dl=1
out=[2020] [Session 10231] Reduce latency with HLS Blocking Playlist Reload.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10232/4/D14B77B1-D4C9-4BD0-A395-843696269639/wwdc2020_10232_hd.mp4?dl=1
out=[2020] [Session 10232] Adapt ad insertion to Low-Latency HLS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10601/11/792E3426-1186-4B39-B3C2-AD4D72F9670B/wwdc2020_10601_hd.mp4?dl=1
out=[2020] [Session 10601] The artist’s AR toolkit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10602/7/7EE751FE-713A-4E04-8780-38491023B7B8/wwdc2020_10602_hd.mp4?dl=1
out=[2020] [Session 10602] Harness Apple GPUs with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10603/10/54C8A5DF-3A48-4879-8368-234E2AF76D3E/wwdc2020_10603_hd.mp4?dl=1
out=[2020] [Session 10603] Optimize Metal apps and games with GPU counters.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10604/7/5565A027-6950-4B1D-804F-2A555245FBA3/wwdc2020_10604_hd.mp4?dl=1
out=[2020] [Session 10604] Shop online with AR Quick Look.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10605/5/DF0941E7-C0BC-41CD-AFEB-03940FC455E6/wwdc2020_10605_hd.mp4?dl=1
out=[2020] [Session 10605] Gain insights into your Metal app with Xcode 12.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10611/8/203AC69C-0F17-4709-B622-08C2740C7539/wwdc2020_10611_hd.mp4?dl=1
out=[2020] [Session 10611] Explore ARKit 4.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10612/5/1B6C5C51-471E-4D93-9198-4D6B9AAE7D89/wwdc2020_10612_hd.mp4?dl=1
out=[2020] [Session 10612] What's new in RealityKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10613/5/2355BD15-75EB-4F6F-951C-91C1A46242E1/wwdc2020_10613_hd.mp4?dl=1
out=[2020] [Session 10613] What's new in USD.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10614/4/E368D3E8-DCFB-445D-9ADC-E97C82AEE886/wwdc2020_10614_hd.mp4?dl=1
out=[2020] [Session 10614] Advancements in Game Controllers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10615/4/E619263D-7298-4BD0-B998-1954AF02BEB2/wwdc2020_10615_hd.mp4?dl=1
out=[2020] [Session 10615] Build GPU binaries with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10616/5/F585B9C6-DBD8-4C59-B210-5228EF5B86B1/wwdc2020_10616_hd.mp4?dl=1
out=[2020] [Session 10616] Debug GPU-side errors in Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10617/8/08DA25F5-5B0E-4661-9AB2-63BFE9C7A088/wwdc2020_10617_hd.mp4?dl=1
out=[2020] [Session 10617] Bring keyboard and mouse gaming to iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10618/5/02361057-A8F2-462F-A302-376CF48B17FF/wwdc2020_10618_hd.mp4?dl=1
out=[2020] [Session 10618] Tap into Game Center - Dashboard, Access Point, and Profile.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10619/4/05AE01B8-DBEB-4628-B955-167A86ECB3AE/wwdc2020_10619_hd.mp4?dl=1
out=[2020] [Session 10619] Tap into Game Center - Leaderboards, Achievements, and Multiplayer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10621/12/FEB3B958-DCDB-4DD3-8EE6-79F97FD9A440/wwdc2020_10621_hd.mp4?dl=1
out=[2020] [Session 10621] Support performance-intensive apps and games.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10631/4/DC841F50-00E5-427F-90BD-555045D5EB52/wwdc2020_10631_hd.mp4?dl=1
out=[2020] [Session 10631] Bring your Metal app to Apple silicon Macs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10632/7/9639690B-2E3B-4B2D-A211-879DBACDE84E/wwdc2020_10632_hd.mp4?dl=1
out=[2020] [Session 10632] Optimize Metal Performance for Apple silicon Macs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10633/3/FE4ACE55-9CB0-4C18-8966-5024A50504B7/wwdc2020_10633_hd.mp4?dl=1
out=[2020] [Session 10633] Capture and stream apps on the Mac with ReplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10634/4/F7B5D94B-69EE-4ABC-86AF-2354D9C93060/wwdc2020_10634_hd.mp4?dl=1
out=[2020] [Session 10634] Discover search suggestions for Apple TV.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10635/8/AE50DE64-E4A1-44A8-84A7-05B91F3FE006/wwdc2020_10635_hd.mp4?dl=1
out=[2020] [Session 10635] Accelerate your app with CarPlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10636/5/9930A39B-629C-4BD8-A16B-4516BC60E872/wwdc2020_10636_hd.mp4?dl=1
out=[2020] [Session 10636] What's new in streaming audio for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10639/6/CA966211-6AC2-4D0B-B067-5B260747CD5F/wwdc2020_10639_hd.mp4?dl=1
out=[2020] [Session 10639] What's new in managing Apple devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10640/5/DFF319C6-2907-44A4-AE04-2439DACA8069/wwdc2020_10640_hd.mp4?dl=1
out=[2020] [Session 10640] Design for the iPadOS pointer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10641/5/51B91C53-BFDD-41DD-9EA3-418DE396897F/wwdc2020_10641_hd.mp4?dl=1
out=[2020] [Session 10641] Handle the Limited Photos Library in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10642/5/64274BC5-1940-4124-8B2F-4E1B9378202A/wwdc2020_10642_hd.mp4?dl=1
out=[2020] [Session 10642] Build Image and Video Style Transfer models in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10643/4/1EF945FC-088B-4D21-9838-F7CE638EF399/wwdc2020_10643_hd.mp4?dl=1
out=[2020] [Session 10643] Build a SwiftUI view in Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10644/5/4AF78B69-A0D2-421E-A8B8-142BF9544723/wwdc2020_10644_hd.mp4?dl=1
out=[2020] [Session 10644] Use Swift on AWS Lambda with Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10645/5/2E2B228F-1C9A-450E-927C-0FC486316517/wwdc2020_10645_hd.mp4?dl=1
out=[2020] [Session 10645] Support multiple users in your tvOS app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10646/4/FE1E3CA4-5AE6-4715-86C9-01777316518A/wwdc2020_10646_hd.mp4?dl=1
out=[2020] [Session 10646] What's new in Web Inspector.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10647/6/D236A0D8-F4A2-4213-A8D3-CD986C402338/wwdc2020_10647_hd.mp4?dl=1
out=[2020] [Session 10647] Become a Simulator expert.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10648/4/59961AEA-1ADD-470E-BD61-596E5950E0BE/wwdc2020_10648_hd.mp4?dl=1
out=[2020] [Session 10648] Unsafe Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10649/5/904EDE80-6092-4438-85F6-0660C7586D01/wwdc2020_10649_hd.mp4?dl=1
out=[2020] [Session 10649] Add custom views and modifiers to the Xcode Library.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10650/4/C47E2A5A-4327-4EAC-A879-3B8FD7904A58/wwdc2020_10650_hd.mp4?dl=1
out=[2020] [Session 10650] Sync a Core Data store with the CloudKit public database.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10651/7/19F5D15D-9CF8-4C8F-8F72-35C38DB269F6/wwdc2020_10651_hd.mp4?dl=1
out=[2020] [Session 10651] What's new in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10652/3/8660B6AC-4DDE-46E6-830D-1449B090978C/wwdc2020_10652_hd.mp4?dl=1
out=[2020] [Session 10652] Meet the new Photos picker.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10653/8/E739CC44-25A9-46B9-8E40-1788530C5785/wwdc2020_10653_hd.mp4?dl=1
out=[2020] [Session 10653] Detect Body and Hand Pose with Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10654/4/6E1BE6B9-0F1A-4F75-AC96-E72CF0C6FFC1/wwdc2020_10654_hd.mp4?dl=1
out=[2020] [Session 10654] Create Swift Playgrounds content for iPad and Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10655/3/45C0E27F-A3BA-416D-B037-9BEE7466C11F/wwdc2020_10655_hd.mp4?dl=1
out=[2020] [Session 10655] Discover how to download and play HLS offline.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10656/3/396B42E5-AAA7-4464-94DF-8F090FB4ED5E/wwdc2020_10656_hd.mp4?dl=1
out=[2020] [Session 10656] Beyond counting steps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10657/6/2C0D8310-7D45-4FD5-B49E-91B0F6D2B511/wwdc2020_10657_hd.mp4?dl=1
out=[2020] [Session 10657] Make apps smarter with Natural Language.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10658/8/827B5251-1529-46D9-AFD4-274C9CECE198/wwdc2020_10658_hd.mp4?dl=1
out=[2020] [Session 10658] What's new in education.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10659/10/6FFA68D9-58F1-4DC0-BDBA-8E432292E682/wwdc2020_10659_hd.mp4?dl=1
out=[2020] [Session 10659] Introducing StoreKit Testing in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10660/4/3543DAE5-0D4D-4795-B215-972E16B50056/wwdc2020_10660_hd.mp4?dl=1
out=[2020] [Session 10660] What's new in location.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10661/8/F8CB79D2-B53B-4C5A-A3B2-E298F3ABEE9A/wwdc2020_10661_hd.mp4?dl=1
out=[2020] [Session 10661] What’s new with in-app purchase.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10662/10/5BB96234-A10B-43DF-9223-A782EE855E87/wwdc2020_10662_hd.mp4?dl=1
out=[2020] [Session 10662] What's new in Wallet and Apple Pay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10663/5/07AE41F3-7DC1-47F7-BD89-EF68948C4935/wwdc2020_10663_hd.mp4?dl=1
out=[2020] [Session 10663] What's new for web developers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10664/3/A57EEE02-9009-45A1-B08B-797CE7A6F83B/wwdc2020_10664_hd.mp4?dl=1
out=[2020] [Session 10664] Getting started with HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10665/3/C174BFAC-4EEB-41C6-9019-4386F9E18CD5/wwdc2020_10665_hd.mp4?dl=1
out=[2020] [Session 10665] Meet Safari Web Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10666/6/D7AC2207-1C98-4C40-B53E-B41D8B673E40/wwdc2020_10666_hd.mp4?dl=1
out=[2020] [Session 10666] One-tap account security upgrades.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10667/2/745F75A7-CDE9-438F-BB2C-EE1BF3E56CC7/wwdc2020_10667_hd.mp4?dl=1
out=[2020] [Session 10667] Custom app distribution with Apple Business Manager.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10668/6/69354ABA-CE3E-4420-A19A-DBF26B4788ED/wwdc2020_10668_hd.mp4?dl=1
out=[2020] [Session 10668] Meet Nearby Interaction.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10669/4/63009C98-F22F-4CFE-9037-5DCC0A37017F/wwdc2020_10669_hd.mp4?dl=1
out=[2020] [Session 10669] Handling FHIR without getting burned.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10670/5/F2522A6C-CD56-4570-8939-B8BB17427290/wwdc2020_10670_hd.mp4?dl=1
out=[2020] [Session 10670] Meet Face ID and Touch ID for the web.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10671/4/EEBDC02E-B607-4F2B-AD12-3DCBC0F3AFF8/wwdc2020_10671_hd.mp4?dl=1
out=[2020] [Session 10671] Architecting for subscriptions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10672/4/F7DFFF2A-0E82-4B7F-BE8A-7C92F5A2E21C/wwdc2020_10672_hd.mp4?dl=1
out=[2020] [Session 10672] What's new in ClassKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10673/6/A7DA76C9-CB5E-4F5D-9E99-B41AE63BE071/wwdc2020_10673_hd.mp4?dl=1
out=[2020] [Session 10673] Explore Computer Vision APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10676/3/3D9FA124-32D0-48C4-8232-64426A430A56/wwdc2020_10676_hd.mp4?dl=1
out=[2020] [Session 10676] Build trust through better privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10677/2/C6396D39-7970-4E1A-A045-BC5A85B9AC36/wwdc2020_10677_hd.mp4?dl=1
out=[2020] [Session 10677] Build customized ML models with the Metal Performance Shaders Graph.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10680/6/733DC040-9073-4427-B411-BBF7BEE212B4/wwdc2020_10680_hd.mp4?dl=1
out=[2020] [Session 10680] Refine Objective-C frameworks for Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10681/2/75903D9E-3E93-4132-B19F-B20AEB99018F/wwdc2020_10681_hd.mp4?dl=1
out=[2020] [Session 10681] Swan's Quest, Chapter 1 - Voices in the dark.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10682/3/B984C50E-3AF2-42F2-9BD0-219FC77E8074/wwdc2020_10682_hd.mp4?dl=1
out=[2020] [Session 10682] Swan's Quest, Chapter 2 - A time for tones.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10683/3/ED6FCD26-F83D-4886-B592-D8C93CF836D4/wwdc2020_10683_hd.mp4?dl=1
out=[2020] [Session 10683] Swan's Quest, Chapter 3 - The notable scroll.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10684/4/A98BC348-AEAA-412A-98ED-F094D1D9FC2C/wwdc2020_10684_hd.mp4?dl=1
out=[2020] [Session 10684] Swan's Quest, Chapter 4 - The sequence completes.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10686/4/63FE46AD-053B-4294-B04F-A4BE576BD265/wwdc2020_10686_hd.mp4?dl=1
out=[2020] [Session 10686] Explore the new system architecture of Apple silicon Macs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10687/4/9416FDA9-FC21-48ED-BBCC-ABF5C5A9B0DA/wwdc2020_10687_hd.mp4?dl=1
out=[2020] [Session 10687] Triage test failures with XCTIssue.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10690/3/BEEE0B3F-1BD4-4333-BBB2-6B0999D91F6B/Apple_ADA_Video_DevApp_UHD_2997fps_ProRes422HQ-unslated_1080p_dl.mp4?dl=1
out=[2020] [Session 10690] 2020 Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10693/5/6AE2C343-800F-4D53-AA3B-B66B82E54FEE/wwdc2020_10693_hd.mp4?dl=1
out=[2020] [Session 10693] Wednesday at WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10694/2/533334C1-E3D7-425A-B669-FE559A9285E3/wwdc2020_10694_hd.mp4?dl=1
out=[2020] [Session 10694] Thursday at WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10695/2/BE62A1D8-BE87-4856-A79E-E8CB3DEA5AC1/wwdc2020_10695_hd.mp4?dl=1
out=[2020] [Session 10695] Friday at WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10691/2/A92788CB-81ED-4CCF-B6B1-4DD7A1F3E87D/wwdc2020_10691_hd.mp4?dl=1
out=[2020] [Session 10691] Monday at WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10692/3/5EDE3AEA-9F8A-4681-A198-071E2D4A6267/wwdc2020_10692_hd.mp4?dl=1
out=[2020] [Session 10692] Tuesday at WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10969/4/8C4E91EB-B1EC-45EA-8964-ADA23A5C50A0/wwdc2020_10969_hd.mp4?dl=1
out=[2020] [Session 10969] A conversation with the cast and creators of Mythic Quest Raven’s Banquet.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10970/2/E58549F7-1B89-47E6-B569-083F8033815E/wwdc2020_10970_hd.mp4?dl=1
out=[2020] [Session 10970] A conversation with Lisa Jackson and former Attorney General Eric Holder.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2020/10971/1/FF509CCC-FCE3-49F2-9BD8-7C0F1B1D9CA2/wwdc2020_10971_hd.mp4?dl=1
out=[2020] [Session 10971] Submit your questions for the cast and creators of Mythic Quest - Raven’s Banquet.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/102/2/C759AA08-C4FB-4066-B494-4A1589BD9A7E/downloads/wwdc2021-102_hd.mp4?dl=1
out=[2021] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/112/2/A1F88729-85C3-4547-95A8-27FB5D6F6333/downloads/wwdc2021-112_hd.mp4?dl=1
out=[2021] [Session 112] Platforms State of the Union (ASL).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10321/1/DB3216C0-2220-4AE8-8584-9620ABB91F65/downloads/wwdc2021-10321_hd.mp4?dl=1
out=[2021] [Session 10321] Monday@WWDC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10049/5/79001019-5F3C-4B12-A9F7-01FCE02A0381/downloads/wwdc2021-10049_hd.mp4?dl=1
out=[2021] [Session 10049] Add intelligence to your widgets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10021/8/16B955CA-C8EE-4062-9495-C6571401B563/downloads/wwdc2021-10021_hd.mp4?dl=1
out=[2021] [Session 10021] Add rich graphics to your SwiftUI app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10085/7/588BAC34-15EB-4FCE-AF4F-5934A7DD4024/downloads/wwdc2021-10085_hd.mp4?dl=1
out=[2021] [Session 10085] Apple’s privacy pillars in focus.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10122/6/218A971D-4AB5-4417-96CE-15D01B009082/downloads/wwdc2021-10122_hd.mp4?dl=1
out=[2021] [Session 10122] Bring accessibility to charts in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10005/6/F54416C7-9591-4AE8-AE9D-365C4BAC2D7E/downloads/wwdc2021-10005_hd.mp4?dl=1
out=[2021] [Session 10005] Connect Bluetooth devices to Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10176/7/5699E756-ACAC-4EFA-801B-5709E5EDF434/downloads/wwdc2021-10176_hd.mp4?dl=1
out=[2021] [Session 10176] Craft search experiences in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10076/8/AE671810-9424-412B-826B-32C13C4AC0D9/downloads/wwdc2021-10076_hd.mp4?dl=1
out=[2021] [Session 10076] Create 3D models with Object Capture.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10045/5/3099F002-4DB2-4D54-8272-1DABD4768AF2/downloads/wwdc2021-10045_hd.mp4?dl=1
out=[2021] [Session 10045] Create custom audio experiences with ShazamKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10036/7/E21A5457-DFA1-405D-87E4-EBCCB8A6F0C1/downloads/wwdc2021-10036_hd.mp4?dl=1
out=[2021] [Session 10036] Discover built-in sound classification in SoundAnalysis.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10074/4/67629E8A-3351-47A6-941D-B3C60B778BAF/downloads/wwdc2021-10074_hd.mp4?dl=1
out=[2021] [Session 10074] Dive into RealityKit 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10149/7/C01A5359-2EAC-411E-99A5-8D7DA9C8220B/downloads/wwdc2021-10149_hd.mp4?dl=1
out=[2021] [Session 10149] Enhance your app with Metal ray tracing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10143/8/02A20AB5-0C7F-4E9F-B252-75A25D1261ED/downloads/wwdc2021-10143_hd.mp4?dl=1
out=[2021] [Session 10143] Explore HLS variants in AVFoundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10165/5/7A838436-C185-4F66-B1AD-411F16DCBF86/downloads/wwdc2021-10165_hd.mp4?dl=1
out=[2021] [Session 10165] Explore Nearby Interaction with third-party accessories.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10044/7/242BEFF9-E49D-4A96-972C-BEE65585211D/downloads/wwdc2021-10044_hd.mp4?dl=1
out=[2021] [Session 10044] Explore ShazamKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10089/4/9DC55E07-91AA-4A4C-860B-E447648389FB/downloads/wwdc2021-10089_hd.mp4?dl=1
out=[2021] [Session 10089] Explore Verifiable Health Records.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10268/4/D11A0D51-DD10-4E50-932B-03643B47BF07/downloads/wwdc2021-10268_hd.mp4?dl=1
out=[2021] [Session 10268] Explore Xcode Cloud workflows.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10286/7/76356517-0CAC-4E8D-81E3-B42DCE552D15/downloads/wwdc2021-10286_hd.mp4?dl=1
out=[2021] [Session 10286] Explore bindless rendering in Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10150/9/F2EBE5D9-9990-476B-82FF-D73638B5E1AF/downloads/wwdc2021-10150_hd.mp4?dl=1
out=[2021] [Session 10150] Explore hybrid rendering with Metal ray tracing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10134/5/2EDD7E90-D227-48F9-8B5B-377C20A9DC31/downloads/wwdc2021-10134_hd.mp4?dl=1
out=[2021] [Session 10134] Explore structured concurrency in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10261/7/1C2BA450-20C2-43D2-985E-BA26B13060B2/downloads/wwdc2021-10261_hd.mp4?dl=1
out=[2021] [Session 10261] Faster and simpler notarization for Mac apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10260/4/E0BC9390-870B-4D59-9A0C-74941EAF4E36/downloads/wwdc2021-10260_hd.mp4?dl=1
out=[2021] [Session 10260] Focus on iPad keyboard navigation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10096/8/601CAC32-E343-4373-9758-85F33CAAB3D8/downloads/wwdc2021-10096_hd.mp4?dl=1
out=[2021] [Session 10096] Get ready for iCloud Private Relay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10236/6/93E69517-B140-4720-B821-A542F64CC5C8/downloads/wwdc2021-10236_hd.mp4?dl=1
out=[2021] [Session 10236] Host and automate your DocC documentation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10265/4/9BD45E56-F096-4BDD-AAFA-CF90B0501E1B/downloads/wwdc2021-10265_hd.mp4?dl=1
out=[2021] [Session 10265] Immerse your app in spatial audio.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10166/7/097C7329-25A1-4933-A07D-78C7F1F1CA46/downloads/wwdc2021-10166_hd.mp4?dl=1
out=[2021] [Session 10166] Meet DocC documentation in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10183/5/C850E07A-1E66-4641-9742-DE0DE2E3E29B/downloads/wwdc2021-10183_hd.mp4?dl=1
out=[2021] [Session 10183] Meet Group Activities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10294/5/DFB67B36-DCDE-49D9-8ED1-AC2A8B566F64/downloads/wwdc2021-10294_hd.mp4?dl=1
out=[2021] [Session 10294] Meet MusicKit for Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10104/6/CA8FE4D3-295C-4F3F-90F5-447CB81B37B7/downloads/wwdc2021-10104_hd.mp4?dl=1
out=[2021] [Session 10104] Meet Safari Web Extensions on iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10232/4/F45F16B7-D0DD-4D4D-954B-1704C1063E3C/downloads/wwdc2021-10232_hd.mp4?dl=1
out=[2021] [Session 10232] Meet Shortcuts for macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10114/3/2388CEF1-AA51-4CB2-9E79-CBDC25916BDA/downloads/wwdc2021-10114_hd.mp4?dl=1
out=[2021] [Session 10114] Meet StoreKit 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10170/8/7D7EED26-62A5-4BD6-9812-14B7F8AD74ED/downloads/wwdc2021-10170_hd.mp4?dl=1
out=[2021] [Session 10170] Meet TestFlight on Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10267/5/84238A0B-FE43-4CCA-9D0B-2643A5E3A5B5/downloads/wwdc2021-10267_hd.mp4?dl=1
out=[2021] [Session 10267] Meet Xcode Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10132/4/B2DD09FD-0D18-4E24-82C2-0736DF914F66/downloads/wwdc2021-10132_hd.mp4?dl=1
out=[2021] [Session 10132] Meet async await in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10131/4/E2547688-09E1-4213-B74C-BA8E1EE3D32A/downloads/wwdc2021-10131_hd.mp4?dl=1
out=[2021] [Session 10131] Meet declarative device management.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10171/4/70981448-BDD3-40FE-8EE5-7B1F60FCAFB9/downloads/wwdc2021-10171_hd.mp4?dl=1
out=[2021] [Session 10171] Meet in-app events on the App Store.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10123/5/AFD1559E-46A3-4B41-A5BC-CA1ED7800EC9/downloads/wwdc2021-10123_hd.mp4?dl=1
out=[2021] [Session 10123] Meet the Screen Time API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10064/3/5DF3D536-453F-4C11-9BD5-9334BD79D560/downloads/wwdc2021-10064_hd.mp4?dl=1
out=[2021] [Session 10064] Meet the UIKit button system.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10317/8/3E1F4F09-7847-40F9-8D2A-0355456D569E/downloads/wwdc2021-10317_hd.mp4?dl=1
out=[2021] [Session 10317] Out of this world... on to Mars.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10133/4/20482DD4-E6ED-4CE5-896C-7F0035FD9AB4/downloads/wwdc2021-10133_hd.mp4?dl=1
out=[2021] [Session 10133] Protect mutable state with Swift actors.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10279/6/2634C5FD-06F9-4C34-8D8A-215A0C29356B/downloads/wwdc2021-10279_hd.mp4?dl=1
out=[2021] [Session 10279] Simplify sign in for your tvOS apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10057/7/5399C1AB-B62F-4A83-8AA1-FCBFDAFFBF44/downloads/wwdc2021-10057_hd.mp4?dl=1
out=[2021] [Session 10057] Take your iPad apps to the next level.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10081/5/113EE58D-480B-4192-A7E1-8088B2A0BC72/downloads/wwdc2021-10081_hd.mp4?dl=1
out=[2021] [Session 10081] Tap into virtual and physical game controllers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10275/3/3E6DAA38-C002-43B3-A62C-F78B03C57AC7/downloads/wwdc2021-10275_hd.mp4?dl=1
out=[2021] [Session 10275] The practice of inclusive design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10304/4/5F0C8CED-8F09-4528-BEFE-98A248B6088B/downloads/wwdc2021-10304_hd.mp4?dl=1
out=[2021] [Session 10304] The process of inclusive design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10142/14/423D5648-E58A-4CD1-A06F-1290EFA18BC4/downloads/wwdc2021-10142_hd.mp4?dl=1
out=[2021] [Session 10142] Transition media gaplessly with HLS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10309/1/16A16616-AFF1-4E24-B6FF-92CB83CD6018/downloads/wwdc2021-10309_hd.mp4?dl=1
out=[2021] [Session 10309] Tuesday's Mindful Cooldown for Coding… brought to you by Fitness+.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10181/11/A69D2FCC-21C3-4392-B857-552EF73E7714/downloads/wwdc2021-10181_hd.mp4?dl=1
out=[2021] [Session 10181] Ultimate application performance survival guide.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10276/3/35E33348-1E17-4FF5-92BB-618ED251B0EC/downloads/wwdc2021-10276_hd.mp4?dl=1
out=[2021] [Session 10276] Use the camera for keyboard input in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10290/7/3B2EE1D3-46DD-48DC-8B8A-FDF061067D68/downloads/wwdc2021-10290_hd.mp4?dl=1
out=[2021] [Session 10290] What's new in AVKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10012/3/AA1959EB-823F-4382-A050-7764EC6F604E/downloads/wwdc2021-10012_hd.mp4?dl=1
out=[2021] [Session 10012] What's new in App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10054/7/D3581025-DC73-47FB-98A0-0C9599FAD509/downloads/wwdc2021-10054_hd.mp4?dl=1
out=[2021] [Session 10054] What's new in AppKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10086/3/0126BD48-6C5E-4D8C-9464-DA85CFDF193B/downloads/wwdc2021-10086_hd.mp4?dl=1
out=[2021] [Session 10086] What's new in CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10109/5/31B61A71-9D39-4F29-97DF-66309DBA320E/downloads/wwdc2021-10109_hd.mp4?dl=1
out=[2021] [Session 10109] What's new in Foundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10018/4/C1412BB4-40EE-418F-BCFD-09796128093C/downloads/wwdc2021-10018_hd.mp4?dl=1
out=[2021] [Session 10018] What's new in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10059/3/C8C0DE4A-DE0F-48AF-A08C-DC13231B61C1/downloads/wwdc2021-10059_hd.mp4?dl=1
out=[2021] [Session 10059] What's new in UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10002/4/6AE5C57E-FF72-4A1C-B627-40969B18D70D/downloads/wwdc2021-10002_hd.mp4?dl=1
out=[2021] [Session 10002] What's new in watchOS 8.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10192/4/1EE1B691-9DDB-4920-BD8C-7E91BDD75BB8/downloads/wwdc2021-10192_hd.mp4?dl=1
out=[2021] [Session 10192] What‘s new in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10066/4/41B04DA6-0AE3-41B6-9CE1-CF48AAAF9439/downloads/wwdc2021-10066_hd.mp4?dl=1
out=[2021] [Session 10066] What’s new in Game Center - Widgets, friends, and multiplayer improvements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10130/4/92D05556-BFA4-40C0-A181-5747D041FF01/downloads/wwdc2021-10130_hd.mp4?dl=1
out=[2021] [Session 10130] What’s new in managing Apple devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10259/4/F6B7B6EB-8577-4034-9EE3-67BADA64041D/downloads/wwdc2021-10259_hd.mp4?dl=1
out=[2021] [Session 10259] Your guide to keyboard layout.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10322/2/C0AA6CCA-7BAF-4B5E-8A88-F500A98E8B15/downloads/wwdc2021-10322_hd.mp4?dl=1
out=[2021] [Session 10322] Tuesday@WWDC21.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10078/7/D952E090-6CA8-4748-9B71-385AC16452AF/downloads/wwdc2021-10078_hd.mp4?dl=1
out=[2021] [Session 10078] AR Quick Look, meet Object Capture.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10308/18/BA664ADF-042F-4084-8565-61FC83578C92/downloads/wwdc2021-10308_hd.mp4?dl=1
out=[2021] [Session 10308] Accessibility by design - An Apple Watch for everyone.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10264/3/A5939C70-9333-4792-A9D5-A98FF6347D4C/downloads/wwdc2021-10264_hd.mp4?dl=1
out=[2021] [Session 10264] Adopt Quick Note.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10212/4/20646031-B78D-4268-9B08-A74EC6ABB639/downloads/wwdc2021-10212_hd.mp4?dl=1
out=[2021] [Session 10212] Analyze HTTP traffic in Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10009/4/C77618B9-A832-406C-89F0-933F2139F0AD/downloads/wwdc2021-10009_hd.mp4?dl=1
out=[2021] [Session 10009] Build a workout app for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10037/3/4705B592-C85E-4872-A252-5C377A1022D6/downloads/wwdc2021-10037_hd.mp4?dl=1
out=[2021] [Session 10037] Build dynamic iOS apps with the Create ML framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10196/7/D9910EC1-1CF4-47F0-B7CD-5D5CEE199F0D/downloads/wwdc2021-10196_hd.mp4?dl=1
out=[2021] [Session 10196] Build interfaces with style.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10013/5/F623A344-AF7B-44AF-89A0-DF275CE40E7A/downloads/wwdc2021-10013_hd.mp4?dl=1
out=[2021] [Session 10013] Build light and fast App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10160/6/08FEC739-8354-4B2F-B06F-F7F8FCD5E6ED/downloads/wwdc2021-10160_hd.mp4?dl=1
out=[2021] [Session 10160] Capture and process ProRAW images.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10039/6/21ABF0C5-D90C-4198-9791-027910A0EE4A/downloads/wwdc2021-10039_hd.mp4?dl=1
out=[2021] [Session 10039] Classify hand poses and actions with Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10225/3/2E1829B4-1726-4DB1-8211-63F39B0080EF/downloads/wwdc2021-10225_hd.mp4?dl=1
out=[2021] [Session 10225] Coordinate media experiences with Group Activities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10223/6/F4C83469-5B64-46D0-9FC6-F2EC7AC47414/downloads/wwdc2021-10223_hd.mp4?dl=1
out=[2021] [Session 10223] Create accessible experiences for watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10190/5/C1305D2C-3534-4C07-A3D7-3A70DA9FCAE2/downloads/wwdc2021-10190_hd.mp4?dl=1
out=[2021] [Session 10190] Create audio drivers with DriverKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10250/5/0F96BECB-C142-4BA8-8CEA-5EE69F7BF77E/downloads/wwdc2021-10250_hd.mp4?dl=1
out=[2021] [Session 10250] Create custom symbols.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10063/8/0D794296-1707-4A1D-8CBB-B2CAFEA82AAC/downloads/wwdc2021-10063_hd.mp4?dl=1
out=[2021] [Session 10063] Customize and resize sheets in UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10269/3/CA083488-C662-4ADA-8BA2-89647472F1C9/downloads/wwdc2021-10269_hd.mp4?dl=1
out=[2021] [Session 10269] Customize your advanced Xcode Cloud workflows.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10022/7/72A67717-944A-4D86-BFDD-D1B307C722EC/downloads/wwdc2021-10022_hd.mp4?dl=1
out=[2021] [Session 10022] Demystify SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10283/6/870EDB46-506F-4A85-83FE-8B90CA8A2C92/downloads/wwdc2021-10283_hd.mp4?dl=1
out=[2021] [Session 10283] Design great actions for Shortcuts, Siri, and Suggestions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10040/3/F855147A-D789-4E63-81CE-5050A5A3DB14/downloads/wwdc2021-10040_hd.mp4?dl=1
out=[2021] [Session 10040] Detect people, faces, and poses using Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10087/6/35272A76-3FD8-4149-B4C9-B7C0AA197E61/downloads/wwdc2021-10087_hd.mp4?dl=1
out=[2021] [Session 10087] Diagnose Power and Performance regressions in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10157/5/7C79C8DE-984A-4BD6-904D-3FCDFF5432CC/downloads/wwdc2021-10157_hd.mp4?dl=1
out=[2021] [Session 10157] Discover Metal debugging, profiling, and asset creation tools.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10136/6/8CF389C4-8FA9-4A14-A76E-B5B75AE9D4D8/downloads/wwdc2021-10136_hd.mp4?dl=1
out=[2021] [Session 10136] Discover account-driven User Enrollment.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10019/6/97B7FCAB-AC78-4A0D-8F28-C5C7AE8C339C/downloads/wwdc2021-10019_hd.mp4?dl=1
out=[2021] [Session 10019] Discover concurrency in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10079/4/B49836DD-46CA-49CD-81CF-9D08B251FDFA/downloads/wwdc2021-10079_hd.mp4?dl=1
out=[2021] [Session 10079] Discover geometry-aware audio with the Physical Audio Spatialization Engine (PHASE).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10126/6/D50196B9-76AA-4E8D-9E0B-69DE03F58EFC/downloads/wwdc2021-10126_hd.mp4?dl=1
out=[2021] [Session 10126] Discoverable design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10167/4/AEC81BAD-B21A-40F5-A726-C53C1185192A/downloads/wwdc2021-10167_hd.mp4?dl=1
out=[2021] [Session 10167] Elevate your DocC documentation in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10145/4/FFBDCD0F-8B65-4D91-A05A-1501F7494854/downloads/wwdc2021-10145_hd.mp4?dl=1
out=[2021] [Session 10145] Evaluate videos with the Advanced Video Quality Tool.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10159/4/40A32E20-B4FF-4586-9C5B-1994F3A585A2/downloads/wwdc2021-10159_hd.mp4?dl=1
out=[2021] [Session 10159] Explore Core Image kernel improvements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10027/10/09685846-0B04-4BFA-968E-000447422A11/downloads/wwdc2021-10027_hd.mp4?dl=1
out=[2021] [Session 10027] Explore Safari Web Extension improvements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10084/5/A04EAA26-0290-4D04-A0AE-46D70D7E2B00/downloads/wwdc2021-10084_hd.mp4?dl=1
out=[2021] [Session 10084] Explore UWB-based car keys.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10032/4/BF2DECD6-BD90-4253-9082-6F2FC912788C/downloads/wwdc2021-10032_hd.mp4?dl=1
out=[2021] [Session 10032] Explore WKWebView additions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10075/6/81A03814-3C6E-4B82-A5BB-92160CD0EF78/downloads/wwdc2021-10075_hd.mp4?dl=1
out=[2021] [Session 10075] Explore advanced rendering with RealityKit 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10140/15/4961CE04-6EAD-4B07-BD40-70010F74EF0D/downloads/wwdc2021-10140_hd.mp4?dl=1
out=[2021] [Session 10140] Explore dynamic pre-rolls and mid-rolls in HLS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10158/4/1A6010D5-5911-425C-96D0-DAA26DBE60C0/downloads/wwdc2021-10158_hd.mp4?dl=1
out=[2021] [Session 10158] Explore low-latency video encoding with VideoToolbox.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10288/4/48BB2A1D-31BF-4E09-90DF-2FC4669B3946/downloads/wwdc2021-10288_hd.mp4?dl=1
out=[2021] [Session 10288] Explore the SF Symbols 3 app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10291/3/F3E513AE-7D59-4677-BA86-19148C5DE3E4/downloads/wwdc2021-10291_hd.mp4?dl=1
out=[2021] [Session 10291] Explore the catalog with the Apple Music API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10295/5/83EA0FCB-2A53-4C0B-97D4-37C69079C264/downloads/wwdc2021-10295_hd.mp4?dl=1
out=[2021] [Session 10295] Get ready to optimize your App Store product page.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10141/4/E5EA0996-E08C-4259-B644-23C1F47B339A/downloads/wwdc2021-10141_hd.mp4?dl=1
out=[2021] [Session 10141] Improve global streaming availability with HLS Content Steering.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10252/5/B37B6913-C7C8-49EA-982E-9D10AC147454/downloads/wwdc2021-10252_hd.mp4?dl=1
out=[2021] [Session 10252] Make blazing fast lists and collection views.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10297/5/42EFFB92-E098-4A61-AC2C-F645C909C1EE/downloads/wwdc2021-10297_hd.mp4?dl=1
out=[2021] [Session 10297] Manage devices with Apple Configurator.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10174/3/CF8F96B8-0719-405C-815A-25E67736D5F4/downloads/wwdc2021-10174_hd.mp4?dl=1
out=[2021] [Session 10174] Manage in-app purchases on your server.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10287/5/C117695D-C24C-4B2E-B6A4-C87244FC08AC/downloads/wwdc2021-10287_hd.mp4?dl=1
out=[2021] [Session 10287] Measure health with motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10058/5/A934E650-C91D-4C63-AC83-A8980D052B5B/downloads/wwdc2021-10058_hd.mp4?dl=1
out=[2021] [Session 10058] Meet AsyncSequence.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10061/4/D12F25A4-D409-4DDA-9DCF-72C97E9875C3/downloads/wwdc2021-10061_hd.mp4?dl=1
out=[2021] [Session 10061] Meet TextKit 2.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10102/10/F5A7B735-EFE5-4520-AA23-9624428F33D1/downloads/wwdc2021-10102_hd.mp4?dl=1
out=[2021] [Session 10102] Meet the Location Button.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10256/8/389DAED7-3871-4195-95B0-59E7F10A5E52/downloads/wwdc2021-10256_hd.mp4?dl=1
out=[2021] [Session 10256] Meet the Swift Algorithms and Collections packages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10106/5/CAC0BED2-732C-431A-9764-DA6A1206FE0E/downloads/wwdc2021-10106_hd.mp4?dl=1
out=[2021] [Session 10106] Move beyond passwords.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10053/3/2422D003-327B-45A7-95E1-047C49B735B3/downloads/wwdc2021-10053_hd.mp4?dl=1
out=[2021] [Session 10053] Qualities of a great Mac Catalyst app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10056/3/6A9E120D-9217-4F54-98A5-853D65EDBCDE/downloads/wwdc2021-10056_hd.mp4?dl=1
out=[2021] [Session 10056] Qualities of great iPad and iPhone apps on Macs with M1.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10205/4/0DD5750D-A4F4-4874-B97B-645E68C35FA2/downloads/wwdc2021-10205_hd.mp4?dl=1
out=[2021] [Session 10205] Review code and collaborate in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10349/4/5C81F023-9887-405D-AF78-7FBD8FACEDEF/downloads/wwdc2021-10349_hd.mp4?dl=1
out=[2021] [Session 10349] SF Symbols in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10251/8/1F3B1961-5626-4737-BFCB-442B8F6A6CC3/downloads/wwdc2021-10251_hd.mp4?dl=1
out=[2021] [Session 10251] SF Symbols in UIKit and AppKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10105/7/67ECEEA8-4F59-4C40-BE4E-5C45EBDCE158/downloads/wwdc2021-10105_hd.mp4?dl=1
out=[2021] [Session 10105] Secure login with iCloud Keychain verification codes.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10091/4/A4152468-BE8D-45E4-BB60-043AC7854981/downloads/wwdc2021-10091_hd.mp4?dl=1
out=[2021] [Session 10091] Send communication and Time Sensitive notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10098/5/E1444CD9-0588-4D3B-8AFA-EB590BA9CD23/downloads/wwdc2021-10098_hd.mp4?dl=1
out=[2021] [Session 10098] Showcase app data in Spotlight.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10194/5/52969D90-7481-457A-A1E2-AA89E1D04D6F/downloads/wwdc2021-10194_hd.mp4?dl=1
out=[2021] [Session 10194] Swift concurrency - Update a sample app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10119/6/A3AEB1E4-C4E9-43B4-9EF6-206F6B9704E6/downloads/wwdc2021-10119_hd.mp4?dl=1
out=[2021] [Session 10119] SwiftUI Accessibility - Beyond the basics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10211/3/3450A29E-DC2D-49D5-9D68-5E053CC5EC9D/downloads/wwdc2021-10211_hd.mp4?dl=1
out=[2021] [Session 10211] Symbolication - Beyond the basics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10203/7/1A8E1E96-00E5-4E9C-B392-6A2AE2AED9ED/downloads/wwdc2021-10203_hd.mp4?dl=1
out=[2021] [Session 10203] Triage TestFlight crashes in Xcode Organizer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10095/7/2F07E69A-1CEF-4F48-9C63-E35F5DF4FBF7/downloads/wwdc2021-10095_hd.mp4?dl=1
out=[2021] [Session 10095] Use async await with URLSession.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10310/2/AFB284B2-14EC-4654-AB17-D4701F2C77F1/downloads/wwdc2021-10310_hd.mp4?dl=1
out=[2021] [Session 10310] Wednesday's Mindful Cooldown for Coding… brought to you by Fitness+.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10052/3/AEC7031C-E8E6-4F09-B845-F0DE96310C4D/downloads/wwdc2021-10052_hd.mp4?dl=1
out=[2021] [Session 10052] What's new in Mac Catalyst.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10092/4/60CA3CE3-F906-4071-B3BD-1216A6A64CB4/downloads/wwdc2021-10092_hd.mp4?dl=1
out=[2021] [Session 10092] What's new in Wallet and Apple Pay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10097/5/4D377285-9082-4F13-8F15-EBCD0A938E8C/downloads/wwdc2021-10097_hd.mp4?dl=1
out=[2021] [Session 10097] What’s new in SF Symbols.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10047/3/642D1BFE-7823-4CA8-8572-B2478B9C4B44/downloads/wwdc2021-10047_hd.mp4?dl=1
out=[2021] [Session 10047] What’s new in camera capture.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10323/1/8F1109CF-AA1F-4964-9984-BF7B74C30F38/downloads/wwdc2021-10323_hd.mp4?dl=1
out=[2021] [Session 10323] Wednesday@WWDC21.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10298/8/B4998783-FC66-455C-9469-213C69446C72/downloads/wwdc2021-10298_hd.mp4?dl=1
out=[2021] [Session 10298] Add support for Matter in your smart home app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10118/4/9B80307B-4AD2-499D-81D9-ABD4D94DFE78/downloads/wwdc2021-10118_hd.mp4?dl=1
out=[2021] [Session 10118] Automate CloudKit tests with cktool and declarative schema.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10017/4/F075C8AE-C8D2-40F9-8520-018581E3A771/downloads/wwdc2021-10017_hd.mp4?dl=1
out=[2021] [Session 10017] Bring Core Data concurrency to Swift and SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10168/10/DB697C64-E7F4-431F-BA61-53827D49FC36/downloads/wwdc2021-10168_hd.mp4?dl=1
out=[2021] [Session 10168] Build Mail app extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10187/3/53AD885C-179C-4013-A2D3-D985CE932C87/downloads/wwdc2021-10187_hd.mp4?dl=1
out=[2021] [Session 10187] Build custom experiences with Group Activities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10235/6/D2C51374-4073-4A41-97CB-4217A096F2B3/downloads/wwdc2021-10235_hd.mp4?dl=1
out=[2021] [Session 10235] Build interactive tutorials using DocC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10247/10/1D70E20D-6FE1-4770-9932-4BC4F4C4F7BA/downloads/wwdc2021-10247_hd.mp4?dl=1
out=[2021] [Session 10247] Capture high-quality photos using video formats.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10153/4/F8C484C1-A0A2-4377-992B-313BEB320A28/downloads/wwdc2021-10153_hd.mp4?dl=1
out=[2021] [Session 10153] Create image processing apps powered by Apple Silicon.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10191/4/E98B040E-0A40-48C3-85D2-F7F18715F00F/downloads/wwdc2021-10191_hd.mp4?dl=1
out=[2021] [Session 10191] Deliver a great playback experience on tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10184/8/29115819-C262-4945-BC6F-4DE0655DC0DF/downloads/wwdc2021-10184_hd.mp4?dl=1
out=[2021] [Session 10184] Design for Group Activities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10245/8/3C4EE68C-F0FF-4ECE-ADF0-6419DCDE9C00/downloads/wwdc2021-10245_hd.mp4?dl=1
out=[2021] [Session 10245] Design for spatial interaction.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10180/5/0CD6241A-4A02-4CD3-9885-93ABE0FD4981/downloads/wwdc2021-10180_hd.mp4?dl=1
out=[2021] [Session 10180] Detect and diagnose memory issues.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10030/8/09E3E250-3136-4428-BC4F-F7891EDC76AF/downloads/wwdc2021-10030_hd.mp4?dl=1
out=[2021] [Session 10030] Develop advanced web content.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10296/6/FE383085-9A76-432B-B78A-FF8149F81733/downloads/wwdc2021-10296_hd.mp4?dl=1
out=[2021] [Session 10296] Diagnose unreliable code with test repetitions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10023/5/ED227AE3-34ED-45F7-BB9D-7E4F06876C3B/downloads/wwdc2021-10023_hd.mp4?dl=1
out=[2021] [Session 10023] Direct and reflect focus in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10031/10/44412231-AD6C-40B4-8253-43BC3EEBC768/downloads/wwdc2021-10031_hd.mp4?dl=1
out=[2021] [Session 10031] Discover Web Inspector improvements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10197/5/4B9FBC81-D676-431E-934C-6DD3EE985C64/downloads/wwdc2021-10197_hd.mp4?dl=1
out=[2021] [Session 10197] Discover and curate Swift Packages using Collections.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10229/3/B5993DB1-3978-4019-B109-364AE2E6F14A/downloads/wwdc2021-10229_hd.mp4?dl=1
out=[2021] [Session 10229] Discover compilation workflows in Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10101/7/50A5D34B-6D32-429A-B737-D3C0C9EB58B8/downloads/wwdc2021-10101_hd.mp4?dl=1
out=[2021] [Session 10101] Discover rolling clips with ReplayKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10204/4/CF00E449-A95A-4F82-8CCF-DF5B980665A5/downloads/wwdc2021-10204_hd.mp4?dl=1
out=[2021] [Session 10204] Distribute apps in Xcode with cloud signing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10231/3/E4613D08-78BF-4C2F-AE4E-E1A4B7A68D78/downloads/wwdc2021-10231_hd.mp4?dl=1
out=[2021] [Session 10231] Donate intents and expand your app’s presence.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10207/5/1AF9A073-9D29-4091-9876-AE8868480EDA/downloads/wwdc2021-10207_hd.mp4?dl=1
out=[2021] [Session 10207] Embrace Expected Failures in XCTest.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10073/7/53148F9F-7E28-46AA-AD05-CC2ABEC68EDC/downloads/wwdc2021-10073_hd.mp4?dl=1
out=[2021] [Session 10073] Explore ARKit 5.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10208/7/D03FEAA6-4A84-48E0-BC4B-0B194701D23A/downloads/wwdc2021-10208_hd.mp4?dl=1
out=[2021] [Session 10208] Explore Digital Crown, Trackpad, and iPad pointer automation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10161/5/A571AEFA-117F-4E9C-B4A0-C4543637CBFA/downloads/wwdc2021-10161_hd.mp4?dl=1
out=[2021] [Session 10161] Explore HDR rendering with EDR.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10041/6/1CB4D0E9-CCA8-4C66-80DA-5887CF8F06C5/downloads/wwdc2021-10041_hd.mp4?dl=1
out=[2021] [Session 10041] Extract document data using Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10137/7/FB724053-0CDB-4228-A9A7-CA326DC41FBE/downloads/wwdc2021-10137_hd.mp4?dl=1
out=[2021] [Session 10137] Improve MDM assignment of Apps and Books.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10046/3/9D12DB10-3776-4369-BF86-964B98D2C082/downloads/wwdc2021-10046_hd.mp4?dl=1
out=[2021] [Session 10046] Improve access to Photos in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10220/6/3866585A-3920-44B4-AB3F-03A446FCDE3A/downloads/wwdc2021-10220_hd.mp4?dl=1
out=[2021] [Session 10220] Localize your SwiftUI app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10129/6/7E46C26F-2722-4ABF-88BF-38CDBDC23E26/downloads/wwdc2021-10129_hd.mp4?dl=1
out=[2021] [Session 10129] Manage software updates in your organization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10316/8/F3A4B359-293E-4760-A055-B8998AC4CE02/downloads/wwdc2021-10316_hd.mp4?dl=1
out=[2021] [Session 10316] Meditation for fidgety skeptics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10257/6/1A9F8965-41D7-4A10-A0B1-36FE84E977EE/downloads/wwdc2021-10257_hd.mp4?dl=1
out=[2021] [Session 10257] Meet ClassKit for file-based apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10033/6/E381AF60-070C-4A7D-A135-386670DC7053/downloads/wwdc2021-10033_hd.mp4?dl=1
out=[2021] [Session 10033] Meet privacy-preserving ad attribution.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10148/8/2E6A96C2-2CC3-4852-A318-C5F493B55EC6/downloads/wwdc2021-10148_hd.mp4?dl=1
out=[2021] [Session 10148] Optimize high-end games for Apple GPUs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10048/6/DE8F1516-0148-4630-A824-44F1BA28F5AA/downloads/wwdc2021-10048_hd.mp4?dl=1
out=[2021] [Session 10048] Principles of great widgets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10120/11/284E99F6-0E62-4027-AE02-86A26EEBEC07/downloads/wwdc2021-10120_hd.mp4?dl=1
out=[2021] [Session 10120] Support Full Keyboard Access in your iOS app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10175/5/AC32E663-B4D3-4BFF-B370-D1511009CCCB/downloads/wwdc2021-10175_hd.mp4?dl=1
out=[2021] [Session 10175] Support customers and handle refunds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10254/4/528331E5-D153-47F1-81E3-247B1A78A930/downloads/wwdc2021-10254_hd.mp4?dl=1
out=[2021] [Session 10254] Swift concurrency - Behind the scenes.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10182/5/9EA118F5-E717-489F-816F-8BF659B0D8AF/downloads/wwdc2021-10182_hd.mp4?dl=1
out=[2021] [Session 10182] Sync files to the cloud with FileProvider on macOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10003/7/2AE1FFC2-BFF3-43AC-9488-AA5514C204FB/downloads/wwdc2021-10003_hd.mp4?dl=1
out=[2021] [Session 10003] There and back again - Data transfer on Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10314/1/DC0C9570-CD79-4791-ABA0-F2A2700CDBCA/downloads/wwdc2021-10314_hd.mp4?dl=1
out=[2021] [Session 10314] Thursday's Mindful Cooldown for Coding… brought to you by Fitness+.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10258/4/ADC12B98-365A-47E7-9A42-952847271DEF/downloads/wwdc2021-10258_hd.mp4?dl=1
out=[2021] [Session 10258] Understand and eliminate hangs from your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/103/11/E4F0C677-1137-4FBD-B02B-11F849D6D6FA/downloads/wwdc2021-103_hd.mp4?dl=1
out=[2021] [Session 103] WWDC21 Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/113/3/E9825AAC-7546-4091-9A61-4697FDA111C7/downloads/wwdc2021-113_hd.mp4?dl=1
out=[2021] [Session 113] WWDC21 Apple Design Awards (ASL).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10115/3/E7E6A158-C193-43E7-9C20-5CA614ED768E/downloads/wwdc2021-10115_hd.mp4?dl=1
out=[2021] [Session 10115] What's new in App Analytics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10146/5/DB6BBE8F-5AF9-4331-BF7B-F8DF5AC43A92/downloads/wwdc2021-10146_hd.mp4?dl=1
out=[2021] [Session 10146] What’s new in AVFoundation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10324/1/BC5C09AF-2CA6-44C8-B371-FD5706AF4558/downloads/wwdc2021-10324_hd.mp4?dl=1
out=[2021] [Session 10324] Thursday@WWDC21.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10216/4/884C234F-2424-47DF-A4CF-A9010D869C66/downloads/wwdc2021-10216_hd.mp4?dl=1
out=[2021] [Session 10216] ARC in Swift - Basics and beyond.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10152/6/38BC0CF8-718D-4950-9CC4-B64396F5FFDD/downloads/wwdc2021-10152_hd.mp4?dl=1
out=[2021] [Session 10152] Accelerate machine learning with Metal Performance Shaders Graph.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10094/7/81661D98-9D24-4A8F-8805-9460365F986B/downloads/wwdc2021-10094_hd.mp4?dl=1
out=[2021] [Session 10094] Accelerate networking with HTTP/3 and QUIC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10067/7/1E50A29A-8D8C-4103-B1E4-F62F2C5AA329/downloads/wwdc2021-10067_hd.mp4?dl=1
out=[2021] [Session 10067] Bring Recurring Leaderboards to your game.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10068/4/12425579-AD44-4883-AF2E-0453E511183B/downloads/wwdc2021-10068_hd.mp4?dl=1
out=[2021] [Session 10068] Build a research and care app, part 1 - Setup onboarding.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10069/3/A1BAF400-4B07-4759-956D-2A7D5522311C/downloads/wwdc2021-10069_hd.mp4?dl=1
out=[2021] [Session 10069] Build a research and care app, part 2 - Schedule tasks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10282/6/B06925A6-3197-4AAB-98EA-4634CD61EED0/downloads/wwdc2021-10282_hd.mp4?dl=1
out=[2021] [Session 10282] Build a research and care app, part 3 - Visualize progress.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10015/4/7C4C52B4-3B54-4FCE-8300-BEA17FC4A7AE/downloads/wwdc2021-10015_hd.mp4?dl=1
out=[2021] [Session 10015] Build apps that share data through CloudKit and Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10189/6/94D452D6-3731-4C08-8EFA-BD8F6B8853ED/downloads/wwdc2021-10189_hd.mp4?dl=1
out=[2021] [Session 10189] Coordinate media playback in Safari with Group Activities.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10077/9/BE748DC5-387D-4E4A-8D9B-05B80B919870/downloads/wwdc2021-10077_hd.mp4?dl=1
out=[2021] [Session 10077] Create 3D workflows with USD.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10293/4/0B5E2326-630B-4D85-A75B-410E36F1D69F/downloads/wwdc2021-10293_hd.mp4?dl=1
out=[2021] [Session 10293] Cross reference content with the Apple Music API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10029/4/8B75DA3D-09DF-40FD-AC0E-FB6A7EECE3F1/downloads/wwdc2021-10029_hd.mp4?dl=1
out=[2021] [Session 10029] Design for Safari 15.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10202/3/1E0D5337-0542-423B-9775-7FB518B7707B/downloads/wwdc2021-10202_hd.mp4?dl=1
out=[2021] [Session 10202] Detect bugs early with the static analyzer.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10318/12/ACAF8CC7-BEA9-44B2-A056-557CDC67692C/downloads/wwdc2021-10318_hd.mp4?dl=1
out=[2021] [Session 10318] Developer spotlight - Accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10209/6/D2CF5CC2-D0A6-4347-B833-DD9BECADB976/downloads/wwdc2021-10209_hd.mp4?dl=1
out=[2021] [Session 10209] Discover breakpoint improvements.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10210/4/391A6CFB-228A-4349-AE24-4809307D58F5/downloads/wwdc2021-10210_hd.mp4?dl=1
out=[2021] [Session 10210] Explore advanced project configuration in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10315/1/5A39EBEA-421E-4995-B514-30DF91150838/downloads/wwdc2021-10315_hd.mp4?dl=1
out=[2021] [Session 10315] Friday's Mindful Cooldown for Coding… brought to you by Fitness+.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10117/4/091FF0B0-A3E5-4269-856E-692465CE5E15/downloads/wwdc2021-10117_hd.mp4?dl=1
out=[2021] [Session 10117] Meet CloudKit Console.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10244/5/5C0B3E9F-163D-4DCB-AC48-F92DBE33E112/downloads/wwdc2021-10244_hd.mp4?dl=1
out=[2021] [Session 10244] Mitigate fraud with App Attest and DeviceCheck.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10103/5/345F6518-CBF1-4E40-A52F-0F46541D273E/downloads/wwdc2021-10103_hd.mp4?dl=1
out=[2021] [Session 10103] Optimize for 5G networks.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10147/5/B362C41F-D567-4137-8333-0B4FF56AD528/downloads/wwdc2021-10147_hd.mp4?dl=1
out=[2021] [Session 10147] Optimize for variable refresh rate displays.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10278/6/22D440E4-3CF8-4968-8FCB-6F21B4587DAD/downloads/wwdc2021-10278_hd.mp4?dl=1
out=[2021] [Session 10278] Practice audio haptic design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10239/4/8C138558-C5F3-4328-AA26-1F2D924B69F9/downloads/wwdc2021-10239_hd.mp4?dl=1
out=[2021] [Session 10239] Reduce network delays for your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10110/4/6F66F9D8-DC2E-40C0-8C90-90FD8375D0B9/downloads/wwdc2021-10110_hd.mp4?dl=1
out=[2021] [Session 10110] Safeguard your accounts, promotions, and content.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10221/4/E712C2D5-BD11-435B-8F19-C4ACFD79160A/downloads/wwdc2021-10221_hd.mp4?dl=1
out=[2021] [Session 10221] Streamline your localized strings.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10062/4/9B92BC78-A602-46D4-BABD-38CFE255CCDE/downloads/wwdc2021-10062_hd.mp4?dl=1
out=[2021] [Session 10062] SwiftUI on the Mac - Build the fundamentals.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10289/3/C1B68628-5A05-418B-A4FC-9EFD3E970D80/downloads/wwdc2021-10289_hd.mp4?dl=1
out=[2021] [Session 10289] SwiftUI on the Mac - The finishing touches.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10121/6/9DFDD9FF-82AF-48DC-A0C1-C2CB8A518D93/downloads/wwdc2021-10121_hd.mp4?dl=1
out=[2021] [Session 10121] Tailor the VoiceOver experience in your data-rich apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10038/3/84EFF5EC-346B-4A8C-BDAC-47F3258352D9/downloads/wwdc2021-10038_hd.mp4?dl=1
out=[2021] [Session 10038] Tune your Core ML models.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10233/4/72F4F22E-DDAB-4A58-B049-7AC537198EFC/downloads/wwdc2021-10233_hd.mp4?dl=1
out=[2021] [Session 10233] Use Accelerate to improve performance and incorporate encrypted archives.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10253/4/F323F580-06C3-4F19-9548-AB7560E40CD4/downloads/wwdc2021-10253_hd.mp4?dl=1
out=[2021] [Session 10253] Write a DSL in Swift using result builders.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2021/10325/1/1B2FDBA9-AB3E-4194-B18F-FE4C3CA435B2/downloads/wwdc2021-10325_hd.mp4?dl=1
out=[2021] [Session 10325] Friday@WWDC21.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/102/3/29AB52D7-09CF-4A22-8C26-84AEB4A90097/downloads/wwdc2022-102_hd.mp4?dl=1
out=[2022] [Session 102] Platforms State of the Union.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/103/3/AFC3701A-AC3C-4F5D-9AB3-1CDE42CB5763/downloads/wwdc2022-103_hd.mp4?dl=1
out=[2022] [Session 103] Apple Design Awards.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/112/1/EA7B4115-D8B3-4D25-8463-CD4D748729A3/downloads/wwdc2022-112_hd.mp4?dl=1
out=[2022] [Session 112] Platforms State of the Union (ASL).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/113/1/62CF83FA-0B10-4D25-A188-368E2557F674/downloads/wwdc2022-113_hd.mp4?dl=1
out=[2022] [Session 113] Apple Design Awards (ASL).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10001/4/8F64C0B4-8E12-4C78-A0CB-8B7239AA5D4B/downloads/wwdc2022-10001_hd.mp4?dl=1
out=[2022] [Session 10001] Explore navigation design for iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10002/5/F229C2EC-A6BC-4671-91A0-65FBC9D71DDF/downloads/wwdc2022-10002_hd.mp4?dl=1
out=[2022] [Session 10002] Create macOS or Linux virtual machines.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10003/5/C8AAE478-A435-4DA4-8256-F32941E32204/downloads/wwdc2022-10003_hd.mp4?dl=1
out=[2022] [Session 10003] Meet WeatherKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10005/4/55C7CDFC-2E36-4AC0-8E77-7327EBD9E0E9/downloads/wwdc2022-10005_hd.mp4?dl=1
out=[2022] [Session 10005] What's new in HealthKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10006/3/30C45DFC-CD54-4D31-894F-9954C9A58C93/downloads/wwdc2022-10006_hd.mp4?dl=1
out=[2022] [Session 10006] Meet Apple Maps Server APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10007/4/2E07F67B-3E73-4DC2-A300-93EB4AF56295/downloads/wwdc2022-10007_hd.mp4?dl=1
out=[2022] [Session 10007] What's new with in-app purchase.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10008/5/BB4E3444-7C8E-42CC-B427-08DA670C9D41/downloads/wwdc2022-10008_hd.mp4?dl=1
out=[2022] [Session 10008] What's new in Nearby Interaction.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10009/5/22B7E083-47EE-4292-AD3E-6622DA2DF064/downloads/wwdc2022-10009_hd.mp4?dl=1
out=[2022] [Session 10009] What’s new in iPad app design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10015/4/EE2F3B42-E5BA-4A10-99CE-3BBF209E1035/downloads/wwdc2022-10015_hd.mp4?dl=1
out=[2022] [Session 10015] Design for Collaboration with Messages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10016/4/4A58011C-EB98-4462-A8F7-8EDB8A69BBE7/downloads/wwdc2022-10016_hd.mp4?dl=1
out=[2022] [Session 10016] Get more mileage out of your app with CarPlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10017/3/6F4C9F52-725A-4AD2-83BD-A3D43D29A914/downloads/wwdc2022-10017_hd.mp4?dl=1
out=[2022] [Session 10017] Explore the machine learning development experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10018/6/1C7686E9-BB02-4797-B131-7FA5BD1B6133/downloads/wwdc2022-10018_hd.mp4?dl=1
out=[2022] [Session 10018] Bring Continuity Camera to your macOS app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10019/4/CA2236CA-EAD0-454F-8556-FA583BA70590/downloads/wwdc2022-10019_hd.mp4?dl=1
out=[2022] [Session 10019] Get to know Create ML Components.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10020/3/D44F2D64-E1DB-492F-9D23-1BFD26FF7EF2/downloads/wwdc2022-10020_hd.mp4?dl=1
out=[2022] [Session 10020] Compose advanced models with Create ML Components.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10022/5/62C081E5-0066-440B-BDE0-A89D5099C4B8/downloads/wwdc2022-10022_hd.mp4?dl=1
out=[2022] [Session 10022] Create camera extensions with Core Media IO.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10023/3/7AAE9501-211F-4201-B017-2AAC7F0C2556/downloads/wwdc2022-10023_hd.mp4?dl=1
out=[2022] [Session 10023] What's new in the Photos picker.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10024/3/9BD19E63-1BFD-49E9-A941-5CA5A937682C/downloads/wwdc2022-10024_hd.mp4?dl=1
out=[2022] [Session 10024] What's new in Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10025/4/5DB691AA-D403-4394-885D-0F1F18772715/downloads/wwdc2022-10025_hd.mp4?dl=1
out=[2022] [Session 10025] Capture machine-readable codes and text with VisionKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10026/3/346C760E-A60C-4D64-89A7-26C888CBBE0E/downloads/wwdc2022-10026_hd.mp4?dl=1
out=[2022] [Session 10026] Add Live Text interaction to your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10027/3/F6386488-80EB-46AC-BFEE-23B81B5E621A/downloads/wwdc2022-10027_hd.mp4?dl=1
out=[2022] [Session 10027] Optimize your Core ML usage.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10028/3/F2DB18FC-F40C-4FB9-A080-5202CE2794CA/downloads/wwdc2022-10028_hd.mp4?dl=1
out=[2022] [Session 10028] Create custom catalogs at scale with ShazamKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10032/6/69FD8F9D-5C29-4114-9C81-DF1ACC4B4BCA/downloads/wwdc2022-10032_hd.mp4?dl=1
out=[2022] [Session 10032] Dive into App Intents.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10034/4/09670B48-23F9-4B12-87A7-05A34F146625/downloads/wwdc2022-10034_hd.mp4?dl=1
out=[2022] [Session 10034] Design for Arabic.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10035/5/78F0B50C-C39D-4819-88A0-A1167D43FD7E/downloads/wwdc2022-10035_hd.mp4?dl=1
out=[2022] [Session 10035] What's new in MapKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10037/6/63F99354-D35D-475C-8069-74E58C813299/downloads/wwdc2022-10037_hd.mp4?dl=1
out=[2022] [Session 10037] Writing for interfaces.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10038/4/42910CBB-36EB-4C09-9234-DAB67E71BAA6/downloads/wwdc2022-10038_hd.mp4?dl=1
out=[2022] [Session 10038] What's new with SKAdNetwork.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10039/5/38FCCB56-38F1-4E4D-B7D0-CF031642775A/downloads/wwdc2022-10039_hd.mp4?dl=1
out=[2022] [Session 10039] What's new in StoreKit testing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10040/3/EA4705F8-227B-4C1A-81CF-328BB3CA9E68/downloads/wwdc2022-10040_hd.mp4?dl=1
out=[2022] [Session 10040] Explore in-app purchase integration and migration.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10041/4/A173FAFA-9D08-4E7F-9154-7B821167B78E/downloads/wwdc2022-10041_hd.mp4?dl=1
out=[2022] [Session 10041] What’s new in Wallet and Apple Pay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10043/3/F1797DDF-C678-4B65-9571-42C3B99B40B8/downloads/wwdc2022-10043_hd.mp4?dl=1
out=[2022] [Session 10043] What's new in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10044/4/A6EC2B38-5E5C-44B0-8CB4-F4B0118ADE6E/downloads/wwdc2022-10044_hd.mp4?dl=1
out=[2022] [Session 10044] Discover Benchmarks in App Analytics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10045/3/F899BEB5-EBE4-422E-AE52-AEF752A194A0/downloads/wwdc2022-10045_hd.mp4?dl=1
out=[2022] [Session 10045] What's new in managing Apple devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10046/3/776B5FA8-B8C0-46DA-9EDE-7A0BE5F03772/downloads/wwdc2022-10046_hd.mp4?dl=1
out=[2022] [Session 10046] Adopt declarative device management.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10048/4/8DF121DF-6825-4FBB-B570-A75F5A44CCB7/downloads/wwdc2022-10048_hd.mp4?dl=1
out=[2022] [Session 10048] What's new in Safari and WebKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10049/3/47260DC4-814E-466D-AD96-D29DFC5459BA/downloads/wwdc2022-10049_hd.mp4?dl=1
out=[2022] [Session 10049] What's new in WKWebView.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10050/5/358B551F-283C-4CD1-8172-DAC014727969/downloads/wwdc2022-10050_hd.mp4?dl=1
out=[2022] [Session 10050] Complications and widgets - Reloaded.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10051/3/912F72F4-A83D-4923-A276-8B231CB7D837/downloads/wwdc2022-10051_hd.mp4?dl=1
out=[2022] [Session 10051] Go further with Complications in WidgetKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10052/5/241B4005-877E-40CD-91AA-4CE0714BB2E6/downloads/wwdc2022-10052_hd.mp4?dl=1
out=[2022] [Session 10052] What's new in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10053/4/8898553F-A636-4C8D-AAAF-DE7463409879/downloads/wwdc2022-10053_hd.mp4?dl=1
out=[2022] [Session 10053] Discover Sign in with Apple at Work & School.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10054/4/E85249AE-F795-40DC-BD9E-A3E385906FE6/downloads/wwdc2022-10054_hd.mp4?dl=1
out=[2022] [Session 10054] The SwiftUI cookbook for navigation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10056/5/F52141E2-6868-4629-A64D-83E618CD6CD5/downloads/wwdc2022-10056_hd.mp4?dl=1
out=[2022] [Session 10056] Compose custom layouts with SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10058/3/A2E41140-1058-4AFF-BF2C-5058A6588994/downloads/wwdc2022-10058_hd.mp4?dl=1
out=[2022] [Session 10058] SwiftUI on iPad - Organize your interface.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10059/3/689200F0-E14A-4B93-A3B2-7D95D747540F/downloads/wwdc2022-10059_hd.mp4?dl=1
out=[2022] [Session 10059] The craft of SwiftUI API design - Progressive disclosure.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10061/4/012AFD7A-B26E-4C25-9C6C-AB01D5336EA7/downloads/wwdc2022-10061_hd.mp4?dl=1
out=[2022] [Session 10061] Bring multiple windows to your SwiftUI app .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10062/4/004375E4-2295-45FB-9D6D-20F1B8C3834C/downloads/wwdc2022-10062_hd.mp4?dl=1
out=[2022] [Session 10062] Meet Transferable.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10063/4/0942FD31-5504-40C2-A4E8-6AAAC31E459C/downloads/wwdc2022-10063_hd.mp4?dl=1
out=[2022] [Session 10063] Accelerate machine learning with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10064/9/B7DD74D7-2555-495C-9DA2-8A9B7D0C6D8B/downloads/wwdc2022-10064_hd.mp4?dl=1
out=[2022] [Session 10064] Reach new players with Game Center dashboard.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10065/5/C221E77C-502C-47CD-B0C4-9091B529DD77/downloads/wwdc2022-10065_hd.mp4?dl=1
out=[2022] [Session 10065] Plug-in and play - Add Apple frameworks to your Unity game projects.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10066/4/3B036508-C4CA-4DA9-AE0F-83A6E607ADF8/downloads/wwdc2022-10066_hd.mp4?dl=1
out=[2022] [Session 10066] Discover Metal 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10068/4/CD436E87-CE6B-4E99-A7EA-66C5A424B38B/downloads/wwdc2022-10068_hd.mp4?dl=1
out=[2022] [Session 10068] What's new in UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10069/4/1646A8BA-EEFA-4533-A631-3BCDF704A4EB/downloads/wwdc2022-10069_hd.mp4?dl=1
out=[2022] [Session 10069] Meet desktop class iPad.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10070/3/03E2BD27-04DD-4C07-A662-B94B7F784C65/downloads/wwdc2022-10070_hd.mp4?dl=1
out=[2022] [Session 10070] Build a desktop-class iPad app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10071/4/A7198C26-97D7-49C3-8FE7-907808F342DE/downloads/wwdc2022-10071_hd.mp4?dl=1
out=[2022] [Session 10071] Adopt desktop class editing interactions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10072/4/03036EB8-1A2E-4ADD-A5A3-C50A9AFA841C/downloads/wwdc2022-10072_hd.mp4?dl=1
out=[2022] [Session 10072] Use SwiftUI with UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10074/3/1BF7E42D-BA6E-467E-9A03-1973DCC5E9A5/downloads/wwdc2022-10074_hd.mp4?dl=1
out=[2022] [Session 10074] What's new in AppKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10075/5/041C40B8-2F14-4B08-8406-CFCE8E85A1B0/downloads/wwdc2022-10075_hd.mp4?dl=1
out=[2022] [Session 10075] Use SwiftUI with AppKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10076/6/DC2BEEAC-6D3F-40B0-B9A7-0C46031B0C91/downloads/wwdc2022-10076_hd.mp4?dl=1
out=[2022] [Session 10076] Bring your iOS app to the Mac.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10077/4/C35119F9-FA1E-478C-9638-E90C1153FACD/downloads/wwdc2022-10077_hd.mp4?dl=1
out=[2022] [Session 10077] Replace CAPTCHAs with Private Access Tokens.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10078/4/688F144C-0F4D-4F7B-B77A-F10A56978C49/downloads/wwdc2022-10078_hd.mp4?dl=1
out=[2022] [Session 10078] Reduce networking delays for a more responsive app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10079/5/31E85A57-3035-4B6A-9BA4-4A73D156F55E/downloads/wwdc2022-10079_hd.mp4?dl=1
out=[2022] [Session 10079] Improve DNS security for apps and servers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10082/5/31EEEDCE-D908-48E8-AEDA-A40811515F69/downloads/wwdc2022-10082_hd.mp4?dl=1
out=[2022] [Session 10082] Track down hangs with Xcode and on-device detection.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10083/4/B0CF7C82-605A-4F0E-9BF2-C1F540932B45/downloads/wwdc2022-10083_hd.mp4?dl=1
out=[2022] [Session 10083] Power down - Improve battery consumption.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10089/3/473B1E55-B2A6-42BB-AA96-EE2599D6E779/downloads/wwdc2022-10089_hd.mp4?dl=1
out=[2022] [Session 10089] What's new in PDFKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10090/4/5A0AE4B4-BE39-434E-8B9E-0910F2FD152D/downloads/wwdc2022-10090_hd.mp4?dl=1
out=[2022] [Session 10090] What's new in TextKit and text views.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10092/3/E39F623F-97FE-48C0-9987-898078EB9D8B/downloads/wwdc2022-10092_hd.mp4?dl=1
out=[2022] [Session 10092] Meet passkeys.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10093/3/D9CE5DEB-FE73-4FEF-9993-9551EB58CBDC/downloads/wwdc2022-10093_hd.mp4?dl=1
out=[2022] [Session 10093] Integrate your custom collaboration app with Messages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10094/4/6D2459BF-7717-4646-BE9A-E73C7E602DB9/downloads/wwdc2022-10094_hd.mp4?dl=1
out=[2022] [Session 10094] Add Shared with You to your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10095/5/DB09B90A-7453-4E3F-90E9-4AB7322DD253/downloads/wwdc2022-10095_hd.mp4?dl=1
out=[2022] [Session 10095] Enhance collaboration experiences with Messages.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10096/3/A04D6D9D-A138-488C-A470-371FB62609AA/downloads/wwdc2022-10096_hd.mp4?dl=1
out=[2022] [Session 10096] What’s new in privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10097/4/1195D4FF-4AF5-48B0-BB92-948D01AF942B/downloads/wwdc2022-10097_hd.mp4?dl=1
out=[2022] [Session 10097] What's new in App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10098/4/0243E8FF-8341-4FD5-BACD-CEB81B4730DF/downloads/wwdc2022-10098_hd.mp4?dl=1
out=[2022] [Session 10098] Meet Web Push for Safari.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10099/5/AE8329C9-B427-49CF-95BE-71C9B5F49627/downloads/wwdc2022-10099_hd.mp4?dl=1
out=[2022] [Session 10099] What’s new in Safari Web Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10100/8/7E160FF7-856D-4B6E-BE75-633EF8C15CA5/downloads/wwdc2022-10100_hd.mp4?dl=1
out=[2022] [Session 10100] Create Safari Web Inspector Extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10101/4/E7651C9D-CAC8-44A9-9BF8-8D0DC317F4A2/downloads/wwdc2022-10101_hd.mp4?dl=1
out=[2022] [Session 10101] Go bindless with Metal 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10102/4/E03398C4-8CAE-4CA1-905A-22205249E038/downloads/wwdc2022-10102_hd.mp4?dl=1
out=[2022] [Session 10102] Target and optimize GPU binaries with Metal 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10103/7/0DA14AB6-97A2-4E95-A960-E27CBC5E5012/downloads/wwdc2022-10103_hd.mp4?dl=1
out=[2022] [Session 10103] Boost performance with MetalFX Upscaling.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10104/4/E095D698-00CE-4A00-812C-4BA755CE26DB/downloads/wwdc2022-10104_hd.mp4?dl=1
out=[2022] [Session 10104] Load resources faster with Metal 3.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10105/7/A0348CEB-F711-422B-9FA4-D1A0E1DB8BF8/downloads/wwdc2022-10105_hd.mp4?dl=1
out=[2022] [Session 10105] Maximize your Metal ray tracing performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10106/5/56A1A2BE-7EF5-4AA0-AE93-1F93BD885019/downloads/wwdc2022-10106_hd.mp4?dl=1
out=[2022] [Session 10106] Profile and optimize your game's memory.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10107/3/85B12DD5-27C3-420C-97F8-4C71326BB3D0/downloads/wwdc2022-10107_hd.mp4?dl=1
out=[2022] [Session 10107] Get it right (to left).mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10108/4/1F8BF487-ABEF-47CD-AC84-C3AC2E35885A/downloads/wwdc2022-10108_hd.mp4?dl=1
out=[2022] [Session 10108] Streamline local authorization flows.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10109/3/AC093573-81B2-4A1E-BA66-50E413DF5660/downloads/wwdc2022-10109_hd.mp4?dl=1
out=[2022] [Session 10109] What’s new in notarization for Mac apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10110/3/9DDED4EB-547B-46DD-AEE5-9D3F2C60CFF8/downloads/wwdc2022-10110_hd.mp4?dl=1
out=[2022] [Session 10110] Build global apps - Localization by example.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10115/3/76BE7C00-CB67-4FF0-A159-19D8B091CED3/downloads/wwdc2022-10115_hd.mp4?dl=1
out=[2022] [Session 10115] What’s new in CloudKit Console.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10116/5/1DD917FC-5154-4B41-93E7-4D8731FB6D2E/downloads/wwdc2022-10116_hd.mp4?dl=1
out=[2022] [Session 10116] Meet CKTool JS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10117/3/BC2A00F7-7836-4346-B4DD-143192926205/downloads/wwdc2022-10117_hd.mp4?dl=1
out=[2022] [Session 10117] Enhance voice communication with Push to Talk.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10119/4/8D4ACDA6-A3CE-4294-8DFE-B4CF5DE26D86/downloads/wwdc2022-10119_hd.mp4?dl=1
out=[2022] [Session 10119] Optimize your use of Core Data and CloudKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10120/5/7685DE64-40AC-4C35-9865-8CDA798501E4/downloads/wwdc2022-10120_hd.mp4?dl=1
out=[2022] [Session 10120] Evolve your Core Data schema.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10121/5/E497A884-24B9-4D6C-A35D-6F9BEEB985B6/downloads/wwdc2022-10121_hd.mp4?dl=1
out=[2022] [Session 10121] Meet Focus filters.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10122/5/F35FC4AA-E76F-444D-85D0-77A76E7D3E15/downloads/wwdc2022-10122_hd.mp4?dl=1
out=[2022] [Session 10122] Enhance your Sign in with Apple experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10126/4/042EC236-E96E-4969-A68A-1D379C84D647/downloads/wwdc2022-10126_hd.mp4?dl=1
out=[2022] [Session 10126] Discover ARKit 6.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10127/3/C6A70FDB-501E-42BB-A50E-9794D4050C07/downloads/wwdc2022-10127_hd.mp4?dl=1
out=[2022] [Session 10127] Create parametric 3D room scans with RoomPlan.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10128/3/A48642CC-4EA4-478D-BC86-9AD9FE213885/downloads/wwdc2022-10128_hd.mp4?dl=1
out=[2022] [Session 10128] Bring your world into augmented reality.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10129/6/FB8C0A23-9B2F-4564-B2C3-D48F6B53BB9A/downloads/wwdc2022-10129_hd.mp4?dl=1
out=[2022] [Session 10129] Understand USD fundamentals.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10131/4/AE5E1692-81D5-4EF7-A74E-667A4D426D71/downloads/wwdc2022-10131_hd.mp4?dl=1
out=[2022] [Session 10131] Qualities of great AR experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10132/3/E1001357-38F4-429C-A7E2-495996D84893/downloads/wwdc2022-10132_hd.mp4?dl=1
out=[2022] [Session 10132] Discover PhotoKit change history.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10133/4/BBFD71DD-1E5F-4843-861E-0D333BAA1A3F/downloads/wwdc2022-10133_hd.mp4?dl=1
out=[2022] [Session 10133] Build a productivity app for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10135/4/B6405ED7-98EE-473C-8174-144D5E72CA02/downloads/wwdc2022-10135_hd.mp4?dl=1
out=[2022] [Session 10135] Get timely alerts from Bluetooth devices on watchOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10136/4/ED1436D1-9197-468B-8B26-5DAD9AEC3720/downloads/wwdc2022-10136_hd.mp4?dl=1
out=[2022] [Session 10136] Hello Swift Charts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10137/3/AB0A9BA9-E0B1-440B-98E6-E9C8A395FF34/downloads/wwdc2022-10137_hd.mp4?dl=1
out=[2022] [Session 10137] Swift Charts - Raise the bar .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10139/5/67B2BB72-D5FC-4EAE-834D-E7D562F22A4D/downloads/wwdc2022-10139_hd.mp4?dl=1
out=[2022] [Session 10139] Make a great SharePlay experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10140/3/7F5B5E00-19E6-4DBE-A169-044C9D0418F0/downloads/wwdc2022-10140_hd.mp4?dl=1
out=[2022] [Session 10140] What's new in SharePlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10141/4/31DD4CF1-C4A2-4A5C-A3C8-B231788AE125/downloads/wwdc2022-10141_hd.mp4?dl=1
out=[2022] [Session 10141] Explore USD tools and rendering.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10142/4/D8D87522-CCCC-46BA-8C48-ECA2A5F9E36E/downloads/wwdc2022-10142_hd.mp4?dl=1
out=[2022] [Session 10142] Efficiency awaits - Background tasks in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10143/3/585D8CA2-12BF-4F97-8DDD-11A5561BD143/downloads/wwdc2022-10143_hd.mp4?dl=1
out=[2022] [Session 10143] Discover Managed Device Attestation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10144/3/B295073D-367F-4EAB-A65F-6FBB86ECDD6E/downloads/wwdc2022-10144_hd.mp4?dl=1
out=[2022] [Session 10144] Deliver reliable streams with HLS Content Steering.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10145/4/1BA9D9C4-C8EC-4D33-A67A-2DFEBD032041/downloads/wwdc2022-10145_hd.mp4?dl=1
out=[2022] [Session 10145] What’s new in HLS Interstitials.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10147/5/B7675782-6F3F-4D44-B56D-06CCE29D9E22/downloads/wwdc2022-10147_hd.mp4?dl=1
out=[2022] [Session 10147] Create a great video playback experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10148/4/ABD3D85D-6492-4E1A-B39A-BEBABBC5C075/downloads/wwdc2022-10148_hd.mp4?dl=1
out=[2022] [Session 10148] Meet Apple Music API and MusicKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10149/4/BAEE96D6-1250-4911-A2D6-A96AC4D48ED4/downloads/wwdc2022-10149_hd.mp4?dl=1
out=[2022] [Session 10149] What’s new in AVQT.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10151/5/3F44347B-F0CF-4DFC-89A8-C801EE456545/downloads/wwdc2022-10151_hd.mp4?dl=1
out=[2022] [Session 10151] Add accessibility to your Unity games.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10152/3/0694C884-66D5-46B5-BAC6-A6671661A771/downloads/wwdc2022-10152_hd.mp4?dl=1
out=[2022] [Session 10152] Create accessible Single App Mode experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10153/6/390C5399-8CDD-4D3E-8701-29B14E042A94/downloads/wwdc2022-10153_hd.mp4?dl=1
out=[2022] [Session 10153] What's new in web accessibility.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10155/5/6A4BFEE6-F1BC-4E6A-9A03-13EBF7D38664/downloads/wwdc2022-10155_hd.mp4?dl=1
out=[2022] [Session 10155] Take ScreenCaptureKit to the next level.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10156/3/740DABB6-6584-492E-AA71-A628E023B346/downloads/wwdc2022-10156_hd.mp4?dl=1
out=[2022] [Session 10156] Meet ScreenCaptureKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10157/3/A3A24118-7045-4049-9392-6B10E8CDD489/downloads/wwdc2022-10157_hd.mp4?dl=1
out=[2022] [Session 10157] What's new in SF Symbols 4.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10158/4/94078977-F8B3-4097-A94F-9C4931D9A1FE/downloads/wwdc2022-10158_hd.mp4?dl=1
out=[2022] [Session 10158] Adopt Variable Color in SF Symbols.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10159/5/4B824E2A-E99A-492A-84EA-6F6ECC279EB3/downloads/wwdc2022-10159_hd.mp4?dl=1
out=[2022] [Session 10159] Scale compute workloads across Apple GPUs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10160/5/F0ACC08B-EFC0-459E-AE6D-DEA492619F49/downloads/wwdc2022-10160_hd.mp4?dl=1
out=[2022] [Session 10160] Program Metal in C++ with metal-cpp.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10162/5/9408DC15-0B03-4DD9-8ADE-161821D0E7FC/downloads/wwdc2022-10162_hd.mp4?dl=1
out=[2022] [Session 10162] Transform your geometry with Metal mesh shaders.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10166/3/144ECF3D-FAB1-44D1-A265-90946F21F612/downloads/wwdc2022-10166_hd.mp4?dl=1
out=[2022] [Session 10166] Explore App Tracking Transparency.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10167/5/043ACD7F-3BC9-4AA1-A5BC-7DCCF91098EA/downloads/wwdc2022-10167_hd.mp4?dl=1
out=[2022] [Session 10167] Create your Privacy Nutrition Label.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10169/5/8F7E31FB-73E9-405E-8031-74902FC37BB8/downloads/wwdc2022-10169_hd.mp4?dl=1
out=[2022] [Session 10169] Design App Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/10170/3/30D42D9F-AF97-4B32-B470-C0A9B4D8C279/downloads/wwdc2022-10170_hd.mp4?dl=1
out=[2022] [Session 10170] Implement App Shortcuts with App Intents.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110332/5/6B7CFC73-E018-439B-8755-EA807A72DEA3/downloads/wwdc2022-110332_hd.mp4?dl=1
out=[2022] [Session 110332] What's new in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110335/4/0F40B105-473E-42E2-A5BD-C33EE3C6B743/downloads/wwdc2022-110335_hd.mp4?dl=1
out=[2022] [Session 110335] Explore Apple Business Essentials.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110336/4/DB808128-449E-420A-9FA1-E5CF7403B7FD/downloads/wwdc2022-110336_hd.mp4?dl=1
out=[2022] [Session 110336] What's new in Screen Time API.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110338/3/BCB38F17-7908-4BD8-8A7A-767EC8C59367/downloads/wwdc2022-110338_hd.mp4?dl=1
out=[2022] [Session 110338] Explore media metadata publishing and playback interactions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110339/4/694E2DB9-0326-40B6-951C-7FF812E944EA/downloads/wwdc2022-110339_hd.mp4?dl=1
out=[2022] [Session 110339] Build device-to-device interactions with Network Framework.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110340/3/B5BDA6B6-597F-460B-A88C-959265B6715D/downloads/wwdc2022-110340_hd.mp4?dl=1
out=[2022] [Session 110340] Design an effective chart.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110341/3/B3803998-3525-4D12-A13D-CFE6C8435AAF/downloads/wwdc2022-110341_hd.mp4?dl=1
out=[2022] [Session 110341] Explore SMS message filters.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110342/3/8AEC6435-2E81-4B94-BBED-35CCAD0AA0CA/downloads/wwdc2022-110342_hd.mp4?dl=1
out=[2022] [Session 110342] Design app experiences with charts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110343/4/61E55FAE-4837-4DAF-912C-8D101B7DF820/downloads/wwdc2022-110343_hd.mp4?dl=1
out=[2022] [Session 110343] SwiftUI on iPad - Add toolbars, titles, and more.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110344/4/3BE29FF5-6545-4560-A014-79CD116180E9/downloads/wwdc2022-110344_hd.mp4?dl=1
out=[2022] [Session 110344] Get to know Developer Mode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110345/4/D78059C0-3932-4CAA-8B45-098BEB4ACF45/downloads/wwdc2022-110345_hd.mp4?dl=1
out=[2022] [Session 110345] What’s new in Endpoint Security.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110347/3/9A5697EE-37FC-497A-AD9F-5033E026866E/downloads/wwdc2022-110347_hd.mp4?dl=1
out=[2022] [Session 110347] Explore more content with MusicKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110348/5/EF06F7AC-5379-4AFF-A0AB-FD1413B78098/downloads/wwdc2022-110348_hd.mp4?dl=1
out=[2022] [Session 110348] Build your first app in Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110349/4/767821EC-6C4C-4F9E-8C8D-1B231B8E1226/downloads/wwdc2022-110349_hd.mp4?dl=1
out=[2022] [Session 110349] Create engaging content for Swift Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110350/4/3B87EB1E-4E88-4D11-817A-16852AEA794C/downloads/wwdc2022-110350_hd.mp4?dl=1
out=[2022] [Session 110350] Visualize and optimize Swift concurrency.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110351/3/2B82DC62-6057-4460-93F4-B99CF7073221/downloads/wwdc2022-110351_hd.mp4?dl=1
out=[2022] [Session 110351] Eliminate data races using Swift Concurrency.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110352/3/961EB9A0-3340-443A-8C57-8665B9034F1D/downloads/wwdc2022-110352_hd.mp4?dl=1
out=[2022] [Session 110352] Embrace Swift generics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110353/4/518CFD38-CEE9-4052-8DB9-6692741930F2/downloads/wwdc2022-110353_hd.mp4?dl=1
out=[2022] [Session 110353] Design protocol interfaces in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110354/5/BFF5625D-B11D-4C9D-B82B-E7A89A669475/downloads/wwdc2022-110354_hd.mp4?dl=1
out=[2022] [Session 110354] What's new in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110355/4/459D7B80-E4A7-428F-ADA8-EF2543CE3350/downloads/wwdc2022-110355_hd.mp4?dl=1
out=[2022] [Session 110355] Meet Swift Async Algorithms.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110356/6/AAC6A083-0D2D-4FFF-B60E-86EF01E37EE2/downloads/wwdc2022-110356_hd.mp4?dl=1
out=[2022] [Session 110356] Meet distributed actors in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110357/3/8FEA2DD3-43EE-44FB-A856-53169F90D683/downloads/wwdc2022-110357_hd.mp4?dl=1
out=[2022] [Session 110357] Meet Swift Regex.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110358/6/CCCFE7E0-48F7-4D00-A8C1-6DB5E768F833/downloads/wwdc2022-110358_hd.mp4?dl=1
out=[2022] [Session 110358] Swift Regex - Beyond the basics.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110359/6/0515ED86-51DB-430A-9521-E5DB4FC59C61/downloads/wwdc2022-110359_hd.mp4?dl=1
out=[2022] [Session 110359] Meet Swift Package plugins.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110360/3/95EF8495-F291-49FD-8958-276AC76C222D/downloads/wwdc2022-110360_hd.mp4?dl=1
out=[2022] [Session 110360] Use Xcode for server-side development.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110361/3/7FB8FB7D-976B-432E-A47D-05ADDFE1BD45/downloads/wwdc2022-110361_hd.mp4?dl=1
out=[2022] [Session 110361] Author fast and reliable tests for Xcode Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110362/3/629CBACC-AF8F-4856-98CA-075275ADEAA4/downloads/wwdc2022-110362_hd.mp4?dl=1
out=[2022] [Session 110362] Link fast - Improve build and launch times.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110363/4/4D40D7E0-771C-43BE-A0B9-7948E0C69CE0/downloads/wwdc2022-110363_hd.mp4?dl=1
out=[2022] [Session 110363] Improve app size and runtime performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110364/4/BA2A87DE-2A6F-4BB2-A81F-2403413E96AB/downloads/wwdc2022-110364_hd.mp4?dl=1
out=[2022] [Session 110364] Demystify parallelization in Xcode builds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110367/3/0C225661-78FA-4245-9A79-C80C825B2DBE/downloads/wwdc2022-110367_hd.mp4?dl=1
out=[2022] [Session 110367] Simplify C++ templates with concepts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110368/6/40936E45-C4DD-4831-B7B9-146B53027E76/downloads/wwdc2022-110368_hd.mp4?dl=1
out=[2022] [Session 110368] What's new in Swift-DocC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110369/4/7FCC1556-7EF4-4CFA-B757-DBCDC51B836A/downloads/wwdc2022-110369_hd.mp4?dl=1
out=[2022] [Session 110369] Improve the discoverability of your Swift-DocC content.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110370/7/31CCC67C-D5AC-4493-AFB4-7B833E2B8162/downloads/wwdc2022-110370_hd.mp4?dl=1
out=[2022] [Session 110370] Debug Swift debugging with LLDB.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110371/4/F41F7DFC-33C6-4BFA-9CC0-D212E30E6599/downloads/wwdc2022-110371_hd.mp4?dl=1
out=[2022] [Session 110371] Use Xcode to develop a multiplatform app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110373/5/9E0B243C-9E0C-4E4E-91FF-AACD903146B2/downloads/wwdc2022-110373_hd.mp4?dl=1
out=[2022] [Session 110373] Bring your driver to iPad with DriverKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110374/5/69623440-5AFC-4AFB-9641-DBC4EEF46379/downloads/wwdc2022-110374_hd.mp4?dl=1
out=[2022] [Session 110374] Get the most out of Xcode Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110375/5/6C8AD7C3-EFFA-4253-82F2-3B8488E3519A/downloads/wwdc2022-110375_hd.mp4?dl=1
out=[2022] [Session 110375] Deep dive into Xcode Cloud for teams.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110379/3/072CE81E-54AA-400F-82CC-3667BB3549E1/downloads/wwdc2022-110379_hd.mp4?dl=1
out=[2022] [Session 110379] Create a more responsive media app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110380/4/F37ED64E-304D-423D-B8FA-17687B8EC980/downloads/wwdc2022-110380_hd.mp4?dl=1
out=[2022] [Session 110380] Display ads and interstitials in SharePlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110381/5/23FB4AFE-1352-4B9D-A2C6-A3F7C232C022/downloads/wwdc2022-110381_hd.mp4?dl=1
out=[2022] [Session 110381] Meet the expanded San Francisco font family.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110384/6/1F377839-E110-4222-BBC2-B0424F6E635C/downloads/wwdc2022-110384_hd.mp4?dl=1
out=[2022] [Session 110384] Support multiple users in tvOS apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110401/6/E6B6BDA3-C922-4FC4-AF6B-EB6C290568A7/downloads/wwdc2022-110401_hd.mp4?dl=1
out=[2022] [Session 110401] Create Swift Package plugins.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110403/3/7B38146A-41F4-422B-A863-6E4277C76C6E/downloads/wwdc2022-110403_hd.mp4?dl=1
out=[2022] [Session 110403] Meet Background Assets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110404/3/55253AC0-EEDC-49B5-884C-CE8F562CC023/downloads/wwdc2022-110404_hd.mp4?dl=1
out=[2022] [Session 110404] Implement proactive in-app purchase restore.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110427/5/60E9EBA5-592E-48D0-9429-A85E40C4C9F0/downloads/wwdc2022-110427_hd.mp4?dl=1
out=[2022] [Session 110427] What's new in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110429/4/60E4BC61-632F-484F-AF90-EA3203042E76/downloads/wwdc2022-110429_hd.mp4?dl=1
out=[2022] [Session 110429] Discover advancements in iOS camera capture - Depth, focus, and multitasking.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110441/4/C8C3F26A-9D07-41B4-A006-585B5F484C08/downloads/wwdc2022-110441_hd.mp4?dl=1
out=[2022] [Session 110441] Design for Arabic · صمّم بالعربي.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110565/4/46CD2F39-5184-416E-A4F4-E57AEAF92AC8/downloads/wwdc2022-110565_hd.mp4?dl=1
out=[2022] [Session 110565] Display HDR video in EDR with AVFoundation and Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110929/1/E9996C71-5D71-46C7-BC47-4A26302DA7D6/downloads/wwdc2022-110929_hd.mp4?dl=1
out=[2022] [Session 110929] Monday@WWDC22.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110930/1/73202A76-09C0-4221-9529-CA4DE5847169/downloads/wwdc2022-110930_hd.mp4?dl=1
out=[2022] [Session 110930] Tuesday@WWDC22.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110931/1/B3A83EB2-B46E-432E-92E9-9F5D15D6E793/downloads/wwdc2022-110931_hd.mp4?dl=1
out=[2022] [Session 110931] Wednesday@WWDC22.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110932/1/FAD2EDA0-088A-4ECC-A98A-4448F5568116/downloads/wwdc2022-110932_hd.mp4?dl=1
out=[2022] [Session 110932] WWDC22 Day 4 recap.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2022/110933/1/CF0900A1-24C8-4C33-B6D1-18B2343DC206/downloads/wwdc2022-110933_hd.mp4?dl=1
out=[2022] [Session 110933] WWDC22 Day 5 recap.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10002/5/F08830EB-6B56-4461-837E-ADE708BAA71C/downloads/wwdc2023-10002_hd.mp4
out = [2023] [Session 10002] Ready, set, relay - Protect app traffic with network relays.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10004/4/49EBBF59-4DE7-42C2-AC03-9CD32C46DE74/downloads/wwdc2023-10004_hd.mp4
out = [2023] [Session 10004] Reduce network delays with L4S.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10006/4/62804C33-C167-4D42-9E12-390AED4A4EE1/downloads/wwdc2023-10006_hd.mp4
out = [2023] [Session 10006] Build robust and resumable file transfers.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10007/4/ADC7900A-352D-4B06-8285-22AFB8A66356/downloads/wwdc2023-10007_hd.mp4
out = [2023] [Session 10007] Create seamless experiences with Virtualization.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10012/4/0E0416F8-A360-4F27-8CBA-B49CA1AEB96B/downloads/wwdc2023-10012_hd.mp4
out = [2023] [Session 10012] Explore App Store Connect for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10013/4/451654C1-7E00-42AE-A765-A2ECE947464C/downloads/wwdc2023-10013_hd.mp4
out = [2023] [Session 10013] Meet StoreKit for SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10014/3/15FBC5E9-0A1F-49D3-9CDA-466E88D8E22E/downloads/wwdc2023-10014_hd.mp4
out = [2023] [Session 10014] What’s new in App Store pricing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10015/4/1BACDF1D-18D0-4971-AED9-7DBB31B3926A/downloads/wwdc2023-10015_hd.mp4
out = [2023] [Session 10015] What’s new in App Store pre-orders.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10016/5/CD68A862-7DFB-45FF-B1A6-B18140FDED96/downloads/wwdc2023-10016_hd.mp4
out = [2023] [Session 10016] Build custom workouts with WorkoutKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10023/4/4BFDA0EE-E7FB-44E3-BB58-F46D18A9802C/downloads/wwdc2023-10023_hd.mp4
out = [2023] [Session 10023] Build a multi-device workout app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10025/4/A630204A-7F9E-49E8-9B21-ADC3517405E0/downloads/wwdc2023-10025_hd.mp4
out = [2023] [Session 10025] Meet Push Notifications Console.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10026/4/F0D39B26-C7C2-4ABB-8897-C377223B6A82/downloads/wwdc2023-10026_hd.mp4
out = [2023] [Session 10026] Meet watchOS 10.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10027/4/7DEB1A11-79AB-4C43-B6F7-B7525FC746B6/downloads/wwdc2023-10027_hd.mp4
out = [2023] [Session 10027] Bring widgets to new places.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10028/4/3BBB0693-B39D-476B-AC4A-2F1A8BB53FCE/downloads/wwdc2023-10028_hd.mp4
out = [2023] [Session 10028] Bring widgets to life.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10029/5/A6F20D9A-932C-44D8-99FA-FBFE3D6E5CBE/downloads/wwdc2023-10029_hd.mp4
out = [2023] [Session 10029] Build widgets for the Smart Stack on Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10031/4/365BFCEA-3567-4F2E-85DC-D6DF144F9B5C/downloads/wwdc2023-10031_hd.mp4
out = [2023] [Session 10031] Update your app for watchOS 10.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10032/3/A9BDC1BB-32F3-4A51-9207-FFB4C4B235A0/downloads/wwdc2023-10032_hd.mp4
out = [2023] [Session 10032] Meet Assistive Access.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10033/4/2BED83CA-28F2-4B53-ACB4-EF89AB371676/downloads/wwdc2023-10033_hd.mp4
out = [2023] [Session 10033] Extend Speech Synthesis with personal and custom voices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10034/5/DF004F28-FE27-41BB-B1BB-4CF81F3F2695/downloads/wwdc2023-10034_hd.mp4
out = [2023] [Session 10034] Create accessible spatial experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10035/5/AE94C37D-A130-4B28-987C-ADEA8AC1BEA8/downloads/wwdc2023-10035_hd.mp4
out = [2023] [Session 10035] Perform accessibility audits for your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10036/4/BB960BFD-F982-4800-8060-5674B049AC5A/downloads/wwdc2023-10036_hd.mp4
out = [2023] [Session 10036] Build accessible apps with SwiftUI and UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10037/4/77026DAB-A5CB-4FD8-8516-5E63DD12C236/downloads/wwdc2023-10037_hd.mp4
out = [2023] [Session 10037] Explore pie charts and interactivity in Swift Charts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10039/4/5852C97C-D712-4FA9-BDB2-2FC9C69289EB/downloads/wwdc2023-10039_hd.mp4
out = [2023] [Session 10039] Meet device management for Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10040/5/FAEE48F2-1B5D-4894-AEB1-1D02816D6347/downloads/wwdc2023-10040_hd.mp4
out = [2023] [Session 10040] What’s new in managing Apple devices.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10041/5/3291DDC3-9C1C-4F82-885B-351107EFC8AF/downloads/wwdc2023-10041_hd.mp4
out = [2023] [Session 10041] Explore advances in declarative device management .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10042/5/6CB98B4D-64C7-4818-8DFE-12CF2EFAF5CA/downloads/wwdc2023-10042_hd.mp4
out = [2023] [Session 10042] Explore Natural Language multilingual models.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10043/5/700E3600-5A61-4BE8-9A61-441B11B13E8C/downloads/wwdc2023-10043_hd.mp4
out = [2023] [Session 10043] Meet MapKit for SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10044/4/A21FDEB3-C1AF-472E-827F-1E7D7499033E/downloads/wwdc2023-10044_hd.mp4
out = [2023] [Session 10044] Discover machine learning enhancements in Create ML.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10045/4/CD4F90B5-A291-452A-93CC-2694D9A8FB9E/downloads/wwdc2023-10045_hd.mp4
out = [2023] [Session 10045] Detect animal poses in Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10047/4/E4F2FB98-2605-4693-8FA8-978D1AD634F4/downloads/wwdc2023-10047_hd.mp4
out = [2023] [Session 10047] Use Core ML Tools for machine learning model compression.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10048/4/55A7BD30-D197-43F5-B35B-74973DEDD898/downloads/wwdc2023-10048_hd.mp4
out = [2023] [Session 10048] What’s new in VisionKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10049/4/2E4BF7CE-8624-47ED-90A6-AFF972EEF0D8/downloads/wwdc2023-10049_hd.mp4
out = [2023] [Session 10049] Improve Core ML integration with async prediction.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10050/3/F8F473D7-87C0-4FB5-91DD-2E665CFC4239/downloads/wwdc2023-10050_hd.mp4
out = [2023] [Session 10050] Optimize machine learning for Metal apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10051/4/609FFA81-2E88-4DC5-ACDB-5C4A0C42875D/downloads/wwdc2023-10051_hd.mp4
out = [2023] [Session 10051] Create a great ShazamKit experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10052/5/B5C95345-FDF4-40FF-AFFB-350DD26BED61/downloads/wwdc2023-10052_hd.mp4
out = [2023] [Session 10052] Discover Calendar and EventKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10053/4/8CAD0D27-5BB4-4640-9746-4DCBD46161DF/downloads/wwdc2023-10053_hd.mp4
out = [2023] [Session 10053] What’s new in privacy.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10054/4/80B02B85-8293-43F0-A6B1-210B6B6DD1F7/downloads/wwdc2023-10054_hd.mp4
out = [2023] [Session 10054] What’s new in AppKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10055/4/7F22FD85-1611-456E-875B-966A87E16636/downloads/wwdc2023-10055_hd.mp4
out = [2023] [Session 10055] What’s new in UIKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10056/4/288B8B11-EFDD-4A1E-8F4E-B5C863A03ADC/downloads/wwdc2023-10056_hd.mp4
out = [2023] [Session 10056] Build better document-based apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10057/4/D79F0058-1869-464A-BABD-A1457AE857A0/downloads/wwdc2023-10057_hd.mp4
out = [2023] [Session 10057] Unleash the UIKit trait system.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10058/4/8038A20C-9E59-409E-9C2A-02B517C649A7/downloads/wwdc2023-10058_hd.mp4
out = [2023] [Session 10058] What’s new with text and text interactions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10060/4/FF91AF30-61BD-4DCA-A65E-9D3CD75DA679/downloads/wwdc2023-10060_hd.mp4
out = [2023] [Session 10060] Get started with privacy manifests.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10061/4/69744A23-9D87-4A87-B1D5-DC13BE88274F/downloads/wwdc2023-10061_hd.mp4
out = [2023] [Session 10061] Verify app dependencies with digital signatures.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10070/5/8192B69D-E456-4AA8-94E8-9B102FFA6A3A/downloads/wwdc2023-10070_hd.mp4
out = [2023] [Session 10070] Create a great spatial playback experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10071/4/F38AC007-2A42-4AFD-B0AA-EFC2EA0A8ECD/downloads/wwdc2023-10071_hd.mp4
out = [2023] [Session 10071] Deliver video content for spatial experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10072/5/C43DFF91-F057-43E1-891F-41E6D5C01716/downloads/wwdc2023-10072_hd.mp4
out = [2023] [Session 10072] Principles of spatial design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10073/4/0B0E3324-4B02-4EF4-8413-13A63715B2C5/downloads/wwdc2023-10073_hd.mp4
out = [2023] [Session 10073] Design for spatial input.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10075/4/9C508675-D44A-4BF5-80F3-5B49CF10C722/downloads/wwdc2023-10075_hd.mp4
out = [2023] [Session 10075] Design spatial SharePlay experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10076/4/1C3E0256-50B2-4992-AAE6-CF8A3479272E/downloads/wwdc2023-10076_hd.mp4
out = [2023] [Session 10076] Design for spatial user interfaces.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10078/5/A2493B0B-6540-4634-B38C-E2FEFC0F8DAC/downloads/wwdc2023-10078_hd.mp4
out = [2023] [Session 10078] Design considerations for vision and motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10080/4/285DEB34-9EE6-466F-8F33-BF04E334E215/downloads/wwdc2023-10080_hd.mp4
out = [2023] [Session 10080] Build spatial experiences with RealityKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10081/4/218C691E-8111-4A1A-925F-F43AB9832C41/downloads/wwdc2023-10081_hd.mp4
out = [2023] [Session 10081] Enhance your spatial computing app with RealityKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10082/4/C3D5172D-3BAF-4656-B6F7-2C8CE38F8749/downloads/wwdc2023-10082_hd.mp4
out = [2023] [Session 10082] Meet ARKit for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10083/4/B3A4D3EA-0CF5-4ECB-9874-28313698D3EE/downloads/wwdc2023-10083_hd.mp4
out = [2023] [Session 10083] Meet Reality Composer Pro.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10085/4/6383EC8A-F55A-4286-A743-31FE670C9CD7/downloads/wwdc2023-10085_hd.mp4
out = [2023] [Session 10085] Discover Quick Look for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10086/5/5ABD74BE-D973-47C9-9A9F-1F5AABE02C1A/downloads/wwdc2023-10086_hd.mp4
out = [2023] [Session 10086] Explore the USD ecosystem.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10087/4/36E3D439-2B36-408C-9249-3929F2E75FBD/downloads/wwdc2023-10087_hd.mp4
out = [2023] [Session 10087] Build spatial SharePlay experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10088/5/77EBB91E-9B3E-41DC-AF08-623919A9F182/downloads/wwdc2023-10088_hd.mp4
out = [2023] [Session 10088] Create immersive Unity apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10089/5/49D0E645-DBE8-4D7A-9637-C4D744C86894/downloads/wwdc2023-10089_hd.mp4
out = [2023] [Session 10089] Discover Metal for immersive apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10090/4/F9896DEE-8E84-49C1-AEAF-10D7628B2662/downloads/wwdc2023-10090_hd.mp4
out = [2023] [Session 10090] Run your iPad and iPhone apps in the Shared Space.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10091/4/8582CCE8-B637-4A9F-94F5-69EE67ED58D4/downloads/wwdc2023-10091_hd.mp4
out = [2023] [Session 10091] Evolve your ARKit app for spatial experiences.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10093/4/D52AC313-8624-4177-BB94-C2F64F591723/downloads/wwdc2023-10093_hd.mp4
out = [2023] [Session 10093] Bring your Unity VR app to a fully immersive space.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10094/4/701039CD-C751-471F-A029-A2407B622C61/downloads/wwdc2023-10094_hd.mp4
out = [2023] [Session 10094] Enhance your iPad and iPhone apps for the Shared Space.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10095/4/CCE7B88E-E0C4-4BA3-87E7-9C1D644FA6CB/downloads/wwdc2023-10095_hd.mp4
out = [2023] [Session 10095] Explore rendering for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10096/6/F177C6E8-2AAC-400D-B584-FC7D76E4516F/downloads/wwdc2023-10096_hd.mp4
out = [2023] [Session 10096] Build great games for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10099/5/3AFC66A2-7703-40D9-BB5A-874A5091FE1A/downloads/wwdc2023-10099_hd.mp4
out = [2023] [Session 10099] Meet RealityKit Trace.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10100/4/174B83C9-684A-4C6F-832F-54135856AE47/downloads/wwdc2023-10100_hd.mp4
out = [2023] [Session 10100] Optimize app power and performance for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10101/4/4BB06F60-9134-4AB0-9A85-B5A9B9564C71/downloads/wwdc2023-10101_hd.mp4
out = [2023] [Session 10101] Customize on-device speech recognition.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10102/4/1D586799-9271-4BC0-9BFB-29A6B05A5803/downloads/wwdc2023-10102_hd.mp4
out = [2023] [Session 10102] Spotlight your app with App Shortcuts.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10103/4/D65BF0C4-53B8-450E-8B16-DF92AA76A73A/downloads/wwdc2023-10103_hd.mp4
out = [2023] [Session 10103] Explore enhancements to App Intents.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10104/4/5F52855D-81B2-4790-8627-C68333D4A099/downloads/wwdc2023-10104_hd.mp4
out = [2023] [Session 10104] Integrate your media app with HomePod.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10105/4/E34149DA-EEF7-4E25-A6B3-DDEB0BB7BF1C/downloads/wwdc2023-10105_hd.mp4
out = [2023] [Session 10105] Create a more responsive camera experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10106/4/AE945003-3B1E-40CF-87F1-BD6F6E3EDD0F/downloads/wwdc2023-10106_hd.mp4
out = [2023] [Session 10106] Support external cameras in your iPadOS app .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10107/5/62F52A2D-1C9A-4349-8D1F-03308947930A/downloads/wwdc2023-10107_hd.mp4
out = [2023] [Session 10107] Embed the Photos Picker in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10108/4/ABFECE71-93F9-4920-8A81-C99BB04A5FF3/downloads/wwdc2023-10108_hd.mp4
out = [2023] [Session 10108] What’s new in Background Assets.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10109/4/F4A066BD-28D9-4CF8-AAF3-D35EA776504F/downloads/wwdc2023-10109_hd.mp4
out = [2023] [Session 10109] Meet SwiftUI for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10110/5/7FE373BF-8322-4D59-A758-7540978E58C5/downloads/wwdc2023-10110_hd.mp4
out = [2023] [Session 10110] Elevate your windowed app for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10111/4/D880BF62-C9CB-46EC-B2A2-802877B189DB/downloads/wwdc2023-10111_hd.mp4
out = [2023] [Session 10111] Go beyond the window with SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10113/5/00AAFA9F-AFE8-473B-BAB6-201545F4DF62/downloads/wwdc2023-10113_hd.mp4
out = [2023] [Session 10113] Take SwiftUI to the next dimension.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10114/5/208CF134-3A8A-417E-8DF3-0B8A1F60B130/downloads/wwdc2023-10114_hd.mp4
out = [2023] [Session 10114] What’s new in Wallet and Apple Pay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10115/4/19F9A9B5-0463-4EA9-B5C4-E7BBFE8E1F66/downloads/wwdc2023-10115_hd.mp4
out = [2023] [Session 10115] Design with SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10117/5/371EF10F-F98C-4AC5-B998-FD7FD3267F98/downloads/wwdc2023-10117_hd.mp4
out = [2023] [Session 10117] What’s new in App Store Connect.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10118/4/A2DA3123-3E74-4ECF-9961-EA390BE9B502/downloads/wwdc2023-10118_hd.mp4
out = [2023] [Session 10118] What’s new in Web Inspector.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10119/4/83A24FCC-71E7-4137-BD8D-E165D7A1A020/downloads/wwdc2023-10119_hd.mp4
out = [2023] [Session 10119] What’s new in Safari extensions.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10120/4/C81200EB-45AA-47BF-B173-AD1D2EFE80C6/downloads/wwdc2023-10120_hd.mp4
out = [2023] [Session 10120] What’s new in web apps.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10121/5/583EB542-47B3-45F4-B7D2-35C88ED597C7/downloads/wwdc2023-10121_hd.mp4
out = [2023] [Session 10121] What’s new in CSS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10122/6/8D4F2F56-BA71-41C2-987B-9C8D656D60AF/downloads/wwdc2023-10122_hd.mp4
out = [2023] [Session 10122] Explore media formats for the web.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10123/4/204C6242-388E-4884-864A-CCCBF869D651/downloads/wwdc2023-10123_hd.mp4
out = [2023] [Session 10123] Bring your game to Mac, Part 1 - Make a game plan.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10124/4/8043B2FD-2363-4733-85E6-CCDF0BEE783F/downloads/wwdc2023-10124_hd.mp4
out = [2023] [Session 10124] Bring your game to Mac, Part 2 - Compile your shaders.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10125/4/1283FC25-C4D6-40B5-AAEC-221E3E4C6D16/downloads/wwdc2023-10125_hd.mp4
out = [2023] [Session 10125] Bring your game to Mac, Part 3 - Render with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10127/4/3C0D2C8A-18E1-4D60-8A77-71F7166622AE/downloads/wwdc2023-10127_hd.mp4
out = [2023] [Session 10127] Optimize GPU renderers with Metal.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10128/5/D57CE53D-520E-44FB-99BA-4E63AA58C47C/downloads/wwdc2023-10128_hd.mp4
out = [2023] [Session 10128] Your guide to Metal ray tracing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10136/6/998A4D51-FB97-4CB9-959F-65B5827F9926/downloads/wwdc2023-10136_hd.mp4
out = [2023] [Session 10136] What’s new in ScreenCaptureKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10137/5/88C7D972-0671-4705-94CB-4EF627EED532/downloads/wwdc2023-10137_hd.mp4
out = [2023] [Session 10137] Support Cinematic mode videos in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10138/4/AFF87063-B0C4-49E6-A866-D89017622393/downloads/wwdc2023-10138_hd.mp4
out = [2023] [Session 10138] Design and build apps for watchOS 10.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10140/4/F65F9FA7-3629-45A5-A4D6-A90BE40BE5E9/downloads/wwdc2023-10140_hd.mp4
out = [2023] [Session 10140] What’s new in StoreKit 2 and StoreKit Testing in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10141/4/D21B22C2-4C48-48FB-93A7-3B2712DBBDD9/downloads/wwdc2023-10141_hd.mp4
out = [2023] [Session 10141] What’s new in App Store server APIs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10142/4/D77D9908-4DAF-4E7C-92F7-0FC31264D914/downloads/wwdc2023-10142_hd.mp4
out = [2023] [Session 10142] Explore testing in-app purchases.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10143/4/2A530FC7-FDC1-4CB7-AE05-57F3F22675C7/downloads/wwdc2023-10143_hd.mp4
out = [2023] [Session 10143] Meet the App Store Server Library .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10146/4/17F61886-5FF3-42B0-969D-5B6FB86820B2/downloads/wwdc2023-10146_hd.mp4
out = [2023] [Session 10146] Meet Core Location for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10147/4/D414CF50-4EF2-43CA-B57D-0FB2F054F2FA/downloads/wwdc2023-10147_hd.mp4
out = [2023] [Session 10147] Meet Core Location Monitor.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10148/5/670CE43A-A151-47A9-BBFA-32FE5E86C679/downloads/wwdc2023-10148_hd.mp4
out = [2023] [Session 10148] What’s new in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10149/4/F4769BC3-3B47-49AF-B11B-6957B0A25574/downloads/wwdc2023-10149_hd.mp4
out = [2023] [Session 10149] Discover Observation in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10150/4/21F9E94A-7EFC-455B-B168-18C2B8CB5965/downloads/wwdc2023-10150_hd.mp4
out = [2023] [Session 10150] Optimize CarPlay for vehicle systems.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10153/6/A7A21FC4-917F-4A51-B18C-89DB54EBD3B7/downloads/wwdc2023-10153_hd.mp4
out = [2023] [Session 10153] Unlock the power of grammatical agreement.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10154/6/00F52EA1-7867-49C3-9DA6-88D0D9D637E1/downloads/wwdc2023-10154_hd.mp4
out = [2023] [Session 10154] Build an app with SwiftData.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10155/4/0A18D858-81AA-4A3C-B77E-EF67C956908B/downloads/wwdc2023-10155_hd.mp4
out = [2023] [Session 10155] Discover String Catalogs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10156/4/9C42B457-119B-4939-B635-598E91D22BD6/downloads/wwdc2023-10156_hd.mp4
out = [2023] [Session 10156] Explore SwiftUI animation.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10157/4/11302D30-B890-47AB-B8B0-CA3D4A8F136F/downloads/wwdc2023-10157_hd.mp4
out = [2023] [Session 10157] Wind your way through advanced animations in SwiftUI.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10158/4/0BAD22E7-61F5-4C4C-BA74-61BF66E8A9B1/downloads/wwdc2023-10158_hd.mp4
out = [2023] [Session 10158] Animate with springs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10159/4/DCE1F4A7-9E0E-4F48-B70A-6C44D758769E/downloads/wwdc2023-10159_hd.mp4
out = [2023] [Session 10159] Beyond scroll views.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10160/4/0FB203F2-03CD-4D44-B33B-C568C5A64F63/downloads/wwdc2023-10160_hd.mp4
out = [2023] [Session 10160] Demystify SwiftUI performance.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10161/4/8290EAC4-2BB0-4766-AABF-FEC196606758/downloads/wwdc2023-10161_hd.mp4
out = [2023] [Session 10161] Inspectors in SwiftUI - Discover the details.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10162/4/6C82F6E0-81BE-4742-B8F1-A77694DA6074/downloads/wwdc2023-10162_hd.mp4
out = [2023] [Session 10162] The SwiftUI cookbook for focus.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10164/4/6A73A62C-E994-4907-B0CD-58E632F43AF6/downloads/wwdc2023-10164_hd.mp4
out = [2023] [Session 10164] What’s new in Swift.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10165/5/C61041BB-AC4B-41C2-982C-6476B513F891/downloads/wwdc2023-10165_hd.mp4
out = [2023] [Session 10165] What’s new in Xcode 15.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10166/5/58425163-99DA-4506-A86E-A2D794244136/downloads/wwdc2023-10166_hd.mp4
out = [2023] [Session 10166] Write Swift macros.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10167/4/EAAEDDF4-5E7C-4AE9-A20C-CCD2E061E331/downloads/wwdc2023-10167_hd.mp4
out = [2023] [Session 10167] Expand on Swift macros.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10168/4/C4DB8728-EFE7-49D9-B61E-3061B8F31EF5/downloads/wwdc2023-10168_hd.mp4
out = [2023] [Session 10168] Generalize APIs with parameter packs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10170/5/4608ED1F-4D83-4444-83A0-DF3EACCE4369/downloads/wwdc2023-10170_hd.mp4
out = [2023] [Session 10170] Beyond the basics of structured concurrency.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10171/6/B3B8830B-E039-4E13-B13E-989D45016244/downloads/wwdc2023-10171_hd.mp4
out = [2023] [Session 10171] Meet Swift OpenAPI Generator.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10172/4/58243B95-F51E-4E6A-96C8-B85E8102E450/downloads/wwdc2023-10172_hd.mp4
out = [2023] [Session 10172] Mix Swift and C++.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10175/6/2DA62902-FA90-4651-8713-E60599F43E83/downloads/wwdc2023-10175_hd.mp4
out = [2023] [Session 10175] Fix failures faster with Xcode test reports.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10176/4/85EF7B31-0252-4567-AEBB-723298444C56/downloads/wwdc2023-10176_hd.mp4
out = [2023] [Session 10176] Lift subjects from images in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10178/4/9DD6B041-9DA7-4F78-82A1-B2E17AFA61CB/downloads/wwdc2023-10178_hd.mp4
out = [2023] [Session 10178] What’s new in App Clips.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10179/4/2123E0B0-D771-4375-BE1F-9BE1AEBA4FFE/downloads/wwdc2023-10179_hd.mp4
out = [2023] [Session 10179] What’s new in Core Motion.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10180/3/BF2CDA20-2D8F-46B8-B850-E1799030451B/downloads/wwdc2023-10180_hd.mp4
out = [2023] [Session 10180] Discover streamlined location updates.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10181/4/B669E5B5-B6C7-40D3-AF7D-801FBEE8FF55/downloads/wwdc2023-10181_hd.mp4
out = [2023] [Session 10181] Support HDR images in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10184/4/A7390924-2731-4B9B-925E-1CBDFB186C3E/downloads/wwdc2023-10184_hd.mp4
out = [2023] [Session 10184] Meet ActivityKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10185/4/1867F512-50A9-4907-A90A-34A7E198BDB7/downloads/wwdc2023-10185_hd.mp4
out = [2023] [Session 10185] Update Live Activities with push notifications.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10186/4/169A3CA9-FA4A-40D0-A3A5-3635916BBCCE/downloads/wwdc2023-10186_hd.mp4
out = [2023] [Session 10186] What’s new in Core Data.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10187/5/1D820D6D-4F01-48EB-8F22-901F4A4B69FE/downloads/wwdc2023-10187_hd.mp4
out = [2023] [Session 10187] Meet SwiftData.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10188/3/F63E6FC7-4329-401C-9D80-CD4E7C8A478A/downloads/wwdc2023-10188_hd.mp4
out = [2023] [Session 10188] Sync to iCloud with CKSyncEngine.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10189/4/87485DA7-96D9-41FA-979E-1D0224B540C2/downloads/wwdc2023-10189_hd.mp4
out = [2023] [Session 10189] Migrate to SwiftData.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10191/4/4163D349-9555-463C-B8F1-0839D7BC6E49/downloads/wwdc2023-10191_hd.mp4
out = [2023] [Session 10191] Meet Object Capture for iOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10192/4/0D847FCD-B40B-4324-A284-F22B79E78F4D/downloads/wwdc2023-10192_hd.mp4
out = [2023] [Session 10192] Explore enhancements to RoomPlan.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10193/4/A4E5EF33-9EA3-4609-AB6E-A3E7DF0923FA/downloads/wwdc2023-10193_hd.mp4
out = [2023] [Session 10193] Design Shortcuts for Spotlight.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10194/5/1F92A457-3B0A-4F2A-A29C-9EC6753BEC87/downloads/wwdc2023-10194_hd.mp4
out = [2023] [Session 10194] Design dynamic Live Activities .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10195/4/1FEA69A1-120E-4305-8976-D2E1D1530A13/downloads/wwdc2023-10195_hd.mp4
out = [2023] [Session 10195] Model your schema with SwiftData.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10196/5/44001952-2ED6-45B5-9BF4-CFCE817D1CA7/downloads/wwdc2023-10196_hd.mp4
out = [2023] [Session 10196] Dive deeper into SwiftData.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10197/4/01BB92C1-0F42-4AE4-A526-7C83DA02ACAD/downloads/wwdc2023-10197_hd.mp4
out = [2023] [Session 10197] What’s new in SF Symbols 5.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10202/5/7DF5114E-91B3-4A42-AF97-D01AC560E3AB/downloads/wwdc2023-10202_hd.mp4
out = [2023] [Session 10202] Explore materials in Reality Composer Pro.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10203/6/469019B0-281D-4B3E-BAE3-B9302B204739/downloads/wwdc2023-10203_hd.mp4
out = [2023] [Session 10203] Develop your first immersive app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10224/4/3FB069F4-A143-41C4-945E-76651EFF81CF/downloads/wwdc2023-10224_hd.mp4
out = [2023] [Session 10224] Simplify distribution in Xcode and Xcode Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10226/5/FFFDC5A2-A309-4C9B-B908-B19B51F18FB0/downloads/wwdc2023-10226_hd.mp4
out = [2023] [Session 10226] Debug with structured logging.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10229/4/07E6CA29-01CD-4E03-A3FF-D7D8A3FB4CEF/downloads/wwdc2023-10229_hd.mp4
out = [2023] [Session 10229] Make features discoverable with TipKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10233/4/67656F5A-221D-451B-9BD0-45BCA4922204/downloads/wwdc2023-10233_hd.mp4
out = [2023] [Session 10233] Enhance your app’s audio experience with AirPods.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10235/4/78AFC6EE-45CE-4229-AB90-1DE57152E4BA/downloads/wwdc2023-10235_hd.mp4
out = [2023] [Session 10235] What’s new in voice processing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10238/4/5BA02CFE-52D4-497B-BD99-75E591F41885/downloads/wwdc2023-10238_hd.mp4
out = [2023] [Session 10238] Tune up your AirPlay audio experience.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10239/5/0F1CDDAF-2EAD-43A1-8B09-806ED4EE707A/downloads/wwdc2023-10239_hd.mp4
out = [2023] [Session 10239] Add SharePlay to your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10241/4/CB916690-4807-421C-AD85-6D36695D722C/downloads/wwdc2023-10241_hd.mp4
out = [2023] [Session 10241] Share files with SharePlay.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10244/4/6BE389F4-2F7E-4D0C-A6B6-25C8306D816E/downloads/wwdc2023-10244_hd.mp4
out = [2023] [Session 10244] Create rich documentation with Swift-DocC.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10248/6/AB6FF62D-3A9D-4816-95E8-2E7B464CA1DF/downloads/wwdc2023-10248_hd.mp4
out = [2023] [Session 10248] Analyze hangs with Instruments.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10250/3/A3F1820C-593C-4DF2-A36B-F95FA81B1BBC/downloads/wwdc2023-10250_hd.mp4
out = [2023] [Session 10250] Prototype with Xcode Playgrounds.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10252/5/28C78519-19B7-468C-A50B-4960D801E332/downloads/wwdc2023-10252_hd.mp4
out = [2023] [Session 10252] Build programmatic UI with Xcode Previews.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10254/4/3B910C3D-7545-4B14-8026-F17576CCE0E9/downloads/wwdc2023-10254_hd.mp4
out = [2023] [Session 10254] Do more with Managed Apple IDs.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10256/4/8FFA5951-7695-4285-9C1D-B0D6D491F18C/downloads/wwdc2023-10256_hd.mp4
out = [2023] [Session 10256] Discover Continuity Camera for tvOS.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10257/4/8BAB2E01-3308-47DF-AF21-49268DE79899/downloads/wwdc2023-10257_hd.mp4
out = [2023] [Session 10257] Create animated symbols.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10258/4/F5972AFA-C206-4702-9005-E146CE71FC29/downloads/wwdc2023-10258_hd.mp4
out = [2023] [Session 10258] Animate symbols in your app.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10260/4/B4DC13C8-DE9B-4FD2-B413-018357E5E5F7/downloads/wwdc2023-10260_hd.mp4
out = [2023] [Session 10260] Get started with building apps for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10262/4/5A68BE0E-CC0F-4DF7-8982-F315B0ED6A2D/downloads/wwdc2023-10262_hd.mp4
out = [2023] [Session 10262] Rediscover Safari developer features.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10263/6/31A324CE-DD40-456B-A7DB-8660EF139277/downloads/wwdc2023-10263_hd.mp4
out = [2023] [Session 10263] Deploy passkeys at work.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10266/4/24189FC4-EAA7-44E2-B039-930BF35F451F/downloads/wwdc2023-10266_hd.mp4
out = [2023] [Session 10266] Protect your Mac app with environment constraints.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10268/4/8ABBA81C-E5D8-4695-A921-FE326B1AC4E3/downloads/wwdc2023-10268_hd.mp4
out = [2023] [Session 10268] Meet mergeable libraries.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10271/4/8EC963D4-5325-4F6F-8D6C-7C3DF535B0A2/downloads/wwdc2023-10271_hd.mp4
out = [2023] [Session 10271] Explore immersive sound design.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10273/5/056632D0-3346-457D-97ED-B1F066A11C1A/downloads/wwdc2023-10273_hd.mp4
out = [2023] [Session 10273] Work with Reality Composer Pro content in Xcode.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10274/4/4A316968-7638-42C9-AAD2-2B26F8A8B1F5/downloads/wwdc2023-10274_hd.mp4
out = [2023] [Session 10274] Create 3D models for Quick Look spatial experiences .mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10275/5/9AAAFD03-718B-497E-8A61-C0B00CC14513/downloads/wwdc2023-10275_hd.mp4
out = [2023] [Session 10275] Explore AirPlay with interstitials.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10278/4/A5414C99-EB05-48CC-B09F-9A322FBEF0C6/downloads/wwdc2023-10278_hd.mp4
out = [2023] [Session 10278] Create practical workflows in Xcode Cloud.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10279/4/6F2DFF92-4E92-4C6C-BDAA-80C7646871D6/downloads/wwdc2023-10279_hd.mp4
out = [2023] [Session 10279] Meet Safari for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10281/5/28D03695-D3A4-41FB-9F95-B97A11BF249B/downloads/wwdc2023-10281_hd.mp4
out = [2023] [Session 10281] Keep up with the keyboard.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10304/4/F0FF6E30-0DEE-40FF-B969-616952919D33/downloads/wwdc2023-10304_hd.mp4
out = [2023] [Session 10304] Integrate with motorized iPhone stands using DockKit.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/10309/4/21D925C8-2EE0-4C96-9C68-96174159990A/downloads/wwdc2023-10309_hd.mp4
out = [2023] [Session 10309] Design widgets for the Smart Stack on Apple Watch.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/111215/4/E8A7CF44-A276-482B-9CFA-F264FD028F54/downloads/wwdc2023-111215_hd.mp4
out = [2023] [Session 111215] Meet UIKit for spatial computing.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/111241/4/ABFB7CE2-6FB6-4998-BE3A-686BF10AC41E/downloads/wwdc2023-111241_hd.mp4
out = [2023] [Session 111241] Explore 3D body pose and person segmentation in Vision.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/111486/1/E48AB1B2-961B-4614-91E7-45A9FAF3D835/downloads/wwdc2023-111486_hd.mp4
out = [2023] [Session 111486] 17 big & little things at WWDC23.mp4
https://devstreaming-cdn.apple.com/videos/wwdc/2023/111488/1/B9EE6A67-C5D1-4554-905E-697296D08CA0/downloads/wwdc2023-111488_hd.mp4
out = [2023] [Session 111488] What Apple developers need to know at WWDC23.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment