NEWS 4.3 KB

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