NEWS 4.2 KB

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