-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathrss.xml
7269 lines (7252 loc) · 576 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title><![CDATA[FCP Cafe]]></title>
<description><![CDATA[Latest News from FCP Cafe]]></description>
<link>https://fcp.cafe</link>
<generator>FCP Cafe</generator>
<lastBuildDate>Fri, 11 Oct 2024 22:35:51 GMT</lastBuildDate>
<atom:link href="https://fcp.cafe/rss.xml" rel="self" type="application/rss+xml"/>
<pubDate>Fri, 11 Oct 2024 22:35:50 GMT</pubDate>
<item>
<title><![CDATA[23rd May 2023]]></title>
<description><![CDATA[<p>Iain Anderson has written a very detailed <a href="https://www.provideocoalition.com/final-cut-pro-10-6-6-for-mac/">Final Cut Pro 10.6.6 blog post</a> over at Pro Video Coalition.</p>
]]></description>
<link>https://fcp.cafe/#23rd-may-2023</link>
<guid isPermaLink="false">23rd May 2023</guid>
<pubDate>Tue, 23 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[26th May 2023]]></title>
<description><![CDATA[<p><strong>Turn of the Tide</strong> premiered today on Netflix. Fully edited in Final Cut Pro.</p>
<p>Created by Augusto de Fraga. Edited by Marcos Castiel (Ep's 1, 2, 5 & 7) and Pedro Ribeiro (Ep's 3, 4 & 6).</p>
<p>You can read the full case study <a href="/case-studies/turn-of-the-tide/">here</a>.</p>
<p><a href="https://www.youtube.com/watch?v=_tHdyD9TGCA"><img src="/static/turn-of-the-tide-youtube.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#26th-may-2023</link>
<guid isPermaLink="false">26th May 2023</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[26th May 2023]]></title>
<description><![CDATA[<p><strong>Blood & Gold</strong> premieres today on Netflix. Fully edited in Final Cut Pro.</p>
<p>Edited by Knut Hake.</p>
<p><a href="https://www.youtube.com/watch?v=mqNzrsUerYw"><img src="/static/blood-and-gold.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#26th-may-2023</link>
<guid isPermaLink="false">26th May 2023</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[26th May 2023]]></title>
<description><![CDATA[<p><strong>Sex O'Clock</strong> premieres today in Czechia. Episodes 3, 6, 9 and 10 was cut in Final Cut Pro by <a href="https://jirifiala.cz">Jiří Fiala</a> (the other episodes were cut in Adobe Premiere).</p>
<p>FCPXMLs were sent to DaVinci Resolve for colour grading and X2Pro was used to send AAFs to ProTools for mixing. The sound designer was very impressed with the neatness of the timeline.</p>
<p><a href="https://www.youtube.com/watch?v=HKvOAB7NzzQ"><img src="/static/sex-oclock.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#26th-may-2023</link>
<guid isPermaLink="false">26th May 2023</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[26th May 2023]]></title>
<description><![CDATA[<p>Everyone's talking about <strong>Final Cut Pro for iPad</strong>.</p>
<p>Here's a collection of some of the great Final Cut Pro (for iPad) YouTube videos:</p>
<ul>
<li><a href="https://www.youtube.com/watch?v=XvMDC9V3-Rs">Ripple Training - Final Cut Pro for iPad Getting Started (39mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=MjRouMY7bgU">iJustine - Final Cut Pro on iPad Review - Forget everything you know about editing (13mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=iLXnuoEPheQ">Dylan Bates - The Complete Guide to Final Cut Pro on iPad (53mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=eKG_T9GumVM">Tyler Stalman - Final Cut Pro for iPad: Guide & Review (16mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=cacbcjvlFRg">PetaPixel - Final Cut Pro for iPad Review: It FINALLY Happened! (12mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=VpwUN5o_3mo">Six Colors - Hands on with Final Cut Pro for iPad (32mins)</a></li>
<li><a href="https://www.youtube.com/watch?v=r4QCQ7qGsL4">The Verge - Final Cut Pro for iPad review: still rendering (10mins)</a></li>
</ul>
<p>Chris at <a href="https://latenitefilms.com">LateNite</a> has also announced <a href="https://transfertoolbox.io">Transfer Toolbox</a> on <a href="https://twitter.com/chrisatlatenite/status/1661610054292758529">Twitter</a>, allowing you to convert Final Cut Pro (for Mac) libraries into Final Cut Pro (for iPad) projects.</p>
<p>He also discovered that Final Cut Pro (for iPad) <a href="https://twitter.com/chrisatlatenite/status/1661697912202743809">can actually read files from an external SSD</a>.</p>
]]></description>
<link>https://fcp.cafe/#26th-may-2023</link>
<guid isPermaLink="false">26th May 2023</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[27th May 2023]]></title>
<description><![CDATA[<p>Hedge are on the lookout for passionate beta users to help shape the future of Hedge products (like <a href="https://hedge.video/hedge">Hedge</a>, <a href="https://hedge.video/postlab/benefits">PostLab</a> & <a href="https://hedge.video/editready">EditReady</a>). If you think you have what it takes and would like to join, sign up <a href="http://bit.ly/HedgeBetaProgram">here</a>.</p>
<p><a href="http://bit.ly/HedgeBetaProgram"><img src="/static/hedge.jpeg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#27th-may-2023</link>
<guid isPermaLink="false">27th May 2023</guid>
<pubDate>Sat, 27 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[28th May 2023]]></title>
<description><![CDATA[<p>We've recently reported two annoying <strong>Final Cut Pro 10.6.6 bugs</strong> to be across:</p>
<ul>
<li><a href="https://github.com/CommandPost/FCPCafe/issues/94">FCPXML v1.11 doesn't support Soundtracks (May 28, 2023)</a></li>
<li><a href="https://github.com/CommandPost/FCPCafe/issues/92">Audio Presets don't migrate from earlier versions to v10.6.6 (May 27, 2023)</a></li>
</ul>
<p>We've reported them to Apple, and will keep track of them in our <a href="/bugtracker/">Bug Tracker</a>.</p>
]]></description>
<link>https://fcp.cafe/#28th-may-2023</link>
<guid isPermaLink="false">28th May 2023</guid>
<pubDate>Sun, 28 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[29th May 2023]]></title>
<description><![CDATA[<p><strong>Color Finale 2.6.6</strong> has been released to fix support for Final Cut Pro 10.6.6.</p>
<p>Only install Color Finale 2.6.6 after updating to Final Cut Pro 10.6.6. The plugin won’t work otherwise.</p>
<p>If you are on Color Finale 2.6.5, update by launching ColorFinale.app and navigating to <strong>ColorFinale > Check For Updates…</strong> in the menu bar.</p>
<p>You can learn more on their <a href="https://colorfinale.com">website</a>.</p>
]]></description>
<link>https://fcp.cafe/#29th-may-2023</link>
<guid isPermaLink="false">29th May 2023</guid>
<pubDate>Mon, 29 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[29th May 2023]]></title>
<description><![CDATA[<p>Chris at <a href="https://latenitefilms.com/technology/">LateNite</a> has updated the pricing for <a href="https://brawtoolbox.io">BRAW Toolbox</a>, <a href="https://gyroflowtoolbox.io">Gyroflow Toolbox</a> & <a href="https://markertoolbox.io">Marker Toolbox</a>.</p>
<ul>
<li><strong><a href="https://brawtoolbox.io">BRAW Toolbox</a></strong> is now <strong>79.99</strong> in your local currency (i.e. <strong>AUD79.99</strong>, <strong>USD79.99</strong>, <strong>CAD79.99</strong>).</li>
<li><strong><a href="https://markertoolbox.io">Marker Toolbox</a></strong> is now <strong>19.99</strong> in your local currency (i.e. <strong>AUD19.99</strong>, <strong>USD19.99</strong>, <strong>CAD19.99</strong>).</li>
<li><strong><a href="https://gyroflowtoolbox.io">Gyroflow Toolbox</a></strong> is now <strong>4.99</strong> in your local currency (i.e. <strong>AUD4.99</strong>, <strong>USD4.99</strong>, <strong>CAD4.99</strong>).</li>
</ul>
<p>Their upcoming apps will have the same pricing model:</p>
<ul>
<li><strong><a href="https://recalltoolbox.io">Recall Toolbox</a></strong> is now <strong>29.99</strong> in your local currency (i.e. <strong>AUD29.99</strong>, <strong>USD29.99</strong>, <strong>CAD29.99</strong>).</li>
<li><strong><a href="https://transfertoolbox.io">Transfer Toolbox</a></strong> is now <strong>4.99</strong> in your local currency (i.e. <strong>AUD4.99</strong>, <strong>USD4.99</strong>, <strong>CAD4.99</strong>).</li>
</ul>
<p>However, for example, if your country doesn't have an equivalent of 4.99 (i.e. Rp89,000 in Indonesia), it will default to a USD$4.99 equivalent.</p>
<p>Transfer Toolbox is currently waiting for approval on the Mac App Store, but you can download from TestFlight.</p>
<p>Recall Toolbox is currently on TestFlight, and will hopefully be submitted to the Mac App Store by the end of this week for review.</p>
]]></description>
<link>https://fcp.cafe/#29th-may-2023</link>
<guid isPermaLink="false">29th May 2023</guid>
<pubDate>Mon, 29 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th May 2023]]></title>
<description><![CDATA[<p>We're currently experimenting with adding Discussions & Reactions to the bottom of every page at FCP Cafe - that tie into GitHub Discussions. You'll need a free GitHub account to comment and react.</p>
<p>We're still working on the formatting - they're currently a bit "buggy" in terms of automatically resizing, and sometimes require a hard page reset to appear properly. We're investigating a proper fix - stay tuned.</p>
]]></description>
<link>https://fcp.cafe/#30th-may-2023</link>
<guid isPermaLink="false">30th May 2023</guid>
<pubDate>Tue, 30 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th May 2023]]></title>
<description><![CDATA[<p><strong>Recall Toolbox</strong> is now available for early beta testing on <a href="https://recalltoolbox.io">TestFlight</a>.</p>
<p>Recall Toolbox is a Final Cut Pro Workflow Extension that acts as a Shared Pasteboard.</p>
<p>Anything that you can copy and paste in Final Cut Pro, Recall Toolbox can store.</p>
]]></description>
<link>https://fcp.cafe/#30th-may-2023</link>
<guid isPermaLink="false">30th May 2023</guid>
<pubDate>Tue, 30 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th May 2023]]></title>
<description><![CDATA[<p>Chris at <a href="https://latenitefilms.com/technology/">LateNite</a> has decided to put the Final Cut Pro & DaVinci Resolve Communities literally head-to-head by introducing <a href="https://resolve.cafe">Resolve Cafe</a>. Let's see which community is more proactive in sharing awesome content!</p>
]]></description>
<link>https://fcp.cafe/#30th-may-2023</link>
<guid isPermaLink="false">30th May 2023</guid>
<pubDate>Tue, 30 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th May 2023]]></title>
<description><![CDATA[<p><strong>MotionVFX</strong> is having a <a href="https://www.motionvfx.com/store">50% Flash Sale</a> on selected products.</p>
<p>They've also released a nice new package called <a href="https://www.motionvfx.com/store,mproduct,p3977.html">mProduct</a>.</p>
]]></description>
<link>https://fcp.cafe/#30th-may-2023</link>
<guid isPermaLink="false">30th May 2023</guid>
<pubDate>Tue, 30 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th May 2023]]></title>
<description><![CDATA[<p><strong>AudioSwift 2.3.5 Beta</strong> with 14-bit MIDI CC is <a href="https://audioswiftapp.com/try-out-these-new-features-in-beta/">now available</a>.</p>
<p>AudioSwift for macOS transforms your trackpad into a set of MIDI tools like sliders, triggers, XY pads, mixing controllers and MPE. With support for MacBooks and Magic Trackpads, the app runs in the top menu bar waiting to be called. Tap the trackpad with a four fingers tap gesture to activate and a console window appears showing the current controller mode. You can then start sending MIDI with simple touch gestures and when you finish, press the Esc key to turn AudioSwift off. It’s the perfect compact MIDI controller for the mobile or desktop producer.</p>
<p>AudioSwift works great in companion with <a href="https://commandpost.io">CommandPost</a> via MIDI for <a href="https://audioswiftapp.com/fcp/">controlling Final Cut Pro</a>.</p>
]]></description>
<link>https://fcp.cafe/#30th-may-2023</link>
<guid isPermaLink="false">30th May 2023</guid>
<pubDate>Tue, 30 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[31st May 2023]]></title>
<description><![CDATA[<p><strong>Colourlab Ai</strong> is having a Spring Flash Sale! Up to 50% Off on Our Color Grading Software - Only 48 Hours Left!</p>
<p>Spring is in the air, and so are the savings!</p>
<p>Here's what's on offer:</p>
<p><strong>Colourlab Ai Studio Annual License:</strong> Get a whopping 50% off on their Colourlab Ai Studio Annual License. This brings the cost of Colourlab Ai, Look Designer Plugin, and Grainlab Plugin down to just $249. That's less than the cost of a single plugin! Considering the combined value of all three applications is over $1000, this is a massive saving. Use the code <code>springstudio50</code> to take advantage of this offer.
<strong>Look Designer Perpetual Licenses:</strong> Colourlab Ai is offering a 30% discount on their Look Designer Perpetual Licenses. This means you can own Look Designer forever for just $349. Look Designer 3.0 for Davinci and Premiere runs on both Mac and PC and is the perfect companion for creating X01 files, Look Design, Look Testing, EL Zones, and Full Color Management. Use the code <code>springlook30</code> to avail this offer.</p>
<p>Buy Colourlab Ai Studio <a href="https://colourlab.ai/colourlab-ai-studio-2-yearly/">here</a>.</p>
<p>Buy Look Designer Perpetual <a href="https://colourlab.ai/look-designer-resolve-perpetual/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#31st-may-2023</link>
<guid isPermaLink="false">31st May 2023</guid>
<pubDate>Wed, 31 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[31st May 2023]]></title>
<description><![CDATA[<p>A new batch of nOb controllers is now available! You can order <a href="https://order.nobcontrol.com">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#31st-may-2023</link>
<guid isPermaLink="false">31st May 2023</guid>
<pubDate>Wed, 31 May 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[1st June 2023]]></title>
<description><![CDATA[<p><strong>Alteon.io</strong> has announced that <strong>Brian Meaney</strong> will now be their new Head of Product. He brings more than two decades of experience from Apple and Magic Leap. Brian will direct product development and UX for their entire ecosystem.</p>
<p>This is very exciting for Final Cut Pro users - as Alteon is very committed to the Final Cut Pro ecosystem! You can learn more <a href="https://www.accesswire.com/viewarticle.aspx?id=758114">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#1st-june-2023</link>
<guid isPermaLink="false">1st June 2023</guid>
<pubDate>Thu, 01 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[2nd June 2023]]></title>
<description><![CDATA[<p><strong>Final Cut Pro v1.0.1</strong> for iPad is out now!</p>
<p>The only change according the the release notes is:</p>
<ul>
<li>Fixes an issue where the validation of third-party Audio Unit Extensions prevented Final Cut Pro for iPad from opening.</li>
</ul>
<p>You can find the <a href="/releasenotes/#final-cut-pro-101-for-ipad">release note on FCP Cafe</a>. We'll update that page if we find anything undocumented.</p>
]]></description>
<link>https://fcp.cafe/#2nd-june-2023</link>
<guid isPermaLink="false">2nd June 2023</guid>
<pubDate>Fri, 02 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[2nd June 2023]]></title>
<description><![CDATA[<p>The <strong>Transfer Toolbox</strong> website has some information on the danger of using external drives on iPad.</p>
<p>You can learn more <a href="https://transfertoolbox.io/how-to-use/#danger-using-external-drives-on-ipad">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#2nd-june-2023</link>
<guid isPermaLink="false">2nd June 2023</guid>
<pubDate>Fri, 02 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[2nd June 2023]]></title>
<description><![CDATA[<p><strong>Der Schatten</strong> (The Shadow) is streaming tomorrow on German public broadcaster <a href="https://www.zdf.de/serien/der-schatten/trailer-staffel-1-104.html">ZDFneo</a>.</p>
<p>It's a <strong>6 x 45min mystery</strong> series cut in Final Cut Pro, based on a novel by <strong>Melanie Raabe</strong>.</p>
<p><em>The journalist Norah (Deleila Piasko / Transatlantic) moves from Berlin to Vienna to start a new life and job at a young & arty magazine. As soon as she arrives, a homeless woman foretells her that she will kill a man named Arthur Grimm six weeks later. Norah tries to ignore the incident - until strange things happen.</em></p>
<p><strong>Trailer:</strong></p>
<p>You can watch the trailer <a href="https://www.youtube.com/watch?v=u9uRBf6o_IA">here</a>.</p>
<p><strong>Commentary Head of Editing:</strong></p>
<p><a href="https://twitter.com/FlowDefoe">Florian Duffe</a> writes:</p>
<blockquote>
<p>Editing a TV show in Final Cut is a charm if you set it up right. Especially with the new MacStudio and fast SSDs we could fly through the tons of footage. Postlab provides the necessary tools to collaborate between different workstations. Since we had a lot of Flashbacks, the structure of FCP - editing every Scene in a Compound Clip - made it really easy to 'steal' edits of another episode from our fellow editors.<br />
<br />
I will follow up with a decent case study on this site in a few days. Stay tuned.</p>
</blockquote>
<p><strong>Fun Stats:</strong></p>
<ul>
<li>3 Film Editors (<a href="https://twitter.com/FlowDefoe">Florian Duffe</a>, Silke Botsch & Martin Wunschick)</li>
<li>1 Assistant Editor</li>
<li>174 shifts of editing</li>
<li>89 hours of footage</li>
<li>3946 Video Clips</li>
<li>3500 Audio Clips</li>
</ul>
<p><strong>Tools Used:</strong></p>
<ul>
<li><a href="/ecosystem/tools/#sync-n-link-x">Sync-N-Link</a> - creating Sync Clips with Metadata</li>
<li><a href="/ecosystem/tools/#commandpost">CommandPost</a> - using <strong>Titles to Keywords</strong> for line-by-lines</li>
<li><a href="https://www.notion.so">Notion</a> - to build a digital bulletin board, one scene one card</li>
<li><a href="/ecosystem/tools/#postlab">PostLab</a> - collaborating in 6 libraries on 4 workstations in 3 cities</li>
<li><a href="/ecosystem/tools/#x2pro">X2Pro</a> - send Audio to Soundpost</li>
<li><a href="/ecosystem/tools/#producers-best-friend">Producers Best Friend</a> - creating lists (ADR, VFX, Music, DI, Motion Design)</li>
</ul>
<p><strong>Screenshots:</strong></p>
<p>Picture Lock Timelines of all 6 Episodes
<img src="/static/schatten-timeline-tuesday.jpeg" alt="Final Cut Pro Screenshots"></p>
<p><strong>Poster:</strong></p>
<p><img src="/static/deleila-piasko-key_visual-2.jpg" alt=""></p>
]]></description>
<link>https://fcp.cafe/#2nd-june-2023</link>
<guid isPermaLink="false">2nd June 2023</guid>
<pubDate>Fri, 02 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[2nd June 2023]]></title>
<description><![CDATA[<p><strong>Ulti.media</strong> has released a new <strong>Transcriber</strong> Promo on YouTube. Chris at LateNite has been beta testing, and it's awesome.</p>
<p><a href="https://www.youtube.com/watch?v=RMG-FelZY64"><img src="/static/transcriber.jpg" alt=""></a></p>
<p>You can learn more <a href="https://ulti.media/transcriber/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#2nd-june-2023</link>
<guid isPermaLink="false">2nd June 2023</guid>
<pubDate>Fri, 02 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd June 2023]]></title>
<description><![CDATA[<p>It's been so incredibly exciting watching all the professional editors contributing to this site via GitHub (check out these <a href="https://github.com/CommandPost/FCPCafe/pulls?q=is%3Apr+is%3Aclosed">closed pull requests</a>!).</p>
<p>I proposed creating <a href="https://avid.cafe">avid.cafe</a> and <a href="https://premiere.cafe">premiere.cafe</a>/<a href="https://premierepro.cafe">premierepro.cafe</a> on some big Facebook Communities and my posts were <a href="https://twitter.com/chrisatlatenite/status/1664442143262543872">pretty quickly removed</a>.</p>
<p>Meanwhile, the Final Cut Pro community has fully embraced my <a href="https://twitter.com/chrisatlatenite/status/1661729178826477569">crazy spur-of-the-moment idea</a>, and gone full steam ahead - love it!</p>
<p>Thanks team!</p>
<p><em>Chris @ LateNite</em></p>
]]></description>
<link>https://fcp.cafe/#3rd-june-2023</link>
<guid isPermaLink="false">3rd June 2023</guid>
<pubDate>Sat, 03 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd June 2023]]></title>
<description><![CDATA[<p><strong>BorisFX</strong> is giving away their free Continuum FCPX Looks filter!</p>
<p>We've been using mocha Pro for years, and love it dearly - so are always excited by what BorisFX have in-store!</p>
<p>They just need to HURRY UP and give us native mocha Pro support within Final Cut Pro! In the meantime, this is great...</p>
<p>BCC+ Looks Includes:</p>
<ul>
<li>80 drag-and-drop presets</li>
<li>Award-Winning Mocha tracking through Pixel Chooser: Quickly mask & isolate effects</li>
<li>Fully customizable: Easily adjust hue-sat, brightness, contrast, grain, and more</li>
<li>8mm film stock, bleach by-pass, and day for night looks</li>
<li>Diffusion, color gradients, and lighting gels</li>
<li>Custom FX Editor: Browse and apply presets in seconds</li>
</ul>
<p><a href="https://vfx.borisfx.com/free-fcp-bcc-looks">!button text="Visit Website" target="blank" variant="info"</a></p>
]]></description>
<link>https://fcp.cafe/#3rd-june-2023</link>
<guid isPermaLink="false">3rd June 2023</guid>
<pubDate>Sat, 03 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd June 2023]]></title>
<description><![CDATA[<p><strong>FCPeffects.com</strong> is celebrating 12 years making plugins for Final Cut Pro!</p>
<p>Get all of their plugins in an easy to install package with the Mega Bundle. I've just pressed the buy button!</p>
<p><a href="https://www.fcpeffects.com/pages/mb-9887697887914709998">!button text="Visit Website" target="blank" variant="info"</a></p>
]]></description>
<link>https://fcp.cafe/#3rd-june-2023</link>
<guid isPermaLink="false">3rd June 2023</guid>
<pubDate>Sat, 03 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[5th June 2023]]></title>
<description><![CDATA[<p>We've added some information from the editor, and lots of Final Cut Pro screenshots to our <a href="/case-studies/turn-of-the-tide/">Turn of the Tide case study</a>. Enjoy!</p>
]]></description>
<link>https://fcp.cafe/#5th-june-2023</link>
<guid isPermaLink="false">5th June 2023</guid>
<pubDate>Mon, 05 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[5th June 2023]]></title>
<description><![CDATA[<p>It's a month old, but for those that might have missed it, there's an awesome YouTube video that showcases the Audio Design Desk v2.0 Beta.</p>
<p>Audio Design Desk is to audio software what Pro Tools was to the tape machine. It’s an entirely new breed of Digital Audio Workstation that artists can play like an instrument, revolutionizing the process of adding music and sound effects to picture and cutting down what can typically be a full day project to just a few minutes. It comes bundled with 75,000 sounds embedded with patent-pending Sonic Intelligence™, using AI-assisted content creation tools to enable filmmakers, sound designers, composers, and creators to produce cinema-quality compositions at the speed of thought, giving them a level of creative control that is unmatched by any other software.</p>
<p><a href="https://www.youtube.com/watch?v=fojw1YNmuUM"><img src="/static/add.jpg" alt=""></a></p>
<p>You can learn more about Audio Design Desk <a href="/ecosystem/tools/#audio-design-desk">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#5th-june-2023</link>
<guid isPermaLink="false">5th June 2023</guid>
<pubDate>Mon, 05 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th June 2023]]></title>
<description><![CDATA[<p><strong>BRAW Toolbox v1.1.3</strong> is out now with a re-designed <strong>Relink BRAW Clips within an LIBRARY / EVENT / PROJECT</strong> Toolbox!</p>
<p>You can learn more about the toolbox <a href="https://brawtoolbox.io/toolbox/#relink-braw-clips-within-an-library--event--project">here</a>.</p>
<p>You can buy BRAW Toolbox and learn more <a href="https://brawtoolbox.io">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-june-2023</link>
<guid isPermaLink="false">6th June 2023</guid>
<pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th June 2023]]></title>
<description><![CDATA[<p><strong>WWDC</strong> time!</p>
<p>Here's a <a href="https://developer.apple.com/videos/play/wwdc2023/111486/">17 big & little things at WWDC23</a>.</p>
<p>Iain Anderson has also written <a href="https://www.provideocoalition.com/apple-vision-pro-revealed-at-wwdc/">Apple Vision Pro revealed at WWDC</a> over at <a href="https://www.provideocoalition.com">ProVideo Coalition</a>.</p>
<p>Below are some of the relevant highlights for Final Cut Pro editors.</p>
<p>First up, the new <strong>Mac Pro</strong>:</p>
<p><img src="/static/wwdc23-macpro.png" alt=""></p>
<p><img src="/static/wwdc23-macpro-pricing.png" alt=""></p>
<p><img src="/static/wwdc23-macpro-compare.png" alt=""></p>
<p><img src="/static/wwdc23-macpro-compare-2.png" alt=""></p>
<p><img src="/static/wwdc23-macpro-compare-3.png" alt=""></p>
<p><img src="/static/wwdc23-macpro-pricing-aud.png" alt=""></p>
<p>You can learn more about the new MacPro <a href="https://www.apple.com/newsroom/2023/06/apple-unveils-new-mac-studio-and-brings-apple-silicon-to-mac-pro/">here</a>.</p>
<p>There's the new <strong>M2 Ultra</strong>.</p>
<p><img src="/static/wwdc23-m2ultra.png" alt=""></p>
<p>You can learn more <a href="https://www.apple.com/newsroom/2023/06/apple-introduces-m2-ultra/">here</a>.</p>
<p>There's the new <strong>15-inch MacBook Air</strong>:</p>
<p><img src="/static/wwdc23-macbook-air.jpg" alt=""></p>
<p>You can learn more <a href="https://www.apple.com/au/newsroom/2023/06/apple-introduces-the-15-inch-macbook-air/">here</a>.</p>
<p>There's the new <strong>macOS Sonoma</strong>:</p>
<p><img src="/static/wwdc23-macos.jpg" alt=""></p>
<p>You can learn more <a href="https://www.apple.com/au/newsroom/2023/06/macos-sonoma-brings-new-capabilities-for-elevating-productivity-and-creativity/">here</a>.</p>
<p>There's the new <strong>Vision Pro</strong>.</p>
<p>It's <strong>USD$3499</strong> and "available early next year in the U.S".</p>
<p><img src="/static/wwdc23-vision-pro-1.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-2.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-3.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-4.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-5.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-6.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-7.jpeg" alt=""></p>
<p><img src="/static/wwdc23-vision-pro-8.jpeg" alt=""></p>
<p>DaVinci Resolve will run on Vision Pro out-of-the-box. No word yet on Final Cut Pro support.</p>
<p><img src="/static/resolve-on-vision-pro.jpg" alt=""></p>
<p>You can learn more about Vision Pro <a href="https://www.apple.com/au/newsroom/2023/06/introducing-apple-vision-pro/">here</a>.</p>
<p>You can watch the entire WWDC Keynote <a href="https://www.apple.com/apple-events/event-stream/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-june-2023</link>
<guid isPermaLink="false">6th June 2023</guid>
<pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th June 2023]]></title>
<description><![CDATA[<p><strong>NeoFinder 8.4.1</strong> is out now. This is a bugfix release that contains two fixes for the Smart Folders, and one fix when searching hierarchical keywords.</p>
<p>NeoFinder 8.4.1 is another free update for all customers with a NeoFinder 8.x license.</p>
<p>NeoFinder 8.x is a <a href="https://www.cdfinder.de/store.html">paid upgrade</a> for NeoFinder 6.x, NeoFinder 7.x, and CDFinder customers.</p>
<p><img src="/static/neofinder-8-4.jpeg" alt=""></p>
<p>You can learn more <a href="/ecosystem/tools/#neofinder">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-june-2023</link>
<guid isPermaLink="false">6th June 2023</guid>
<pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th June 2023]]></title>
<description><![CDATA[<p>Purchase a Ninja V, Ninja V+, Shogun Connect, Sumo 19SE or Shogun Studio 2 before the end of June 2023 to receive a FREE Assimilate Play Pro Studio license worth US$299 when registering your product. Existing registered owners quality for an exclusive price of USD$99.</p>
<p><img src="/static/assimilate-play-pro-studio.jpg" alt=""></p>
<p>You can learn more <a href="http://my.atomos.com">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-june-2023</link>
<guid isPermaLink="false">6th June 2023</guid>
<pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th June 2023]]></title>
<description><![CDATA[<p>Premiere Gal is giving away USD$10,000 worth of Video Gear!</p>
<p><a href="https://www.youtube.com/watch?v=7nCISaCgVh4"><img src="/static/kelsey-promo.jpeg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#6th-june-2023</link>
<guid isPermaLink="false">6th June 2023</guid>
<pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[7th June 2023]]></title>
<description><![CDATA[<p><strong>To My Father</strong> is a Short Documentary Film edited in Final Cut Pro that premieres this week at the Tribeca Film Festival in New York City.</p>
<p>The movie depicts Deaf actor Troy Kotsur's journey to winning an Oscar and his father's inspiring influence on him, despite a tragic accident.</p>
<p>Troy previously won the Best Supporting Actor Oscar for his role in Apple TV’s <strong>CODA</strong>.</p>
<p><strong>Josh Meyers</strong>, the film’s editor, had previously presented this project as a work in progress as part of his Keynote Presentation at the 2022 FCPX Summit in Austin, Texas.</p>
<p>Josh and the team at Emergent Order Foundation has truly enjoyed collaborating with Troy and hope people can come out to support the film if you’re in town!</p>
<p><strong>Screening:</strong></p>
<p><strong>To My Father</strong> will be screening 4 times at the festival as part of the Shorts program.</p>
<blockquote>
<p>Thursday June 8th @ 8:15pm<br />
Friday June 9th @ 2:30pm<br />
Wednesday June 14th @ 6:00pm<br />
Saturday June 17th @ 3:30pm</p>
</blockquote>
<p>There's more information on the <a href="https://tribecafilm.com/films/to-my-father-2023">Tribeca Schedule and Tickets Page</a>.</p>
<p>It is also available for streaming with the <a href="https://tribecafilm.com/festival/tickets#at-home-passes">Tribeca At Home</a> pass.</p>
<p><strong>Credits:</strong></p>
<p><strong>Director:</strong> Sean Schiavolin<br />
<strong>Producers:</strong> John Papola, Troy Kotsur, Justin Bergeron<br />
<strong>Screenwriter:</strong> Sean Schiavolin<br />
<strong>Cinematographer:</strong> Brody Carmichael<br />
<strong>Editor:</strong> Josh Meyers<br />
<strong>Composer:</strong> Hanan Townshend<br />
<strong>Associate Producer:</strong> Jessi Bennett</p>
<p><strong>Trailer:</strong></p>
<p><a href="https://www.youtube.com/watch?v=P4hfBbDvgVY"><img src="/static/to-my-father.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#7th-june-2023</link>
<guid isPermaLink="false">7th June 2023</guid>
<pubDate>Wed, 07 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[8th June 2023]]></title>
<description><![CDATA[<p>Matti Haapoja has <a href="https://twitter.com/MattiHaapoja/status/1666227109877125122">reported on Twitter</a> that:</p>
<blockquote>
<p>...editing in Final Cut Pro in AR will be available for launch 👀 editing with eyes and gestures. We freaking finally get to edit minority report styles.</p>
</blockquote>
<p>You can read more over at <a href="https://appleinsider.com/articles/23/06/07/final-cut-pro-said-to-be-available-for-apple-vision-pro-at-launch">AppleInsider</a>.</p>
<p><img src="/static/fcpx-on-vision-pro.jpeg" alt=""></p>
<p>Michael Kammes has also written a great article on <a href="https://www.postperspective.com/emails/Shift/ppnews-Shift-230516.html">Empowering Creatives: The Future of Creativity and Collaboration in the M&E Industry</a>.</p>
]]></description>
<link>https://fcp.cafe/#8th-june-2023</link>
<guid isPermaLink="false">8th June 2023</guid>
<pubDate>Thu, 08 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[9th June 2023]]></title>
<description><![CDATA[<p>We're currently in the process of completely rebuilding the <a href="https://commandpost.io">CommandPost</a> website to bring it more inline with this website, and all our other software packages.</p>
<p>This will allow us to add better documentation more quickly - especially developer documentation. We'll also release a new CommandPost update within the next few days, so stay tuned!</p>
]]></description>
<link>https://fcp.cafe/#9th-june-2023</link>
<guid isPermaLink="false">9th June 2023</guid>
<pubDate>Fri, 09 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[9th June 2023]]></title>
<description><![CDATA[<p>At WWDC Apple has announced/released a new <strong>MediaExtension</strong> Framework, which is <strong>BIG NEWS</strong> for Mac users! We haven't had custom codec support since Apple killed QuickTime many years ago.</p>
<p>This framework provides a means for developers to create format readers and video decoders for media that the system doesn’t natively support.</p>
<p>This means that for <a href="https://www.apple.com/macos/sonoma-preview/">macOS Sonoma</a>, we'll be able to add native Blackmagic BRAW support directly to macOS!</p>
<p>We intend to add this as a feature to BRAW Toolbox for the public release of <a href="https://www.apple.com/macos/sonoma-preview/">macOS Sonoma</a>, so stay tuned!</p>
]]></description>
<link>https://fcp.cafe/#9th-june-2023</link>
<guid isPermaLink="false">9th June 2023</guid>
<pubDate>Fri, 09 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[9th June 2023]]></title>
<description><![CDATA[<p><a href="https://twitter.com/PremiumVFX">Premium VFX</a> are having an Anniversary Discount Sale, with all their Final Cut Pro products <strong>35% off until June 16</strong>.</p>
<p>You can learn more <a href="https://fxfactory.com/products/premiumvfx/">here</a>.</p>
<p><a href="https://www.youtube.com/watch?v=na04yfrHFDI"><img src="/static/premiumvfx-35-off.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#9th-june-2023</link>
<guid isPermaLink="false">9th June 2023</guid>
<pubDate>Fri, 09 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[9th June 2023]]></title>
<description><![CDATA[<p>Do you need third party plugins for background removal, morph transitions, color correction and noise removal, or does Final Cut Pro have you covered? Today, Jenn Jager is doing a head to head challenge to see if third party plugins work better than native FCP effects.</p>
<p><a href="https://www.youtube.com/watch?v=pDA1M1wBK8s"><img src="/static/fcpx-vs-third-parties.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#9th-june-2023</link>
<guid isPermaLink="false">9th June 2023</guid>
<pubDate>Fri, 09 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[10th June 2023]]></title>
<description><![CDATA[<p>The amazing <a href="https://iain-anderson.com">Iain Anderson</a> has released a new <strong>free</strong> online training course for <strong>Final Cut Pro for iPad</strong>.</p>
<p>You can learn more <a href="https://macprovideo.com/course/introducing-final-cut-pro-for-ipad">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#10th-june-2023</link>
<guid isPermaLink="false">10th June 2023</guid>
<pubDate>Sat, 10 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p>FCP Cafe has been slowly growing and expanding, and professional film & television editors from all around the world start making contributions!</p>
<p>If you haven't already checked out the <a href="/cut-on-fcp/">Cut on Final Cut Pro</a> page, it's worth a visit!</p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p>The amazing Philip Hodgetts from <a href="https://intelligentassistance.com">Intelligent Assistance</a> has written an excellent blog post on <strong>Generative AI Devalues Experience</strong> <a href="http://www.philiphodgetts.com/2023/06/generative-ai-devalues-experience/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p>A great new YouTube channel called <a href="https://www.youtube.com/@LukesGotBrains">Lukes Got Brains</a> has started posting some really interesting videos about <strong>on-screen controls and rigging</strong> in Motion & Final Cut Pro.</p>
<p><a href="https://www.youtube.com/watch?v=D6CWC3k3QAg&list=PLBUXMzFLszrL8p6gS3Ti44o-1NDtioC3U"><img src="/static/oscar.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p><strong>evrExpanse 3.3.1</strong> is out now with Rating Metadata support, allowing you to easily evaluate and organise video quality.</p>
<p>You can learn more <a href="https://www.evrapp.cloud/evrexpanse">here</a></p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p><strong>Andy To</strong> challenged himself to produce a video shot and edited on Final Cut Pro for iPad.</p>
<p><a href="https://www.youtube.com/watch?v=OGhZMxrEbuk"><img src="/static/andyto.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p>Alex Raccuglia at <a href="https://ulti.media">Ulti.Media</a> is getting closer and closer to finally releasing Transcriber to the world!</p>
<p>Here's another sneak peak - explaining how to import subtitles into existing sessions:</p>
<p><a href="https://www.youtube.com/watch?v=u9_db7PGOaI"><img src="/static/transcriber-preview.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[13th June 2023]]></title>
<description><![CDATA[<p>There's an interesting article over at arstechnica:</p>
<ul>
<li><a href="https://arstechnica.com/gadgets/2023/06/clearly-predatory-western-digital-sparks-panic-anger-for-age-shaming-hdds/">“Clearly predatory”: Western Digital sparks panic, anger for age-shaming HDDs</a></li>
</ul>
]]></description>
<link>https://fcp.cafe/#13th-june-2023</link>
<guid isPermaLink="false">13th June 2023</guid>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[14th June 2023]]></title>
<description><![CDATA[<p>FCP Cafe now has a new logo/icon designed by the amazing <a href="https://matthewskiles.com">Matthew Skiles</a>. We hope you like it as much as we do!</p>
<p>He has also designed a new logo/icon for <a href="https://resolve.cafe">Resolve Cafe</a>, which is equally amazing.</p>
]]></description>
<link>https://fcp.cafe/#14th-june-2023</link>
<guid isPermaLink="false">14th June 2023</guid>
<pubDate>Wed, 14 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[14th June 2023]]></title>
<description><![CDATA[<p>We've just added an amazingly detailed case study for <strong>Blood & Gold</strong>. Check it out <a href="/case-studies/blood-and-gold/">here</a>!</p>
]]></description>
<link>https://fcp.cafe/#14th-june-2023</link>
<guid isPermaLink="false">14th June 2023</guid>
<pubDate>Wed, 14 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[14th June 2023]]></title>
<description><![CDATA[<p><strong>BRAW Toolbox</strong> v1.1.4 (51) is <a href="https://brawtoolbox.io">now available</a> on the Mac App Store.</p>
<p>Thanks to the help and support of the awesome Final Cut Pro team, we finally have a workaround to the Synchronised Clips bug.</p>
<p>Previously, Synchronised Clips could cause random glitches during playback, and produce unexpected results in some, but not all, cases.</p>
<p>As a result, in BRAW Toolbox v1.1.1 we made <strong>Create Multicam Clips</strong> the default option as a workaround to this issue.</p>
<p>We now know this was actually due to the fact that we're applying the BRAW Toolbox effect to a <strong>Custom</strong> Solids Generator.</p>
<p>Whilst Final Cut Pro worked correctly when scrubbing and skimming a clip, during playback, because the Custom generator normally doesn't change its output (i.e. it's always a static colour), Final Cut Pro was using a cached frame, rather than rendering a new frame, which caused the glitches.</p>
<p>Essentially, it's very unusual for an Effect to change the output of a Generator, so we were getting unpredictable results.</p>
<p>We now workaround this issue by simply applying keyframes to the Custom Solid, so that Final Cut Pro always renders the frames - simple, but effective.</p>
<p>To fix Synchronized Clips created in earlier versions of BRAW Toolbox, we've added a <strong>Repair Synchronized Clips (prior to v1.1.3)</strong> Toolbox, which will add keyframes to all your Generators within the BRAW Toolbox Clip.</p>
<p>HUGE thank you to Tangier Clarke for supplying a reproducible library to help us solve this annoying bug.</p>
<p>We'll leave <strong>Create Multicam Clips</strong> on by default, however you will no longer get a warning message when you toggle this preference.</p>
]]></description>
<link>https://fcp.cafe/#14th-june-2023</link>
<guid isPermaLink="false">14th June 2023</guid>
<pubDate>Wed, 14 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[14th June 2023]]></title>
<description><![CDATA[<p><strong>Dylan Bates</strong> (The Final Cut Bro) has demonstrated the new BorisFX's Continuum Beat Reactor plugin.</p>
<p><a href="https://www.youtube.com/watch?v=aghqTZ3HWyI"><img src="/static/audio-visualizer.jpg" alt=""></a></p>
<p>You can learn more <a href="https://fcp.borisfx.com/continuum-fcp-units">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#14th-june-2023</link>
<guid isPermaLink="false">14th June 2023</guid>
<pubDate>Wed, 14 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[15th June 2023]]></title>
<description><![CDATA[<p><strong>CommandPost v1.4.18</strong> is out now!</p>
<p>A few new features, and a bunch of bug fixes, especially for those on macOS Ventura.</p>
<p>You can learn more and download <a href="https://commandpost.io">here</a>.</p>
<p><img src="/static/commandpost-1-4-18.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#15th-june-2023</link>
<guid isPermaLink="false">15th June 2023</guid>
<pubDate>Thu, 15 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[15th June 2023]]></title>
<description><![CDATA[<p>Our good friends at fxguide have a great new blog post - <strong>Apple M2 Studio Learns Nuke Machine Learning</strong>.</p>
<p>The author, Mike Seymour, is one of the smartest and best educators in the entire film industry, period.</p>
<p>You can read more <a href="https://www.fxguide.com/fxfeatured/apple-m2-studio-learns-nuke-machine-learning/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#15th-june-2023</link>
<guid isPermaLink="false">15th June 2023</guid>
<pubDate>Thu, 15 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[15th June 2023]]></title>
<description><![CDATA[<p>BorisFX has a really interesting new case study on their blog - <strong>The Last Of Us: Wylie Co.’s Motion Tracking Journey with Mocha Pro</strong>.</p>
<p>You can read more <a href="https://blog.borisfx.com/the-last-of-us-wylie-co-motion-tracking-journey-with-mocha-pro">here</a>.</p>
<p><img src="/static/last-us-ellie-interface.jpeg" alt=""></p>
]]></description>
<link>https://fcp.cafe/#15th-june-2023</link>
<guid isPermaLink="false">15th June 2023</guid>
<pubDate>Thu, 15 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[15th June 2023]]></title>
<description><![CDATA[<p>MasterClass is currently having a <strong>50% off</strong> sale for Fathers Day.</p>
<p>There's lots of great training for filmmakers and video editors.</p>
<p>Jonny Elwyn has some great summaries here:</p>
<ul>
<li><a href="https://jonnyelwyn.co.uk/film-and-video-editing/master-filmmakers-on-the-craft-of-film-editing/">Master Filmmakers on the Craft of Film Editing</a></li>
<li><a href="https://jonnyelwyn.co.uk/film-and-video-editing/masterclass-all-access-pass-reviewed/">Masterclass All-Access Pass Reviewed</a></li>
</ul>
]]></description>
<link>https://fcp.cafe/#15th-june-2023</link>
<guid isPermaLink="false">15th June 2023</guid>
<pubDate>Thu, 15 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[16th June 2023]]></title>
<description><![CDATA[<p>We've added an awesome new case study to FCP Cafe on <strong>India’s Space Odyssey</strong>.</p>
<p>You can read more <a href="/case-studies/indias-space-odyssey/">here</a>.</p>
<p>Here's the trailer:</p>
<p><a href="https://www.youtube.com/watch?v=ohpEY50Y2No"><img src="/static/indias-space-odyssey-youtube.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#16th-june-2023</link>
<guid isPermaLink="false">16th June 2023</guid>
<pubDate>Fri, 16 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[16th June 2023]]></title>
<description><![CDATA[<p><strong>BRAW Toolbox 1.2.0 (52)</strong> is out now!</p>
<p>It has added support for Fujifilm X-S20 Blackmagic RAW clips, and the Blackmagic RAW SDK has been updated from v3.1 to v3.2.</p>
<p>You can download and learn more <a href="https://brawtoolbox.io">here</a>.</p>
<p><img src="/static/braw-toolbox.jpg" alt=""></p>
]]></description>
<link>https://fcp.cafe/#16th-june-2023</link>
<guid isPermaLink="false">16th June 2023</guid>
<pubDate>Fri, 16 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[16th June 2023]]></title>
<description><![CDATA[<p>motionVFX's mLogo Cinematic 2 is out now with limited promo pricing.</p>
<p>You can learn more <a href="https://www.motionvfx.com/store,mlogo-cinematic-2-dvr,p3994.html">here</a>.</p>
<p><a href="https://www.youtube.com/watch?v=hu8FPHYFEzw"><img src="/static/mlogo2-cinematic.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#16th-june-2023</link>
<guid isPermaLink="false">16th June 2023</guid>
<pubDate>Fri, 16 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[17th June 2023]]></title>
<description><![CDATA[<p>We've added yet another awesome new case study to FCP Cafe on <strong>Der Schatten (The Shadow)</strong>.</p>
<p>You can read more <a href="/case-studies/the-shadow/">here</a>.</p>
<p>Here's the trailer:</p>
<p><a href="https://www.youtube.com/watch?v=u9uRBf6o_IA"><img src="/static/the-shadow-youtube.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#17th-june-2023</link>
<guid isPermaLink="false">17th June 2023</guid>
<pubDate>Sat, 17 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[17th June 2023]]></title>
<description><![CDATA[<p><strong>Dylan Bates</strong> - <a href="https://www.youtube.com/thefinalcutbro">The Final Cut Bro</a> - has now reached over <strong>40K YouTube Subscribers</strong>, and as a thank you to the Final Cut Pro community, he's offering 40% off all his plugins with the code <strong>40kbro</strong> for the next four day!</p>
<p>You can learn more <a href="https://thefinalcutbro.gumroad.com">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#17th-june-2023</link>
<guid isPermaLink="false">17th June 2023</guid>
<pubDate>Sat, 17 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[18th June 2023]]></title>
<description><![CDATA[<p><strong>Transfer Toolbox v1.0.2</strong> has been released for <strong>free</strong> on GitHub!</p>
<p>Transfer Toolbox allows you to convert <strong>Final Cut Pro (for Mac) Libraries</strong> into <strong>Final Cut Pro (for iPad) Projects</strong>.</p>
<p>You can now easily get from your Desktop to your iPad! Simply drag your existing Final Cut Pro library into the application's drop zone.</p>
<p>You can learn more and <strong>download for free</strong> <a href="https://transfertoolbox.io">here</a>.</p>
<p>The Transfer Toolbox icon was designed by <a href="https://matthewskiles.com">Matthew Skiles</a>.</p>
<p><img src="/static/transfer-toolbox-about.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#18th-june-2023</link>
<guid isPermaLink="false">18th June 2023</guid>
<pubDate>Sun, 18 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[18th June 2023]]></title>
<description><![CDATA[<p>Russ Hughes has written a great blog post titled: <strong>I Ignored Davinci Resolve - I Was Wrong</strong>.</p>
<p>It explains why he jumped from Final Cut Pro to DaVinci Resolve for editing, from a sound designers perspective.</p>
<p>You can read <a href="https://www.pro-tools-expert.com/production-expert-1/i-ignored-davinci-resolve-i-was-wrong">here</a>.</p>
<p>For context, for the stuff <a href="https://latenitefilms.com">LateNite</a> does Final Cut Pro is still king, for the simple fact that it’s the most fun and most creative tool to edit with.</p>
<p>DaVinci Resolve is INSANELY powerful, and Blackmagic is a much more friendly company to work with than Apple.</p>
<p>However, I personally feel like I'm an engineer when using Resolve, whereas in Final Cut Pro I feel like an artist.</p>
<p>You can do amazing things in both tools - but Final Cut Pro feels like the better instrument for creative flow.</p>
]]></description>
<link>https://fcp.cafe/#18th-june-2023</link>
<guid isPermaLink="false">18th June 2023</guid>
<pubDate>Sun, 18 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[21st June 2023]]></title>
<description><![CDATA[<p>Today is Final Cut Pro X's <strong>12th birthday</strong>!</p>
<p>You can read more over at <a href="https://fcpx.tv/birthday12fcp.html">Richard Taylor's website</a>.</p>
<p><strong>Philip Hodgetts</strong> will also be making an announcement on Richard's Live Stream later today:</p>
<p><a href="https://www.youtube.com/watch?v=O77VCWjnob4"><img src="/static/12-birthday-live-stream.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#21st-june-2023</link>
<guid isPermaLink="false">21st June 2023</guid>
<pubDate>Wed, 21 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p>There's a new app on the Mac App Store! Introducing <strong>Lumberjack System Builder NLE</strong>!</p>
<p>On the anniversary of the release of Apple’s Final Cut Pro X, <a href="https://lumberjacksystem.com">Lumberjack System</a> has released their Text Based Editing app as a <strong>one-off purchase</strong> in the Mac App Store.</p>
<p>The original and most complete Text Based Editing solution for Final Cut Pro has long been available as part of the Lumberjack System Membership. This version makes Builder NLE more easily found, and more accessible to Final Cut Pro users who want a complete Text Based Editing environment for Final Cut Pro.</p>
<p>Builder NLE in the Mac App Store is the same app that is available through the membership, but without access to the wider Lumberjack live logging tools. It continues to include unlimited free transcription in 16 languages, closed caption support on Stories, unlimited stories, a comprehensive Keyword Manager, and extremely powerful search and filter tools to get you to your stories faster.</p>
<p>You can learn more about Lumberjack Builder <a href="https://www.lumberjacksystem.com/builder-nle-2/">here</a>.</p>
<p>You can download <strong>Builder NLE</strong> from the Mac App Store <a href="https://apps.apple.com/us/app/builder-nle/id6450122801?mt=12">here</a></p>
<p><img src="/static/builder-nle.jpg" alt=""></p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p><strong>BRAW Toolbox v1.2.1 (53)</strong> is out now, with a minor bug fix:</p>
<ul>
<li>The Workflow Extension now gracefully aborts (instead of crashing), and shows an error message if a BRAW clip is corrupt, and the metadata can't be read. Thanks for reporting Dominik Radecki!</li>
</ul>
<p>You can learn more <a href="https://brawtoolbox.io">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p>Just to keep you on your toes...</p>
<p><strong>BRAW Toolbox v1.2.2 (54)</strong> is out now, with some internal improvements:</p>
<ul>
<li>We've added a bunch of additional checks to the FxPlug4 Renderer, to ensure that all objects received from the Blackmagic RAW SDK are valid and correct to avoid any potential crashes due to referencing null pointers. Thanks for reporting Dominik Radecki! Big thanks to the Blackmagic RAW team and Final Cut Pro team for all their help and support!</li>
</ul>
<p>You can learn more <a href="https://brawtoolbox.io">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p><a href="https://twitter.com/DominicCarterLA">Dominic Carter</a> has reported on Twitter that:</p>
<blockquote>
<p>Happy to report that 2 major bugs are fixed in MacOS 14 Sonoma beta 2. XAVC bug is gone (with a few preliminary notes) and qnap qfinder pro is working (for those that edit from NAS)</p>
</blockquote>
<p>You can learn more <a href="https://twitter.com/DominicCarterLA/status/1671662797741232128">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p><a href="https://www.bretfx.com">BretFX</a> has released a new way to animate lists in Final Cut Pro.</p>
<p>You can learn more <a href="https://www.bretfx.com/product/quick-animated-lists-in-final-cut-pro/">here</a>.</p>
<p><a href="https://www.youtube.com/watch?v=n6BRjIoHvGY"><img src="/static/bretfx-quick-list.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[22nd June 2023]]></title>
<description><![CDATA[<p><strong>Marker Toolbox v1.2.0</strong> is out now! It has some awesome new features:</p>
<ul>
<li>Allows you to apply Markers to Clips from Final Cut Pro</li>
<li>Adds Resolve EDL Export</li>
<li>Adds support for Frame.io's <code>FIOJSON</code> files</li>
</ul>
<p>You can learn more <a href="https://markertoolbox.io">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#22nd-june-2023</link>
<guid isPermaLink="false">22nd June 2023</guid>
<pubDate>Thu, 22 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[24th June 2023]]></title>
<description><![CDATA[<p>We've thrown together a simple Python script called <strong>Rename Avid MXF Files</strong>.</p>
<p>It's used to rename MXF files generated by Avid Media Composer to match the <strong>Package Name</strong> in their metadata.</p>
<p>The script can process a <strong>single file</strong> or a folder containing <strong>multiple</strong> MXF files.</p>
<p>This is useful if you want to move native Avid MXF files from Avid Media Composer to Final Cut Pro.</p>
<p>You can download and learn more on <a href="https://github.com/CommandPost/RenameAvidMXFFiles">GitHub</a>.</p>
]]></description>
<link>https://fcp.cafe/#24th-june-2023</link>
<guid isPermaLink="false">24th June 2023</guid>
<pubDate>Sat, 24 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[29th June 2023]]></title>
<description><![CDATA[<p>Mark at Ripple Training recently interviewed filmmaker Daniel Robert Cohn, discussing how he used Motion to create his music video <a href="https://www.youtube.com/watch?v=--70I4a_F1w&t=0s">World Gone Nutz</a>.</p>
<p><a href="https://www.youtube.com/watch?v=nwd-D9xUECQ"><img src="/static/daniel-robert-cohn.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#29th-june-2023</link>
<guid isPermaLink="false">29th June 2023</guid>
<pubDate>Thu, 29 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[30th June 2023]]></title>
<description><![CDATA[<p><strong>Marker Toolbox v1.3.0 (14)</strong> is out now on the Mac App Store.</p>
<p><img src="/static/marker-toolbox-v1-3-0.jpg" alt=""></p>
<p><strong>New Features:</strong></p>
<ul>
<li>Added the ability to export <strong>Avid Media Composer Marker Text</strong> files. Thanks for suggesting Scott Simmons!</li>
<li>Added support for importing the <strong>Timecode+ TSV</strong> format. Thanks for suggesting pulpjedi!</li>
</ul>
<p><strong>Improvements</strong>:</p>
<ul>
<li>Various improvements to the user interface. Marker Toolbox now looks a lot nicer!</li>
<li>We moved the OpenAI API key into the Settings panel, and added a "Validate" button so that you can check that the API key is valid.</li>
<li>All settings are now saved between the main application and the Final Cut Pro Workflow Extension, meaning that if you change a setting in the Workflow Extension, it will also change in the main application and vice versa.</li>
</ul>
<p>You can learn more <a href="https://markertoolbox.io">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#30th-june-2023</link>
<guid isPermaLink="false">30th June 2023</guid>
<pubDate>Fri, 30 Jun 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd July 2023]]></title>
<description><![CDATA[<p>We have an awesome new case study on FCP Cafe talking about the 2D animated series, <strong>The Future of Everything</strong>.</p>
<p>You can read all about the workflow <a href="/case-studies/the-future-of-everything/">here</a>.</p>
<p>You can watch the series here:</p>
<p><a href="https://ltnt.tv/tfoe"><img src="/static/tfoe-youtube.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#3rd-july-2023</link>
<guid isPermaLink="false">3rd July 2023</guid>
<pubDate>Mon, 03 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd July 2023]]></title>
<description><![CDATA[<p><strong>CommandPost v1.4.19</strong> is out now!</p>
<p>We've added actions to control all the parameters for a <strong>Colourlab Ai</strong> Effect in the Final Cut Pro Video Inspector. Enjoy!</p>
<p><img src="/static/commandpost-1-4-19.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#3rd-july-2023</link>
<guid isPermaLink="false">3rd July 2023</guid>
<pubDate>Mon, 03 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[3rd July 2023]]></title>
<description><![CDATA[<p><strong>Color Finale</strong> is having a Summer Sale! Get in quick!</p>
<p>You can learn more <a href="https://colorfinale.com/store">here</a>.</p>
<p><img src="/static/color-finale-sale.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#3rd-july-2023</link>
<guid isPermaLink="false">3rd July 2023</guid>
<pubDate>Mon, 03 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th July 2023]]></title>
<description><![CDATA[<p>Dylan John has a great video called <strong>STOP doing THESE 10 THINGS in Final Cut Pro!</strong>. It's full of lots of great tips!</p>
<p>You can watch on YouTube here:</p>
<p><a href="https://www.youtube.com/watch?v=vDFh-_P8v2g"><img src="/static/stop-doing-these-10-things.jpg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#6th-july-2023</link>
<guid isPermaLink="false">6th July 2023</guid>
<pubDate>Thu, 06 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th July 2023]]></title>
<description><![CDATA[<p><strong>iZotope</strong> is currently running a summer sale!</p>
<p>Without a doubt iZotope RX10 is the very best audio recovery tool on the market - it can do magical things.</p>
<p>You can learn more <a href="https://www.izotope.com/en/shop/loyalty-rx-10-adv-pps-7-mps5.html">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-july-2023</link>
<guid isPermaLink="false">6th July 2023</guid>
<pubDate>Thu, 06 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[6th July 2023]]></title>
<description><![CDATA[<p><strong>Ulti.Media Converter 2</strong> now has the ability to save 8-bit <code>.PNG</code> files, which is useful for non-photographic app screenshots.</p>
<p>You can learn more <a href="https://ulti.media/converter/">here</a>.</p>
]]></description>
<link>https://fcp.cafe/#6th-july-2023</link>
<guid isPermaLink="false">6th July 2023</guid>
<pubDate>Thu, 06 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[7th July 2023]]></title>
<description><![CDATA[<p><strong>Ulti.Media Transcriber</strong> is out now! We've been beta testing it for a few months now, and it's awesome.</p>
<p>You can learn more and purchase at <a href="https://fxfactory.com/info/transcriber/">FxFactory</a>.</p>
<p><img src="/static/transcriber.jpeg" alt=""></p>
]]></description>
<link>https://fcp.cafe/#7th-july-2023</link>
<guid isPermaLink="false">7th July 2023</guid>
<pubDate>Fri, 07 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[12th July 2023]]></title>
<description><![CDATA[<p>The amazing <a href="https://www.youtube.com/arthurmoore">Arthur Moore</a> is currently having a sale on his awesome plugins.</p>
<p>Get a <strong>25% discount</strong> when you use the code: <strong>BADASSFAM25</strong></p>
<p>You can learn more <a href="https://arthurmoorefx.sellfy.store/">here</a></p>
<p><a href="https://www.youtube.com/watch?v=d5Mbj_s09u4&list=PLy-CmkRNiDfn56FykK-mJyWJLOvmkb50S"><img src="/static/badassfx.jpeg" alt=""></a></p>
]]></description>
<link>https://fcp.cafe/#12th-july-2023</link>
<guid isPermaLink="false">12th July 2023</guid>
<pubDate>Wed, 12 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[12th July 2023]]></title>
<description><![CDATA[<p><strong>BRAW Toolbox v1.3.0</strong> is out now!</p>
<p>It has added support for <strong>Panasonic Lumix GH6</strong> Blackmagic RAW clips.</p>
<p>You can learn more <a href="https://brawtoolbox.io">here</a>.</p>
<p><img src="/static/brawtoolbox-1-3-0.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#12th-july-2023</link>
<guid isPermaLink="false">12th July 2023</guid>
<pubDate>Wed, 12 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[12th July 2023]]></title>
<description><![CDATA[<p><strong>CommandPost v1.4.20</strong> is out now!</p>
<p>It has added support for the latest Loupedeck CT hardware. Thanks for reporting Marshall Fife!</p>
<p>You can learn more <a href="https://commandpost.io">here</a>.</p>
<p><img src="/static/commandpost-1-4-20.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#12th-july-2023</link>
<guid isPermaLink="false">12th July 2023</guid>
<pubDate>Wed, 12 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[16th July 2023]]></title>
<description><![CDATA[<p>For those that missed the news back in May, Apple has updated their <strong>Apple ProRes RAW White Paper</strong> to include information about the all-new plug-in architecture for camera makers.</p>
<p>You can download it as a PDF <a href="https://www.apple.com/final-cut-pro/docs/Apple_ProRes_RAW.pdf">here</a>.</p>
<p>PetaPixel also has an article that explains it in more detail <a href="https://petapixel.com/2023/05/31/apples-new-prores-raw-plug-ins-let-camera-makers-specify-processing/">here</a>.</p>
<p><img src="/static/prores-raw.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#16th-july-2023</link>
<guid isPermaLink="false">16th July 2023</guid>
<pubDate>Sun, 16 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[18th July 2023]]></title>
<description><![CDATA[<p>Exciting news! Apple has listed <strong>Marker Toolbox</strong> in their Mac App Store Story, <a href="https://apps.apple.com/au/story/id1439356777">The power of Final Cut Pro</a> in both the <strong>Great apps for Final Cut Pro</strong> & <strong>Workflow Extensions</strong> sections! Amazing! Thanks EVERYONE for your on-going support!</p>
<p><img src="/static/marker-toolbox-app-store-story.png" alt=""></p>
]]></description>
<link>https://fcp.cafe/#18th-july-2023</link>
<guid isPermaLink="false">18th July 2023</guid>
<pubDate>Tue, 18 Jul 2023 00:00:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[18th July 2023]]></title>
<description><![CDATA[<p><strong>PostSync</strong> has been updated to Version 1.7.</p>
<p>There's lots of feature improvements and bug fixes. You can find the full list of changes <a href="https://chrisroyfilms.com/postsync/version-history/">here</a>.</p>