NEWS 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. Version 3.0.0:
  2. --------------
  3. New APIs:
  4. - VLCLibrary
  5. - added properties: debugLogging, debugLoggingLevel
  6. - VLCMediaPlayer
  7. - added properties: titleDescriptions, indexOfLongestTitle, numberOfTitles
  8. - added selectors: chaptersForTitleIndex:
  9. numberOfChaptersForTitle:
  10. - VLCMedia
  11. - added keys: VLCMetaInformationTrackTotal, VLCMetaInformationDirector,
  12. VLCMetaInformationSeason, VLCMetaInformationEpisode,
  13. VLCMetaInformationShowName, VLCMetaInformationActors,
  14. VLCMetaInformationAlbumArtist, VLCMetaInformationDiscNumber
  15. - added selectors: codecNameForFourCC:trackType:
  16. mediaType
  17. parseWithOptions:
  18. - added enums: VLCMediaType, VLCMediaParsingOptions
  19. Deprecated APIs:
  20. - VLCMediaPlayer
  21. - titles, chaptersForTitleIndex:, countOfTitles
  22. Removed APIs:
  23. - VLCAudio:
  24. - the entire object is no longer part of the MobileVLCKit distribution
  25. - VLCMedia:
  26. - fps
  27. - media:metaValueChangedFrom:forKey:
  28. - VLCMediaPlayer
  29. - audioTracks
  30. - videoTracks
  31. - videoSubTitles
  32. Version 2.2.2:
  33. --------------
  34. New APIs:
  35. - VLCMediaPlayer
  36. - added properties: numberOfVideoTracks, numberOfSubtitlesTracks
  37. numberOfAudioTracks
  38. Version 2.2.0:
  39. --------------
  40. Cross-platform:
  41. - Fixed deinterlacing if requested
  42. - Fixed decoding and display of Teletext-based subtitles
  43. - Improved thumbnailing reliability
  44. - Added support for inclusion in swift projects
  45. - Switched to Automatic Reference Counting
  46. - Various stability improvements
  47. MobileVLCKit:
  48. - It is finally possible to compile the framework without relying on third
  49. party scripts
  50. - Added 2 sample projects illustrating video playback
  51. - Added support for https and hls playback
  52. - VLCMediaListPlayer is available now
  53. - Added support for https connectivity
  54. VLCKit:
  55. - VLCMediaThumbnailer is a public API on the Mac now matching the mobile
  56. counterpart
  57. - Updated samples projects illustrating playback, file conversation, ...
  58. New APIs:
  59. - VLCMediaThumbnailer:
  60. - added property: snapshotPosition to overwrite the default
  61. - VLCMediaListPlayer:
  62. - added initWithOptions selector matching VLCMediaPlayer's implementation
  63. - added pause selector
  64. - added previous, next and playItemAtIndex selectors
  65. - VLCMedia:
  66. - added delegate method mediaMetaDataDidChange
  67. - VLCMediaPlayer:
  68. - added equalizer
  69. - added countOfTitles
  70. Modified API behavior:
  71. - VLCMediaPlayer:
  72. - implementing mediaPlayerTimeChanged and mediaPlayerStateChanged within a
  73. delegate object is optional now
  74. - VLCMedia:
  75. - nowPlaying meta information is correctly handled now
  76. Deprecated APIs:
  77. - VLCMedia:
  78. - media:metaValueChangedFrom:forKey:
  79. Changes within VLCKit between 2.0.0 and 2.1.0:
  80. ----------------------------------------------
  81. The entire framework was relicensed to LGPL 2.1 or later as well as its
  82. underlying playback modules.
  83. Support for transcoding and streaming as well as DVD playback was not affected
  84. by this move and stays under GPL until further notice.
  85. Please note that the Objective-C syntax was updated, so VLCKit may no longer
  86. compile with outdated versions of Xcode / clang.
  87. New APIs:
  88. - VLCStreamOutput:
  89. - support for subtitle transcoding
  90. - VLCMedia:
  91. - extended media track information for bitrate, language, description, source
  92. aspect ratio, source aspect denominator, frame rate, frame rate denominator,
  93. and text encoding
  94. - added setter and getter for individual meta data values as well as the
  95. ability to write changes to the media file
  96. - added (BOOL)isMediaSizeSuitableForDevice to let VLCKit determine whether the
  97. current media is considered to be suitable for the current device or
  98. playback is discouraged. Will always return true on OS X devices.
  99. - added individual getters for all statistic values, so client application can
  100. fetch single values instead of having to process a NSDictionary with all the
  101. available values. The old API is still available and will stay.
  102. - VLCMediaPlayer:
  103. - added support to enable, switch and disable video tracks
  104. - added setter/getter for SPU and audio delays
  105. - added setter/getter for the video scale factor
  106. - added support for the "adjust" video filter to manipulate contrast,
  107. brightness, hue, saturation and gamma on the fly
  108. - new interfaces to fetch names and IDs of audio, subtitle and video tracks
  109. - added the ability to launch instances with custom libvlc options
  110. - VLCLibrary:
  111. - added the ability to launch instances with custom libvlc options
  112. - added methods to set App ID and User-Agent
  113. - added readonly property to fetch compiler information
  114. Deprecated APIs:
  115. - VLCMediaPlayer:
  116. @property (readonly) NSUInteger fps;
  117. - use (float)fps instead.
  118. - (NSArray *)videoSubTitles;
  119. - use - (NSArray *)videoSubtitleNames; instead
  120. - (NSArray *)audioTracks;
  121. - use - (NSArray *)audioTrackNames; instead
  122. - (NSArray *)videoTracks;
  123. - use - (NSArray *)videoTrackNames; instead
  124. Modified behavior:
  125. - use of clang instead of llvm-gcc-4.2
  126. - updated project file for Xcode 4.3 and later
  127. - iOS Deployment target was raised to iOS 5.1
  128. - dropped support for the PowerPC architecture
  129. - Mac Deployment target was raised to OS X 10.7
  130. - different logging behavior: to see any debug messages, the framework needs
  131. to be compiled in debug mode
  132. MobileVLCKit features:
  133. - added support for Opus
  134. - slimmed binary by removing dysfunctional or irrelevant modules
  135. - screen sleep is prevented during playback
  136. - functionality is strictly limited for full LGPL compliance
  137. Removed APIs:
  138. - VLCMedia:
  139. - (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
  140. use setMetadata:(NSString *)data forKey:(NSString *)key instead