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