<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Vlckit on Felix Paul Kühne</title>
    <link>https://www.feepk.net/tags/vlckit/</link>
    <description>Recent content in Vlckit on Felix Paul Kühne</description>
    <generator>Hugo -- 0.155.1</generator>
    <language>en-US</language>
    <lastBuildDate>Fri, 27 Feb 2015 15:59:00 +0000</lastBuildDate>
    <atom:link href="https://www.feepk.net/tags/vlckit/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>VLC media player for Mac OS X 2.2.0</title>
      <link>https://www.feepk.net/2015/02/27/vlc-media-player-for-mac-os-x-2-2-0/</link>
      <pubDate>Fri, 27 Feb 2015 15:59:00 +0000</pubDate>
       <guid isPermaLink="false">http://feepk.net/?p=336</guid> 
      <description>&lt;p&gt;Today, we will also a major new version of VLC for Mac OS X. For cross-platform changes, please have a look at the &lt;a href=&#34;http://git.videolan.org/?p=vlc/vlc-2.2.git;a=blob_plain;f=NEWS;hb=HEAD&#34;&gt;release notes&lt;/a&gt; and our &lt;a href=&#34;http://www.videolan.org/press/vlc-2.2.0.html&#34;&gt;press release&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;What’s new in VLC for Mac?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Support for OS X Yosemite&lt;/li&gt;
&lt;li&gt;Completely re-written web plugin for Chrome, Safari and Firefox is back!&lt;br&gt;
Improved fullscreen behavior&lt;/li&gt;
&lt;li&gt;Continue playback where you left off&lt;/li&gt;
&lt;li&gt;Improved playlist adding a file size column and an option to increase the font size&lt;/li&gt;
&lt;li&gt;In addition to iTunes, Spotify can be paused on playback start&lt;/li&gt;
&lt;li&gt;New encryption and decryption modules for SSL based on OS X’s SecureTransport library for FTP and HTTP connections. This greatly improves speed and security.&lt;/li&gt;
&lt;li&gt;A lot of improvements in VLCKit for use in third party applications, notably
&lt;ul&gt;
&lt;li&gt;Switched the code base to ARC and added support for Swift projects&lt;/li&gt;
&lt;li&gt;Support for HLS and HTTPS playback on iOS&lt;/li&gt;
&lt;li&gt;Improved thumbnailing&lt;/li&gt;
&lt;li&gt;Various new APIs for playlist handling, the equalizer, thumbnailing and meta data handling&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We are excited about this major update of VLC for Mac and hope that you’ll like it as much as we do.&lt;/p&gt;</description>
    </item>
    <item>
      <title>MobileVLCKit and VLCKit, part 2</title>
      <link>https://www.feepk.net/2015/02/18/mobilevlckit-and-vlckit-part-2/</link>
      <pubDate>Wed, 18 Feb 2015 13:39:11 +0000</pubDate>
       <guid isPermaLink="false">http://feepk.net/?p=330</guid> 
      <description>&lt;p&gt;This is part of an article series covering VLC&amp;rsquo;s Objective-C framework, which we provide to allow inclusion of all its features in third party applications as well as VLC for iOS and Apple TV.&lt;/p&gt;
&lt;p&gt;Currently published:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.feepk.net/2014/12/02/mobilevlckit-and-vlckit-part-1/&#34;&gt;Part 1: What is VLCKit and how does it work? How to use it?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.feepk.net/2018/03/13/mobilevlckit-and-vlckit-part-3/&#34;&gt;Part 3: snapshots and thumbnailing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Today, we will discuss meta data processing.&lt;/p&gt;
&lt;p&gt;In VLCKit, every item you play is a VLCMedia object. For typical use cases, it can be created with an NSURL or an NSString containing a path.&lt;/p&gt;</description>
    </item>
    <item>
      <title>MobileVLCKit and VLCKit, part 1</title>
      <link>https://www.feepk.net/2014/12/02/mobilevlckit-and-vlckit-part-1/</link>
      <pubDate>Tue, 02 Dec 2014 20:08:41 +0000</pubDate>
       <guid isPermaLink="false">http://feepk.net/?p=325</guid> 
      <description>&lt;p&gt;This is part of an article series covering VLC&amp;rsquo;s Objective-C framework, which we provide to allow inclusion of all its features in third party applications as well as VLC for iOS and Apple TV.&lt;/p&gt;
&lt;p&gt;Currently published:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.feepk.net/2015/02/18/mobilevlckit-and-vlckit-part-2/&#34;&gt;Part 2: Metadata handling.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.feepk.net/2018/03/13/mobilevlckit-and-vlckit-part-3/&#34;&gt;Part 3: Snapshots and thumbnailing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&#34;https://wiki.videolan.org/VLCKit&#34; title=&#34;VLCKit on VideoLAN Wiki&#34;&gt;VLCKit&lt;/a&gt; is a generic library for any audio or video playback needs on both Apple platforms and also supports streaming and media to file conversations on the Mac. It is open-source software licensed under the LGPLv2.1 or later, available in source code and binary form from the &lt;a href=&#34;http://www.videolan.org&#34; title=&#34;VideoLAN Website&#34;&gt;VideoLAN website&lt;/a&gt;. You can also integrate MobileVLCKit easily via &lt;a href=&#34;http://cocoapods.org&#34; title=&#34;CocoaPods&#34;&gt;CocoaPods&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>VLC 2.1</title>
      <link>https://www.feepk.net/2013/11/14/vlc-2-1/</link>
      <pubDate>Thu, 14 Nov 2013 13:55:47 +0000</pubDate>
       <guid isPermaLink="false">http://feepk.net/?p=255</guid> 
      <description>&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.feepk.net/wp-content/uploads/2013/11/vlc-2-1-macos.gif&#34;&gt;Today, we published VLC media player 2.1.1 for all major desktop operating systems. If you used VLC for Android or for iOS in the last couple of months, you already got in touch with VLC&amp;rsquo;s 2.1 code base.&lt;/p&gt;
&lt;p&gt;VLC media player 2.1 was initially published on September 26. However, we didn&amp;rsquo;t enable VLC&amp;rsquo;s internal updater since then. Why? We spent extra time on polishing the release, added support for the upcoming major video codec HEVC aka H.265 in MKV and MP4 containers as well as raw files, and lastly improved compatibility with both OS X 10.6 and 10.9.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
