NEWS 3.6 KB

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