]> git.sesse.net Git - casparcg/blob - CHANGES.txt
Spelling and punctuation.
[casparcg] / CHANGES.txt
1 C H A N G E S\r
2 \r
3 CasparCG 2.0.4 Stable (as compared to 2.0.4 Beta 1)\r
4 ===================================================\r
5 \r
6 General\r
7 -------\r
8   o Can now open media with file names that only consist of digits.\r
9   o Miscellaneous stability and performance improvements.\r
10 \r
11 Video mixer\r
12 -----------\r
13   o Conditional compilation of chroma key support and straight alpha output\r
14     support in shader (just like with blend-modes) because of performance impact\r
15     even when not in use on a layer or on a channel. New <mixer /> element added\r
16     to configuration for turning on mixer features that not everybody would want\r
17     to pay for (performance-wise.) blend-modes also moved into this element.\r
18   o Fixed bug where MIXER LEVELS interpreted arguments in the wrong order, so \r
19     that gamma was interpreted as max_input and vice versa.\r
20 \r
21 Consumers\r
22 ---------\r
23   o Added support for NewTek iVGA, which enables the use of CasparCG Server \r
24     fill+key output(s) as input source(s) to a NewTek TriCaster without \r
25     requiring video card(s) in the CasparCG Server machine, or taking up inputs\r
26     in the TriCaster. <newtek-ivga /> element in config enables iVGA on a channel.\r
27   o Decklink: Created custom decklink allocator to reduce the memory footprint.\r
28   o Replaced usage of SFML for <system-audio /> with PortAudio, because of\r
29     problems with SFML since change to static linkage. Also PortAudio seems to\r
30     give lower latency.\r
31 \r
32 Producers\r
33 ---------\r
34   o FFmpeg: Added support for arbitrary FFmpeg options/parameters\r
35     in ffmpeg_producer.\r
36   o Flash: Flash Player 11.8 now tested and fully supported.\r
37   o Flash: No longer starts a Flash Player to service CG commands that mean\r
38     nothing without an already running Flash Player.\r
39   o Flash: globally serialize initialization and destruction of Flash Players,\r
40     to avoid race conditions in Flash.\r
41   o Flash: changed so that the Flash buffer is filled with Flash Player\r
42     generated content at initialization instead of empty frames.\r
43 \r
44 OSC\r
45 ---\r
46   o Performance improvements.\r
47   o Never sends old values to OSC reveivers. Collects the latest value of each\r
48     path logged since last UDP send, and sends the new UDP packet (to each\r
49     subscribing OSC receiver) with the values collected.\r
50   o Batches as many OSC messages as possible in an OSC bundle to reduce the \r
51     number of UDP packets sent. Breakup into separate packages if necessary to \r
52     avoid fragmentation.\r
53   o Removed usage of Microsoft Agents library (Server ran out of memory after a\r
54     while) in favour of direct synchronous invocations.\r
55 \r
56 \r
57 \r
58 \r
59 \r
60 CasparCG 2.0.4 Beta 1 (as compared to 2.0.3 Stable)\r
61 ===================================================\r
62 \r
63 General\r
64 -------\r
65   o Front-end GUI for simplified configuration and easy access to common tasks.\r
66   o Added support for video and images file thumbnail generation. By default the\r
67     media directory is scanned every 5 seconds for new/modified/removed files\r
68     and thumbnails are generated/regenerated/removed accordingly.\r
69   o Support for new video modes: 1556p2398, 1556p2400, 1556p2500, 2160p2398,\r
70     2160p2400, 2160p2500, 2160p2997 and 2160p3000.\r
71   o Experimental ATI graphics card support by using static linking against SFML\r
72     instead of dynamic. Should improve ATI GPU support, but needs testing.\r
73   o Added support for playback and pass-through of up to 16 audio channels. See\r
74     http://casparcg.com/forum/viewtopic.php?f=3&t=1453 for more information.\r
75   o Optimizations in AMCP protocol implementations for large incoming messages,\r
76     for example base64 encoded PNG images.\r
77   o Logging output now includes milliseconds and has modified format:\r
78     YYYY-MM-DD hh:mm:ss.zzz\r
79   o Improved audio playback with 720p5994 and 720p6000 channels.\r
80   o An attempt to improve output synchronization of consumers has been made. Use\r
81     for example:\r
82 \r
83     <consumers>\r
84       <synchronizing>\r
85         <decklink>\r
86           <device>1</device>\r
87           <embedded-audio>true</embedded-audio>\r
88         </decklink>\r
89         <decklink>\r
90           <device>2</device>\r
91           <key-only>true</key-only>\r
92         </decklink>\r
93       </synchronizing>\r
94     </consumers>\r
95 \r
96     ...to instruct the server to keep both DeckLink consumers in sync with each\r
97     other. Consider this experimental, so don't wrap everything in\r
98     <synchronizing /> unless synchronization of consumer outputs is needed. For\r
99     synchronization to be effective all synchronized cards must have genlock\r
100     reference signal connected.\r
101 \r
102 Layer\r
103 -----\r
104   o Fixed a problem where the first frame was not always shown on LOAD.\r
105 \r
106 Audio mixer\r
107 -----------\r
108   o Added support for a master volume mixer setting for each channel.\r
109 \r
110 Video mixer\r
111 -----------\r
112   o Added support for chroma keying.\r
113   o Fixed bug where MIXER CONTRAST set to < 1 can cause transparency issues.\r
114   o Experimental support for straight alpha output.\r
115 \r
116 Consumers\r
117 ---------\r
118   o Avoid that the FFmpeg consumer blocks the channel output when it can't keep\r
119     up with the frame rate (drops frames instead).\r
120   o Added support for to create a separate key and fill file when recording with\r
121     the FFmpeg consumer. Add the SEPARATE_KEY parameter to the FFmpeg consumer\r
122     parameter list. The key file will get the _A file name suffix to be picked\r
123     up by the separated_producer when doing playback.\r
124   o The Image consumer now writes to the media folder instead of the data\r
125     folder.\r
126   o Fixed bug in DeckLink consumer where we submit too few audio samples to the\r
127     driver when the video format has a frame rate > 50.\r
128   o Added another experimental DeckLink consumer implementation where scheduled\r
129     playback is not used, but a similar approach as in the bluefish consumer\r
130     where we wait for a frame to be displayed and then display the next frame.\r
131     It is configured via a <blocking-decklink> consumer element. The benefits of\r
132     this consumer is lower latency and more deterministic synchronization\r
133     between multiple instances (should not need to be wrapped in a\r
134     <synchronizing> element when separated key/fill is used).\r
135 \r
136 Producers\r
137 ---------\r
138   o Added support for playing .swf files using the Flash producer.\r
139   o Image producer premultiplies PNG images with their alpha.\r
140   o Image producer can load a PNG image encoded as base64 via:\r
141     PLAY 1-0 [PNG_BASE64] <base64 string>\r
142   o FFmpeg producer can now use a directshow input filters:\r
143     PLAY 1-10 "dshow://video=Some Camera"\r
144 \r
145 AMCP\r
146 ----\r
147   o The master volume feature is controlled via the MASTERVOLUME MIXER\r
148     parameter. Example: MIXER 1 MASTERVOLUME 0.5\r
149   o THUMBNAIL LIST/RETRIEVE/GENERATE/GENERATE_ALL command was added to support\r
150     the thumbnail feature.\r
151   o ADD 1 FILE output.mov SEPARATE_KEY activates the separate key feature of the\r
152     FFmpeg consumer creating an additional output_a.mov containing only the key.\r
153   o Added KILL command for shutting down the server without console access.\r
154   o Added RESTART command for shutting down the server in the same way as KILL\r
155     except that the return code from CasparCG Server is 5 instead of 0, which\r
156     can be used by parent process to take other actions. The\r
157     'casparcg_auto_restart.bat' script restarts the server if the return code is\r
158     5.\r
159   o DATA RETRIEVE now returns linefeeds encoded as an actual linefeed (the\r
160     single character 0x0a) instead of the previous two characters:\r
161     \ followed by n.\r
162   o MIXER CHROMA command added to control the chroma keying. Example:\r
163     MIXER 1-1 CHROMA GREEN|BLUE 0.10 0.04\r
164   o Fixed bug where MIXER FILL overrides any previous MIXER CLIP on the same\r
165     layer. The bugfix also has the side effect of supporting negative scale on\r
166     MIXER FILL, causing the image to be flipped.\r
167   o MIXER <ch> STRAIGHT_ALPHA_OUTPUT added to control whether to output straight\r
168     alpha or not.\r
169   o Added INFO <ch> DELAY and INFO <ch>-<layer> DELAY commands for showing some\r
170     delay measurements.\r
171 \r
172 \r
173 OSC\r
174 ---\r
175   o Support for sending OSC messages over UDP to either a predefined set of\r
176     clients (servers in the OSC sense) or dynamically to the ip addresses of the\r
177     currently connected AMCP clients.\r
178   o /channel/[1-9]/stage/layer/[0-9]\r
179     + always             /paused           [paused or not]\r
180     + color producer     /color            [color string]\r
181     + ffmpeg producer    /profiler/time    [render time]     [frame duration]\r
182     + ffmpeg producer    /file/time        [elapsed seconds] [total seconds]\r
183     + ffmpeg producer    /file/frame       [frame]           [total frames]\r
184     + ffmpeg producer    /file/fps         [fps]\r
185     + ffmpeg producer    /file/path        [file path]\r
186     + ffmpeg producer    /loop             [looping or not]\r
187     + during transitions /transition/frame [current frame]   [total frames]\r
188     + during transitions /transition/type  [transition type]\r
189     + flash producer     /host/path        [filename]\r
190     + flash producer     /host/width       [width]\r
191     + flash producer     /host/height      [height]\r
192     + flash producer     /host/fps         [fps]\r
193     + flash producer     /buffer           [buffered]        [buffer size]\r
194     + image producer     /file/path        [file path]\r
195 \r
196 \r
197 \r
198 CasparCG 2.0.3 Stable (as compared to 2.0.3 Alpha)\r
199 ==================================================\r
200 \r
201 Stage\r
202 -----\r
203 \r
204   o Fixed dead-lock that can occur with multiple mixer tweens.\r
205 \r
206 AMCP\r
207 ----\r
208 \r
209   o DATA STORE now supports creating folders of path specified if they does not\r
210     exist.\r
211   o DATA REMOVE command was added.\r
212 \r
213 \r
214 CasparCG 2.0.3 Alpha (as compared to 2.0 Stable)\r
215 ================================================\r
216 \r
217 General\r
218 -------\r
219 \r
220   o Data files are now stored in UTF-8 with BOM. Latin1 files are still\r
221     supported for backwards compatibility\r
222   o Commands written in UTF-8 to log file but only ascii characters to console.\r
223   o Added supported video formats:\r
224     + 720p2398 (not supported by DeckLink)\r
225     + 720p2400 (not supported by DeckLink)\r
226     + 1080p5994\r
227     + 1080p6000\r
228     + 720p30 (not supported by DeckLink)\r
229     + 720p29.976 (not supported by DeckLink)\r
230 \r
231 CLK\r
232 ---\r
233 \r
234   o CLK protocol implementation can now serve more than one connection at a time\r
235     safely.\r
236   o Added timeline support to the CLK protocol.\r
237   o Refactored parts of the CLK parser implementation.\r
238 \r
239 Consumers\r
240 ---------\r
241 \r
242   o Consumers on same channel now invoked asynchronously to allow for proper\r
243     sync of multiple consumers.\r
244   o System audio consumer:\r
245     + no longer provides sync to caspar.\r
246   o Screen consumer:\r
247     + Support for multiple screen consumers on the same channel\r
248     + No longer spin-waits for vsync\r
249     + Now deinterlaces to two separate frames so for example 50i will no longer\r
250       be converted to 25p but instead to 50p for smooth playback of interlaced\r
251       content.\r
252   o Decklink consumer now logs whether a reference signal is detected or not.\r
253 \r
254 Producers\r
255 ---------\r
256 \r
257   o Image scroll producer:\r
258     + Field-rate motion instead of frame-rate motion with interlaced video\r
259       formats. This can be overridden by giving the PROGRESSIVE parameter.\r
260     + SPEED parameter now defines pixels per frame/field instead of half pixels\r
261       per frame. The scrolling direction is also reversed so SPEED 0.5 is the\r
262       previous equivalent of SPEED -1. Movements are done with subpixel accuracy\r
263     + Fixed incorrect starting position of image.\r
264     + Rounding error fixes to allow for more exact scrolling.\r
265     + Added support for motion blur via a new BLUR parameter\r
266     + Added PREMULTIPLY parameter to support images stored with straight alpha.\r
267 \r
268 \r
269 CasparCG 2.0 Stable (as compared to Beta 3)\r
270 ===========================================\r
271 \r
272 General\r
273 -------\r
274 \r
275   o Misc stability and performance fixes.\r
276 \r
277 Consumers\r
278 ---------\r
279 \r
280   o File Consumer\r
281     + Changed semantics to more closely follow FFmpeg (see forums).\r
282     + Added options, -r, -acodec, -s, -pix_fmt, -f and more.\r
283   o Screen Consumer\r
284     + Added vsync support.\r
285 \r
286 \r
287 CasparCG 2.0 Beta 3 (as compared to Beta 1)\r
288 ===========================================\r
289 \r
290 Formats\r
291 -------\r
292 \r
293   o ProRes Support\r
294     + Both encoding and decoding.\r
295   o NTSC Support\r
296     + Updated audio-pipeline for native NTSC support. Previous implementation\r
297       did not fully support NTSC audio and could cause incorrect behaviour or\r
298       even crashes.\r
299 \r
300 Consumers\r
301 ---------\r
302 \r
303   o File Consumer added\r
304     + See updated wiki or ask in forum for more information.\r
305     + Should support anything FFmpeg supports. However, we will work mainly with\r
306       DNXHD, PRORES and H264.\r
307     - Key-only is not supported.\r
308   o Bluefish Consumer\r
309     + 24 bit audio support.\r
310     - Embedded-audio does not work with Epoch cards.\r
311   o Decklink Consumer\r
312     + Low latency enabled by default.\r
313     + Added graphs for driver buffers.\r
314   o Screen Consumer\r
315     + Changed screen consumer square PAL to the more common wide-square PAL.\r
316     + Can now be closed.\r
317     + Fixed interpolation artifacts when running non-square video-modes.\r
318     + Automatically deinterlace interlaced input.\r
319 \r
320 Producers\r
321 ---------\r
322 \r
323   o Decklink Producer\r
324     + Improved color quality be avoiding uneccessary conversion to BGRA.\r
325   o FFMPEG Producer\r
326     + Fixed missing alpha for (RGB)A formats when deinterlacing.\r
327     + Updated buffering to work better with files with long audio/video\r
328       interleaving.\r
329     + Seekable while running and after reaching EOF. CALL 1-1 SEEK 200.\r
330     + Enable/disable/query looping while running. CALL 1-1 LOOP 1.\r
331     + Fixed bug with duration calculation.\r
332     + Fixed bug with fps calculation.\r
333     + Improved auto-transcode accuracy.\r
334     + Improved seeking accuracy.\r
335     + Fixed bug with looping and LENGTH.\r
336     + Updated to newer FFmpeg version.\r
337     + Fixed incorrect scaling of NTSC DV files.\r
338     + Optimized color conversion when using YADIF filters.\r
339   o Flash Producer\r
340     + Release Flash Player when empty.\r
341     + Use native resolution TemplateHost.\r
342     + TemplateHosts are now choosen automatically if not configured. The\r
343       TemplateHost with the corresponding video-mode name is now chosen.\r
344     + Use square pixel dimensions.\r
345 \r
346 AMCP\r
347 ----\r
348 \r
349   o When possible, commands will no longer wait for rendering pipeline. This\r
350     reduces command execution latencies, especially when sending a lot of\r
351     commands in a short timespan.\r
352   o Fixed CINF command.\r
353   o ADD/REMOVE no longer require subindex,\r
354     e.g. "ADD 1 SCREEN" / "REMOVE 1 SCREEN" instead of "ADD 1-1 SCREEN" / ...\r
355   o PARAM is renamed to CALL.\r
356   o STATUS command is replaced by INFO.\r
357   o INFO command has been extended:\r
358     + INFO (lists channels).\r
359     + INFO 1 (channel info).\r
360     + INFO 1-1 (layer info).\r
361     + INFO 1-1 F (foreground producer info).\r
362     + INFO 1-1 B (background producer info).\r
363     + INFO TEMPLATE mytemplate (template meta-data info, e.g. field names).\r
364   o CG INFO command has been extended.\r
365     + CG INFO 1 (template-host information, e.g. what layers are occupied).\r
366 \r
367 Mixer\r
368 -----\r
369 \r
370   o Fixed alpha with blend modes.\r
371   o Automatically deinterlace for MIXER FILL commands.\r
372 \r
373 Channel\r
374 -------\r
375 \r
376   o SET MODE now reverts back to old video-mode on failure.\r
377 \r
378 Diagnostics\r
379 -----------\r
380 \r
381   o Improved graphs and added more status information.\r
382   o Print configuration into log at startup.\r
383   o Use the same log file for the entire day, instead of one per startup as\r
384     previously.\r
385   o Diagnostics window is now closable.\r
386 \r
387 \r
388 CasparCG 2.0 Beta 1 (as compared to Alpha)\r
389 ==========================================\r
390 \r
391   o Blending Modes (needs to be explicitly enabled)\r
392     + overlay\r
393     + screen\r
394     + multiply\r
395     + and many more.\r
396   o Added additive keyer in addition to linear keyer.\r
397   o Image adjustements\r
398     + saturation\r
399     + brightness\r
400     + contrast\r
401     + min input-level\r
402     + max input-level\r
403     + min output-level\r
404     + max output-level\r
405     + gamma\r
406   o Support for FFmpeg-filters such as (ee http://ffmpeg.org/libavfilter.html)\r
407     + yadif deinterlacer (optimized in CasparCG for full multi-core support)\r
408     + de-noising\r
409     + dithering\r
410     + box blur\r
411     + and many more\r
412   o 32-bit SSE optimized audio pipeline.\r
413   o Decklink-Consumer uses external-key by default.\r
414   o Decklink-Consumer has 32 bit embedded-audio support.\r
415   o Decklink-Producer has 32 bit embedded-audio support.\r
416   o LOADBG with AUTO feature which automatically playes queued clip when\r
417     foreground clip has ended.\r
418   o STATUS command for layers.\r
419   o LOG LEVEL command for log filtering.\r
420   o MIX transitation work with transparent clips.\r
421   o Freeze on last frame.\r
422   o Producer buffering is now configurable.\r
423   o Consumer buffering is now configurable.\r
424   o Now possible to configure template-hosts for different video-modes.\r
425   o Added auto transcoder for FFmpeg producer which automatically transcodes\r
426     input video into compatible video format for the channel.\r
427     + interlacing (50p -> 50i)\r
428     + deinterlacing (50i -> 25p)\r
429     + bob-deinterlacing (50i -> 50p)\r
430     + bob-deinterlacing and reinterlacing (w1xh150i -> w2xh250i)\r
431     + doubling (25p -> 50p)\r
432     + halfing (50p -> 25p)\r
433     + field-order swap (upper <-> lower)\r
434   o Screen consumer now automatically deinterlaces when receiveing interlaced\r
435     content.\r
436   o Optimized renderer.\r
437   o Renderer can now be run asynchronously with producer by using a\r
438     producer-buffer size greater than 0.\r
439   o Improved error and crash recovery.\r
440   o Improved logging.\r
441   o Added Image-Scroll-Producer\r
442   o Key-only has now near zery performance overhead.\r
443   o Reduced memory requirements\r
444   o Removed "warm up lag" which occured when playing the first media clip after\r
445     the server has started.\r
446   o Added read-back fence for OpenGL device for improved multi-channel\r
447     performance.\r
448   o Memory support increased from standard 2 GB to 4 GB on 64 bit Win 7 OS.\r
449   o Added support for 2* Decklink cards in FullHD.\r
450   o Misc bugs fixes and performance improvements.\r
451   o Color producer now support some color codes in addition to color codes, e.g.\r
452     EMPTY, BLACK, RED etc...\r
453   o Alpha value in color codes is now optional.\r
454   o More than 2 Decklink cards might be possible but have not yet been tested.\r
455 \r
456 \r
457 CasparCG 2.0 Alpha (as compared to 1.8)\r
458 =======================================\r
459 \r
460 General\r
461 -------\r
462 \r
463   o Mayor refactoring for improved readability and mainainability.\r
464   o Some work towards platorm-independence. Currently the greatest challenge for\r
465     full platform-independence is flash-producer.\r
466   o Misc improved scalability.\r
467   o XML-configuration.\r
468   o Decklink\r
469     + Support for multiple DeckLink cards.\r
470 \r
471 Core\r
472 ----\r
473 \r
474   o Multiple producers per video_channel.\r
475   o Multiple consumers per video_channel.\r
476   o Swap producers between layers and channels during run-time.\r
477   o Support for upper-field and lower-field interlacing.\r
478   o Add and remove consumers during run-time.\r
479   o Preliminary support for NTSC.\r
480 \r
481 AMCP\r
482 ----\r
483 \r
484   o Query flash and template-host version.\r
485   o Recursive media-folder listing.\r
486   o Misc changes.\r
487 \r
488 Mixer\r
489 -----\r
490 \r
491   o Animated tween transforms.\r
492   o Image-Mixer\r
493     + Fully GPU accelerated (all features listed below are done on the gpu),\r
494     + Layer composition.\r
495     + Colorspaces (rgba, bgra, argb, yuv, yuva, yuv-hd, yuva-hd).\r
496     + Interlacing.\r
497     + Per-layer image-transforms:\r
498       + Opacity\r
499       + Gain\r
500       + Scaling\r
501       + Clipping\r
502       + Translation\r
503   o Audio-Mixer\r
504     + Per-layer and per-sample audio-transforms:\r
505         + Gain\r
506     + Fully internal audio-mixing. Single output-video_channel.\r
507 \r
508 Consumers\r
509 ---------\r
510 \r
511   o Decklink-Consumer\r
512     + Embedded audio.\r
513     + HD support.\r
514     + Hardware clock.\r
515   o Bluefish-Consumer\r
516     + Drivers are loaded on-demand (server now runs on computers without\r
517       installed bluefish-drivers).\r
518     + Embedded-audio.\r
519     + Allocated frames are no longer leaked.\r
520 \r
521 Producers\r
522 ---------\r
523 \r
524   o Decklink-Producer\r
525     + Embedded audio.\r
526     + HD support.\r
527   o Color-Producer\r
528     + GPU accelerated.\r
529   o FFMPEG-Producer\r
530     + Asynchronous file IO.\r
531     + Parallel decoding of audio and video.\r
532     + Colorspace transform are moved to gpu.\r
533   o Transition-Producer\r
534     + Fully interlaced transition (previsously only progressive, even when\r
535       running in interlaced mode).\r
536     + Per-sample mixing between source and destination clips.\r
537     + Tween transitions.\r
538   o Flash-Producer\r
539     + DirectDraw access (sligthly improved performance).\r
540     + Improved time-sync. Smoother animations and proper interlacing.\r
541   o Image-Producer\r
542     + Support for various imageformats through FreeImage library.\r
543 \r
544 Diagnostics\r
545 -----------\r
546 \r
547   o Graphs for monitoring performance and events.\r
548   o Misc logging improvements.\r
549   o Seperate log-file for every run of the server.\r
550   o Error logging provides full exception details, instead of only printing that\r
551     an error has occured.\r
552   o Console with real-time logging output.\r
553   o Console with AMCP input.\r
554 \r
555 Removed\r
556 -------\r
557 \r
558   o Registry-configuration (replaced by XML-Configuration).\r
559   o TGA-Producer (replaced by Image-Producer).\r
560   o TGA-Scroll-Producer\r