NEWS 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. Version 3.0.2:
  2. --------------
  3. - Automatic reconnections to HTTP(S) servers on unexpected drops on iOS and tvOS
  4. - Fixed deadlock when sent to background
  5. - Fixed some OpenGL and flv crashes
  6. - Fixed HEVC playback that resulted in just a black screen
  7. - Removal of private API usage by ffmpeg
  8. Version 3.0.0:
  9. --------------
  10. Generic changes:
  11. - Added support for tvOS
  12. - Removed support for the 32bit OS X platform
  13. - Added support for audio muting and software volume changes on iOS and tvOS
  14. New APIs:
  15. - VLCAudio
  16. - setMuted:
  17. - VLCDialogProvider
  18. - new class to handle user interaction with VLC events
  19. - VLCLibrary
  20. - added properties: debugLogging, debugLoggingLevel
  21. - VLCMediaDiscoverer
  22. - added selector: availableMediaDiscovererForCategoryType:
  23. - added enum: VLCMediaDiscovererCategoryType
  24. - VLCMediaListPlayer
  25. - added selectors: initWithDrawable:
  26. initWithOptions:andDrawable:
  27. playItemAtNumber:
  28. - VLCMediaPlayer
  29. - added properties: titleDescriptions, indexOfLongestTitle, numberOfTitles,
  30. snapshots, lastSnapshot
  31. - added selectors: chaptersForTitleIndex:
  32. numberOfChaptersForTitle:
  33. addPlaybackSlave:type:enforce:
  34. updateViewpoint:pitch:roll:fov:absolute:
  35. - added notifications: VLCMediaPlayerTitleChanged, VLCMediaPlayerChapterChanged
  36. - added enum: VLCMediaPlaybackSlaveType
  37. - Note:
  38. - play's return type was changed from BOOL to void
  39. - hue is now a float instead of an integer
  40. - WARNING:
  41. - Return value of the following methods changed from INT_MAX to -1
  42. (int)currentVideoTrackIndex
  43. (int)currentVideoSubTitleIndex
  44. (int)currentChapterIndex
  45. (int)currentTitleIndex
  46. (int)currentAudioTrackIndex
  47. - VLCMedia
  48. - added keys: VLCMetaInformationTrackTotal, VLCMetaInformationDirector,
  49. VLCMetaInformationSeason, VLCMetaInformationEpisode,
  50. VLCMetaInformationShowName, VLCMetaInformationActors,
  51. VLCMetaInformationAlbumArtist, VLCMetaInformationDiscNumber,
  52. VLCMediaTracksInformationVideoOrientation,
  53. VLCMediaTracksInformationVideoProjection
  54. - added selectors: codecNameForFourCC:trackType:
  55. mediaType
  56. parseWithOptions:
  57. parseWithOptions:Timeout:
  58. parsedStatus
  59. storeCookie:forHost:path:
  60. clearStoredCookies
  61. - added enums: VLCMediaType, VLCMediaParsingOptions, VLCMediaParsedStatus,
  62. VLCMediaOrientation, VLCMediaProjection
  63. - changed behavior: media will no longer be parsed automatically if meta
  64. data is requested prior to concluded parsing
  65. - VLCMediaList
  66. - changed behavior: lists of media objects added through arrays or on init
  67. are no longer added in reverse order
  68. - VLCTime
  69. - added selectors: isEqual:
  70. hash
  71. - VLCAudio
  72. - added property: passthrough
  73. Modified APIs:
  74. - VLCMediaList
  75. - To match the KVC bindings, all NSInteger arguments were moved to NSUInteger as appropriate
  76. - mediaList:mediaAdded:atIndex:
  77. - mediaList:mediaRemovedAtIndex:
  78. - addMedia:
  79. - insertMedia:atIndex:
  80. - removeMediaAtIndex:
  81. - mediaAtIndex:
  82. Deprecated APIs:
  83. - VLCAudio
  84. - setMute:
  85. - VLCMedia
  86. - parse, isParsed, synchronousParse
  87. - VLCMediaDiscoverer
  88. - availableMediaDiscoverer, localizedName
  89. - VLCMediaPlayer
  90. - titles, chaptersForTitleIndex:, countOfTitles, framesPerSecond, openVideoSubTitlesFromFile:
  91. - VLCMediaListPlayer
  92. - playItemAtIndex
  93. - VLCStreamSession
  94. - VLCStreamOutput
  95. - VLCMediaLibrary
  96. Removed APIs:
  97. - VLCExtension
  98. - VLCExtensionsManager
  99. - VLCMedia:
  100. - fps
  101. - media:metaValueChangedFrom:forKey:
  102. - VLCMediaPlayer
  103. - audioTracks
  104. - videoTracks
  105. - videoSubTitles
  106. - VLCServicesDiscoverer
  107. - VLCPlaylistDataSource
  108. Version 2.2.2:
  109. --------------
  110. New APIs:
  111. - VLCMediaPlayer
  112. - added properties: numberOfVideoTracks, numberOfSubtitlesTracks
  113. numberOfAudioTracks
  114. Version 2.2.0:
  115. --------------
  116. Cross-platform:
  117. - Fixed deinterlacing if requested
  118. - Fixed decoding and display of Teletext-based subtitles
  119. - Improved thumbnailing reliability
  120. - Added support for inclusion in swift projects
  121. - Switched to Automatic Reference Counting
  122. - Various stability improvements
  123. MobileVLCKit:
  124. - It is finally possible to compile the framework without relying on third
  125. party scripts
  126. - Added 2 sample projects illustrating video playback
  127. - Added support for https and hls playback
  128. - VLCMediaListPlayer is available now
  129. - Added support for https connectivity
  130. VLCKit:
  131. - VLCMediaThumbnailer is a public API on the Mac now matching the mobile
  132. counterpart
  133. - Updated samples projects illustrating playback, file conversation, ...
  134. New APIs:
  135. - VLCMediaThumbnailer:
  136. - added property: snapshotPosition to overwrite the default
  137. - VLCMediaListPlayer:
  138. - added initWithOptions selector matching VLCMediaPlayer's implementation
  139. - added pause selector
  140. - added previous, next and playItemAtIndex selectors
  141. - VLCMedia:
  142. - added delegate method mediaMetaDataDidChange
  143. - VLCMediaPlayer:
  144. - added equalizer
  145. - added countOfTitles
  146. Modified API behavior:
  147. - VLCMediaPlayer:
  148. - implementing mediaPlayerTimeChanged and mediaPlayerStateChanged within a
  149. delegate object is optional now
  150. - VLCMedia:
  151. - nowPlaying meta information is correctly handled now
  152. Deprecated APIs:
  153. - VLCMedia:
  154. - media:metaValueChangedFrom:forKey:
  155. Changes within VLCKit between 2.0.0 and 2.1.0:
  156. ----------------------------------------------
  157. The entire framework was relicensed to LGPL 2.1 or later as well as its
  158. underlying playback modules.
  159. Support for transcoding and streaming as well as DVD playback was not affected
  160. by this move and stays under GPL until further notice.
  161. Please note that the Objective-C syntax was updated, so VLCKit may no longer
  162. compile with outdated versions of Xcode / clang.
  163. New APIs:
  164. - VLCStreamOutput:
  165. - support for subtitle transcoding
  166. - VLCMedia:
  167. - extended media track information for bitrate, language, description, source
  168. aspect ratio, source aspect denominator, frame rate, frame rate denominator,
  169. and text encoding
  170. - added setter and getter for individual meta data values as well as the
  171. ability to write changes to the media file
  172. - added (BOOL)isMediaSizeSuitableForDevice to let VLCKit determine whether the
  173. current media is considered to be suitable for the current device or
  174. playback is discouraged. Will always return true on OS X devices.
  175. - added individual getters for all statistic values, so client application can
  176. fetch single values instead of having to process a NSDictionary with all the
  177. available values. The old API is still available and will stay.
  178. - VLCMediaPlayer:
  179. - added support to enable, switch and disable video tracks
  180. - added setter/getter for SPU and audio delays
  181. - added setter/getter for the video scale factor
  182. - added support for the "adjust" video filter to manipulate contrast,
  183. brightness, hue, saturation and gamma on the fly
  184. - new interfaces to fetch names and IDs of audio, subtitle and video tracks
  185. - added the ability to launch instances with custom libvlc options
  186. - VLCLibrary:
  187. - added the ability to launch instances with custom libvlc options
  188. - added methods to set App ID and User-Agent
  189. - added readonly property to fetch compiler information
  190. Deprecated APIs:
  191. - VLCMediaPlayer:
  192. @property (readonly) NSUInteger fps;
  193. - use (float)fps instead.
  194. - (NSArray *)videoSubTitles;
  195. - use - (NSArray *)videoSubtitleNames; instead
  196. - (NSArray *)audioTracks;
  197. - use - (NSArray *)audioTrackNames; instead
  198. - (NSArray *)videoTracks;
  199. - use - (NSArray *)videoTrackNames; instead
  200. Modified behavior:
  201. - use of clang instead of llvm-gcc-4.2
  202. - updated project file for Xcode 4.3 and later
  203. - iOS Deployment target was raised to iOS 5.1
  204. - dropped support for the PowerPC architecture
  205. - Mac Deployment target was raised to OS X 10.7
  206. - different logging behavior: to see any debug messages, the framework needs
  207. to be compiled in debug mode
  208. MobileVLCKit features:
  209. - added support for Opus
  210. - slimmed binary by removing dysfunctional or irrelevant modules
  211. - screen sleep is prevented during playback
  212. - functionality is strictly limited for full LGPL compliance
  213. Removed APIs:
  214. - VLCMedia:
  215. - (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
  216. use setMetadata:(NSString *)data forKey:(NSString *)key instead