NEWS 5.3 KB

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