NEWS 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. Modified API behavior:
  33. - VLCMediaPlayer:
  34. - implementing mediaPlayerTimeChanged and mediaPlayerStateChanged within a
  35. delegate object is optional now
  36. - VLCMedia:
  37. - nowPlaying meta information is correctly handled now
  38. Deprecated APIs:
  39. - VLCMedia:
  40. - media:metaValueChangedFrom:forKey:
  41. Changes within VLCKit between 2.0.0 and 2.1.0:
  42. ----------------------------------------------
  43. The entire framework was relicensed to LGPL 2.1 or later as well as its
  44. underlying playback modules.
  45. Support for transcoding and streaming as well as DVD playback was not affected
  46. by this move and stays under GPL until further notice.
  47. Please note that the Objective-C syntax was updated, so VLCKit may no longer
  48. compile with outdated versions of Xcode / clang.
  49. New APIs:
  50. - VLCStreamOutput:
  51. - support for subtitle transcoding
  52. - VLCMedia:
  53. - extended media track information for bitrate, language, description, source
  54. aspect ratio, source aspect denominator, frame rate, frame rate denominator,
  55. and text encoding
  56. - added setter and getter for individual meta data values as well as the
  57. ability to write changes to the media file
  58. - added (BOOL)isMediaSizeSuitableForDevice to let VLCKit determine whether the
  59. current media is considered to be suitable for the current device or
  60. playback is discouraged. Will always return true on OS X devices.
  61. - added individual getters for all statistic values, so client application can
  62. fetch single values instead of having to process a NSDictionary with all the
  63. available values. The old API is still available and will stay.
  64. - VLCMediaPlayer:
  65. - added support to enable, switch and disable video tracks
  66. - added setter/getter for SPU and audio delays
  67. - added setter/getter for the video scale factor
  68. - added support for the "adjust" video filter to manipulate contrast,
  69. brightness, hue, saturation and gamma on the fly
  70. - new interfaces to fetch names and IDs of audio, subtitle and video tracks
  71. - added the ability to launch instances with custom libvlc options
  72. - VLCLibrary:
  73. - added the ability to launch instances with custom libvlc options
  74. - added methods to set App ID and User-Agent
  75. - added readonly property to fetch compiler information
  76. Deprecated APIs:
  77. - VLCMediaPlayer:
  78. @property (readonly) NSUInteger fps;
  79. - use (float)fps instead.
  80. - (NSArray *)videoSubTitles;
  81. - use - (NSArray *)videoSubtitleNames; instead
  82. - (NSArray *)audioTracks;
  83. - use - (NSArray *)audioTrackNames; instead
  84. - (NSArray *)videoTracks;
  85. - use - (NSArray *)videoTrackNames; instead
  86. Modified behavior:
  87. - use of clang instead of llvm-gcc-4.2
  88. - updated project file for Xcode 4.3 and later
  89. - iOS Deployment target was raised to iOS 5.1
  90. - dropped support for the PowerPC architecture
  91. - Mac Deployment target was raised to OS X 10.7
  92. - different logging behavior: to see any debug messages, the framework needs
  93. to be compiled in debug mode
  94. MobileVLCKit features:
  95. - added support for Opus
  96. - slimmed binary by removing dysfunctional or irrelevant modules
  97. - screen sleep is prevented during playback
  98. - functionality is strictly limited for full LGPL compliance
  99. Removed APIs:
  100. - VLCMedia:
  101. - (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
  102. use setMetadata:(NSString *)data forKey:(NSString *)key instead