NEWS 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Next version:
  2. -------------
  3. VLCKit:
  4. - VLCMediaThumbnailer is a public API on the Mac now matching the mobile
  5. counterpart
  6. Modified API behavior:
  7. - VLCMediaPlayer:
  8. - implementing mediaPlayerTimeChanged is now optional
  9. Changes within VLCKit between 2.0.0 and 2.1.0:
  10. ----------------------------------------------
  11. The entire framework was relicensed to LGPL 2.1 or later as well as its
  12. underlying playback modules.
  13. Support for transcoding and streaming as well as DVD playback was not affected
  14. by this move and stays under GPL until further notice.
  15. Please note that the Objective-C syntax was updated, so VLCKit may no longer
  16. compile with outdated versions of Xcode / clang.
  17. New APIs:
  18. - VLCStreamOutput:
  19. - support for subtitle transcoding
  20. - VLCMedia:
  21. - extended media track information for bitrate, language, description, source
  22. aspect ratio, source aspect denominator, frame rate, frame rate denominator,
  23. and text encoding
  24. - added setter and getter for individual meta data values as well as the
  25. ability to write changes to the media file
  26. - added (BOOL)isMediaSizeSuitableForDevice to let VLCKit determine whether the
  27. current media is considered to be suitable for the current device or
  28. playback is discouraged. Will always return true on OS X devices.
  29. - added individual getters for all statistic values, so client application can
  30. fetch single values instead of having to process a NSDictionary with all the
  31. available values. The old API is still available and will stay.
  32. - VLCMediaPlayer:
  33. - added support to enable, switch and disable video tracks
  34. - added setter/getter for SPU and audio delays
  35. - added setter/getter for the video scale factor
  36. - added support for the "adjust" video filter to manipulate contrast,
  37. brightness, hue, saturation and gamma on the fly
  38. - new interfaces to fetch names and IDs of audio, subtitle and video tracks
  39. - added the ability to launch instances with custom libvlc options
  40. - VLCLibrary:
  41. - added the ability to launch instances with custom libvlc options
  42. - added methods to set App ID and User-Agent
  43. - added readonly property to fetch compiler information
  44. Deprecated APIs:
  45. - VLCMediaPlayer:
  46. @property (readonly) NSUInteger fps;
  47. - use (float)fps instead.
  48. - (NSArray *)videoSubTitles;
  49. - use - (NSArray *)videoSubtitleNames; instead
  50. - (NSArray *)audioTracks;
  51. - use - (NSArray *)audioTrackNames; instead
  52. - (NSArray *)videoTracks;
  53. - use - (NSArray *)videoTrackNames; instead
  54. Modified behavior:
  55. - use of clang instead of llvm-gcc-4.2
  56. - updated project file for Xcode 4.3 and later
  57. - iOS Deployment target was raised to iOS 5.1
  58. - dropped support for the PowerPC architecture
  59. - Mac Deployment target was raised to OS X 10.7
  60. - different logging behavior: to see any debug messages, the framework needs
  61. to be compiled in debug mode
  62. MobileVLCKit features:
  63. - added support for Opus
  64. - slimmed binary by removing dysfunctional or irrelevant modules
  65. - screen sleep is prevented during playback
  66. - functionality is strictly limited for full LGPL compliance
  67. Removed APIs:
  68. - VLCMedia:
  69. - (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
  70. use setMetadata:(NSString *)data forKey:(NSString *)key instead