scratch – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 CHANGELOG
2 =========
3  
4 All notable changes to this project will be documented in this file.
5 This project adheres to [Semantic Versioning](http://semver.org/).
6  
7 [Unreleased]
8 ------------
9  
10 ### Added
11  
12 - Add pull request and issue templates.
13 - Usage of new codec "aac" of ffmpeg 3
14  
15 ### Changed
16  
17 - Updated changelog to follow [keepachangelog.com](http://keepachangelog.com/)
18 style you see now here.
19  
20 [0.7.0] - 2016-12-15
21 --------------------
22  
23 - Add support for FFMpeg 3 aac codec (@Nek-)
24 - Add a waveform filter to extract audio waveform images (@Romain)
25  
26 [0.6.1] - 2016-03-08
27 --------------------
28  
29 - Support PHP 7 and test against
30 - Unused code cleanup (@haphan)
31 - Composer and tests cleanup (PSR-4 autoloading)
32 - Allow usage of evenement v2.0
33  
34 [0.6.0] - 2016-01-30
35 --------------------
36  
37 - AbstractData::get no longer throws exceptions (@sujayjaju).
38 - Add crop filter (@cangelis).
39 - Fix watermark (@sujayjaju).
40  
41 [0.5.1] - 2016-08-26
42 --------------------
43  
44 - Fix video aspect ratio calculation (@nlegoff).
45  
46 [0.5.0] - 2014-08-12
47 --------------------
48  
49 - Add support for Wav and AAC audio formats (@MrHash).
50 - Add watermark filter (@sylvainv).
51 - Add configuration for audio channels (@SimonSimCity).
52  
53 [0.4.4] - 2016-12-17
54 --------------------
55  
56 - Fix width / height dimensions extraction.
57  
58 [0.4.3] - 2013-02-12
59 --------------------
60  
61 - Fix using rotate and resize filters at the same time (#78)
62  
63 [0.4.2] - 2013-11-29
64 --------------------
65  
66 - Add Rotate filter.
67 - Remove time_start metadata when using synchronize filter
68 - Remove restriction on filesystem resources.
69  
70 [0.4.1] - 2013-11-26
71 --------------------
72  
73 - Add Clip filter (@guimeira)
74  
75 [0.4.0] - 2013-10-21
76 --------------------
77  
78 - Add support for video to audio transcoding
79 - BC Break : Add FormatInterface::getPasses and FormatInterface::getExtraParams
80  
81 [0.3.5] - 2013-10-21
82 --------------------
83  
84 - Add vorbis audio format (@jacobbudin).
85 - Fix #66 : Allow single pass encodings.
86  
87 [0.3.4] - 2013-09-05
88 --------------------
89  
90 - Fix Invalid ratio computing.
91  
92 [0.3.3] - 2013-09-05
93 --------------------
94  
95 - Add convenient Stream::getDimensions method to extract video dimension.
96 - Add DisplayRatioFixer Frame filter.
97  
98 [0.3.2] - 2013-08-08
99 --------------------
100  
101 - Fix A/V synchronization over flash and HTML5 players.
102  
103 [0.3.1] - 2013-08-06
104 --------------------
105  
106 - Allow use of FFProbe on remote URIs.
107 - Fix #47 : MediaTypeInterface::save adds filters depending on the codec.
108 - Save frame to target file without prompt.
109  
110 [0.3.0] - 2013-07-04
111 --------------------
112  
113 - Complete rewrite of the library, lots of BC breaks, check the doc.
114  
115 [0.2.4] - 2013-05-10
116 --------------------
117  
118 - Add Video\ResizableInterface::getModulus method for better output scaling (@retrojunk)
119 - Fix timeout setting on audio/video encoding (@xammep-ua)
120  
121 [0.2.3] - 2013-04-21
122 --------------------
123  
124 - Add timeout getter and setter on FFMpeg and FFProbe
125 - Add timeout setting via second argument on FFMpeg::load and FFProbe::load
126  
127 [0.2.2] - 2013-02-11
128 --------------------
129  
130 - Add compatibility with FFMpeg 1.1
131 - Upgrade deprecated options (`-ab`, `-qscale` and `-b`)
132 - Use of a custom stat file for each multi-pass encoding (fix #20)
133 - Use larger version range for dependencies
134  
135 [0.2.1] - 2013-02-04
136 --------------------
137  
138 - Parse the output of FFProbe using correct EOL sequences (@ak76)
139 - Add process timeout customization (@pulse00)
140 - Fix `accurate` option (`FFMpeg::extractImage`)
141  
142 [0.2.0] - 2012-12-13
143 --------------------
144  
145 - Add HelperInterface and support for realtime progress ( @pulse00 ).
146 - Add `accurate` option to `FFMpeg::extractImage` method.
147  
148 0.1.0 - 2012-10-30
149 --------------------
150  
151 - First stable version.
152  
153 [Unreleased]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.6.1...HEAD
154 [0.6.1]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.6.0...0.6.1
155 [0.6.0]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.5.1...0.6.0
156 [0.5.1]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.5.0...0.5.1
157 [0.5.0]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.4.4...0.5.0
158 [0.4.4]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.4.3...0.4.4
159 [0.4.3]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.4.2...0.4.3
160 [0.4.2]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.4.1...0.4.2
161 [0.4.1]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.4.0...0.4.1
162 [0.4.0]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.5...0.4.0
163 [0.3.5]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.4...0.3.5
164 [0.3.4]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.3...0.3.4
165 [0.3.3]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.2...0.3.3
166 [0.3.2]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.1...0.3.2
167 [0.3.1]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.3.0...0.3.1
168 [0.3.0]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.2.4...0.3.0
169 [0.2.4]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.2.3...0.2.4
170 [0.2.3]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.2.2...0.2.3
171 [0.2.2]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.2.1...0.2.2
172 [0.2.1]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.2.0...0.2.1
173 [0.2.0]: https://github.com/PHP-FFMpeg/PHP-FFMpeg/compare/0.1.0...0.2.0