-
Notifications
You must be signed in to change notification settings - Fork 0
/
storyboarder.html
917 lines (797 loc) · 35.6 KB
/
storyboarder.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- photoswipe -->
<link rel="stylesheet" href="vendor/photoswipe/photoswipe.css" />
<link
rel="stylesheet"
href="vendor/photoswipe/default-skin/default-skin.css"
/>
<script src="vendor/photoswipe/photoswipe.min.js"></script>
<script src="vendor/photoswipe/photoswipe-ui-default.min.js"></script>
<link rel="stylesheet" href="css/main.css" />
<title></title>
</head>
<body>
<div class="container">
<header class="header--tall">
<div class="primary-nav flex flex-row justify-between">
<div class="flex justify-end">
<a href="/" class="logo">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 109.175 13.644"
>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<polygon
points="9.992 0 19.628 0 25.37 8.126 19.632 13.644 9.992 0"
></polygon>
<polygon
points="0 0 8.067 0 12.873 6.803 8.07 11.422 0 0"
></polygon>
<path
d="M35.777,4.9l1.287,4.613L38.573,4.9H40.1l1.5,4.613,1.3-4.613h1.789L42.627,11.65H40.782L39.328,7,37.889,11.65H36.043L33.988,4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M46.834,11.343a3.231,3.231,0,0,1-1.244-1.286,3.877,3.877,0,0,1,0-3.565,3.237,3.237,0,0,1,1.244-1.286,3.944,3.944,0,0,1,3.753,0,3.268,3.268,0,0,1,1.237,1.279,3.7,3.7,0,0,1,.434,1.783,3.733,3.733,0,0,1-.434,1.789,3.247,3.247,0,0,1-1.237,1.286,3.944,3.944,0,0,1-3.753,0Zm3.159-1.628a2.177,2.177,0,0,0,.476-1.447,2.179,2.179,0,0,0-.476-1.44,1.722,1.722,0,0,0-2.565,0,2.163,2.163,0,0,0-.483,1.44,2.16,2.16,0,0,0,.483,1.439,1.73,1.73,0,0,0,2.565.008Z"
transform="translate(0 -1.594)"
></path>
<path
d="M55.222,4.9V5.71a2.171,2.171,0,0,1,.957-.72A3.66,3.66,0,0,1,57.6,4.731,2.2,2.2,0,0,1,59.24,5.3a2.18,2.18,0,0,1,.552,1.587V11.65H58.059v-4.1a1.329,1.329,0,0,0-.322-.993,1.3,1.3,0,0,0-.936-.307,1.837,1.837,0,0,0-1.083.349,1.115,1.115,0,0,0-.5.964V11.65H53.5V4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M67.955,2.327V11.65H66.236v-.8a2.6,2.6,0,0,1-2.111.964,2.807,2.807,0,0,1-2.607-1.649,4.327,4.327,0,0,1-.385-1.9A4.2,4.2,0,0,1,61.525,6.4a2.965,2.965,0,0,1,1.069-1.23,2.781,2.781,0,0,1,1.531-.434,2.857,2.857,0,0,1,1.146.224,2.725,2.725,0,0,1,.965.74V2.327ZM65.977,6.968a1.531,1.531,0,0,0-.622-.545,1.665,1.665,0,0,0-.7-.168,1.58,1.58,0,0,0-1.251.552,2.144,2.144,0,0,0-.483,1.461,2.146,2.146,0,0,0,.483,1.461,1.583,1.583,0,0,0,1.251.551,1.756,1.756,0,0,0,1.1-.37,1.651,1.651,0,0,0,.482-1.377v-.6A1.675,1.675,0,0,0,65.977,6.968Z"
transform="translate(0 -1.594)"
></path>
<path
d="M75.684,10.867a3.359,3.359,0,0,1-1.251.706,4.893,4.893,0,0,1-1.53.245,3.818,3.818,0,0,1-1.838-.44,3.227,3.227,0,0,1-1.286-1.244,3.632,3.632,0,0,1-.469-1.866,3.653,3.653,0,0,1,.447-1.789A3.321,3.321,0,0,1,71,5.2a3.5,3.5,0,0,1,1.8-.468,3.33,3.33,0,0,1,1.747.461,3.149,3.149,0,0,1,1.2,1.3,4.239,4.239,0,0,1,.425,1.944v.376H71.114a1.776,1.776,0,0,0,.615,1.175,1.991,1.991,0,0,0,1.356.461,3.059,3.059,0,0,0,.992-.175,2.123,2.123,0,0,0,.839-.5ZM74.028,6.541a1.644,1.644,0,0,0-1.237-.468,1.533,1.533,0,0,0-1.195.483,1.828,1.828,0,0,0-.5,1.083H74.51A1.636,1.636,0,0,0,74.028,6.541Z"
transform="translate(0 -1.594)"
></path>
<path
d="M79.208,4.9v.8a2.475,2.475,0,0,1,.95-.7,2.979,2.979,0,0,1,1.216-.266V6.423a2.04,2.04,0,0,0-.49-.057,2.551,2.551,0,0,0-.719.119,2.05,2.05,0,0,0-.678.336.621.621,0,0,0-.279.5V11.65h-1.72V4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M87.8,4.9V9.022a1.251,1.251,0,0,0,.322.965,1.361,1.361,0,0,0,.95.293,1.971,1.971,0,0,0,1.083-.307,1.018,1.018,0,0,0,.482-.922V4.9h1.72V11.65H90.64v-.8a2.451,2.451,0,0,1-.97.692,3.533,3.533,0,0,1-1.406.272,2.186,2.186,0,0,1-1.635-.559,2.146,2.146,0,0,1-.545-1.566V4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M95.869,4.9V5.71a2.171,2.171,0,0,1,.957-.72,3.656,3.656,0,0,1,1.419-.259,2.2,2.2,0,0,1,1.642.566,2.18,2.18,0,0,1,.552,1.587V11.65H98.706v-4.1a1.329,1.329,0,0,0-.322-.993,1.3,1.3,0,0,0-.936-.307,1.837,1.837,0,0,0-1.083.349,1.115,1.115,0,0,0-.5.964V11.65h-1.72V4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M102.319,2.2a1.238,1.238,0,0,1,1.531,0,1.063,1.063,0,0,1,.266.783,1.068,1.068,0,0,1-.266.776,1.213,1.213,0,0,1-1.531,0,1.05,1.05,0,0,1-.273-.776A1.046,1.046,0,0,1,102.319,2.2Zm1.615,2.7V11.65h-1.72V4.9Z"
transform="translate(0 -1.594)"
></path>
<path
d="M106.072,3.054h1.733V4.9h1.37V6.408h-1.37v2.95a.871.871,0,0,0,.16.552.55.55,0,0,0,.456.2h.74V11.65h-1.216a1.929,1.929,0,0,1-1.4-.461,1.824,1.824,0,0,1-.475-1.37V6.408h-1.118V4.9h1.118Z"
transform="translate(0 -1.594)"
></path>
</g>
</g>
</svg>
</a>
</div>
<div class="flex">
<ul class="menu flex">
<li>
<a href="/technology">Technology</a>
<ul>
<li>
<a href="/storyboarder">Storyboarder</a>
</li>
<li>
<a href="#">Shot Core</a>
</li>
</ul>
</li>
<li>
<a href="/articles">Articles</a>
<ul>
<li>
<a href="#">A Future of Visual Storytelling</a>
</li>
<li>
<a href="#">How We Use Storyboarding</a>
</li>
<li>
<a href="#">Thoughts on Free and Open Source Software</a>
</li>
</ul>
</li>
<li><a href="/about">About</a></li>
</ul>
</div>
</div>
</header>
<div class="left-sidebar flex-row justify-end items-start">
</div>
<!-- storyboarder content: start -->
<div class="masthead">
<video playsinline loop muted autoplay>
<source src="https://wonderunit.com/storyboarder/backgroundvideo.mp4" type="video/mp4">
</video>
</div>
<div class="cover cover--main">
<div class="centered">
<h1 class="headline font-thin mb-2">
Storyboarder
</h1>
<h2 class="font-thin subheading">
The best way to visualize your story.
</h2>
<a href="#" class="button button--download">
Download for Free
</a>
<p>
Version 2.0.1 available for Mac OS X, Windows, and Linux
</p>
</div>
</div>
<p>
Storyboarder makes it easy to visualize a story as fast you can draw stick figures. Quickly draw to test if a story idea works. Create and show animatics to others. Express your story idea without making a movie.
</p>
<p>
We built Storyboarder because the storyboarding tool we wanted simply didn't exist. We are making it better every day. In fact, we have released it free and open source. You can and even make improvements.
</p>
<p>
Can you apply storyboarding and pitches to the story development process as animation has done? We think so. We would love to hear your feedback to make Storyboarder the best storyboarding tool possible.
</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/preview.jpg"
data-size="840x525"
>
<img
src="https://wonderunit.com/storyboarder/preview.jpg"
alt="A screenshot of Storyboarder"
loading="lazy"
/>
</a>
</figure>
<h2 class="m-0">Storyboarder is a tool that makes it easy to visualize a story as fast as you can think. Storyboarding lets storytellers easily, and cheaply visualize their stories. It can be used to test the narrative, make changes, and be better prepared for production, reducing costs greatly, resulting in a better story.</h2>
<!-- storyboarder youtube video -->
<div
class="w-large"
style="--aspect-ratio: 16 / 9;"
>
<iframe
src="https://www.youtube-nocookie.com/embed/ssPIU3qaVog"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
loading="lazy"
></iframe>
</div>
<p class="m-0"><strong>Draw your story</strong></p>
<p>
You can draw and organize your storyboards in a traditional way, either using our sketching system or using an external tool like Photoshop. Just add a board and start drawing.
</p>
<!-- shot generator youtube playlist -->
<div
class="w-large"
style="--aspect-ratio: 16 / 9;"
>
<iframe
src="https://www.youtube-nocookie.com/embed/OOVaBLYLT4c"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
loading="lazy"
></iframe>
</div>
<p class="m-0"><strong>Lay out scenes in Shot Generator</strong></p>
<p>If you can't draw, you can also layout scenes using Shot Generator, a feature that allows you to quickly add characters, pose them, add objects, and set up cameras to create shots.</p>
<!-- shot generator vr youtube playlist -->
<div
class="w-large"
style="--aspect-ratio: 16 / 9;"
>
<iframe
src="https://www.youtube-nocookie.com/embed/videoseries?list=PLmP0TZ59zhSOH6RuX9g_7AMliLnFqx70E"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
loading="lazy"
></iframe>
</div>
<p class="m-0"><strong>Immerse yourself in your story.</strong></p>
<p>If you own an Oculus Quest or other VR headset, you can create and edit your scene in VR, and set up virtual cameras. This is the fastest way to set up scenes and shots.</p>
<h1>Storyboarding results in better stories.</h1>
<p>These directors almost exclusively use storyboarding to visualize their stories...</p>
<p>Ridley Scott,
Wes Anderson,
Alfred Hitchcock,
Christopher Nolan,
Steven Spielberg,
Francis Ford Coppola,
Sam Raimi,
Zack Snyder,
Tim Miller,
Martin Scorsese,
The Coen Brothers,
Robert Zemeckis</p>
<p>Now there is a free tool to help anyone visualize their stories: <strong>Storyboarder.</strong></p>
<h2 style="margin-bottom: 30px;">Used to Storyboard Movies and Shows like...</h2>
<img src="https://wonderunit.com/storyboarder/poster-xmen.jpg">
<p><strong>X-Men: Dark Phoenix</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-shameless.jpg">
<p><strong>Shameless</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-cruella.jpg">
<p><strong>Disney's Cruella</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-terminator.jpg">
<p><strong>Terminator: Dark Fate</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-newmutants.jpg">
<p><strong>The New Mutants</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-coldcase.jpg">
<p><strong>Cold Case Files</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-cosmos.jpg">
<p><strong>Cosmos</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-modernfamily.jpg">
<p><strong>Modern Family</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-bright.jpg">
<p><strong>Bright</strong></p>
<img src="https://wonderunit.com/storyboarder/poster-childsplay.jpg">
<p><strong>Child's Play</strong></p>
<h2 style="margin-bottom: 0px;">Fast and Simple</h2>
<p style="margin-bottom: 30px;">Storyboarder is designed to be simple. We included the tools you need to board fast, and removed everything you don't need.</p>
<!-- TODO https://wonderunit.com/storyboarder/fast-interface-overlay.png and https://wonderunit.com/storyboarder/screenshot.gif -->
<!-- <img src="https://wonderunit.com/storyboarder/fast-interface-overlay.png"> -->
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/screenshot.gif"
data-size="1500x938"
>
<img
src="https://wonderunit.com/storyboarder/screenshot.gif"
alt=""
loading="lazy"
/>
</a>
<figcaption>
Brush Tools, Sketch Pane, Board Drawer, Edit in Photoshop, and a Metadata Panel
</figcaption>
</figure>
<h3>6 simple drawing tools</h3>
<p>Light pencil for roughing, Hard Pencil for fine lines, Pen for most work, Brush to tone, Note Pen to write notes, and Eraser!</p>
<h3>Add boards with a click</h3>
<p>Theres no friction. Add a board. Draw. Add another. Draw. Duplicate. Copy. Paste. Rearrange. There is nothing stopping you.</p>
<h3>Enter dialogue and action</h3>
<p>Add metadata for a board on the right panel. You can also enter timing information and shot type.</p>
<h2>For everything else, just edit in Photoshop.</h2>
<!-- <img src="https://wonderunit.com/storyboarder/photoshop-arrows.png" style="position: absolute;opacity: 0.85;transform: scale(0.83, 0.83) translate(70%, 8%);" loading="lazy"> -->
<div class="gallery w-large" data-gallery>
<figure>
<a
href="https://wonderunit.com/storyboarder/photoshop-storyboarder.png"
data-size="600x338"
>
<img
src="https://wonderunit.com/storyboarder/photoshop-storyboarder.png"
alt=""
loading="lazy"
/>
</a>
<figcaption>
<h3 style="margin-top: 1rem;">Click edit in Photoshop</h3>
<p>Draw your roughs and do layout in Storyboarder. If you need more control, just click the edit in photoshop button!</p>
</figcaption>
</figure>
<figure>
<a
href="https://wonderunit.com/storyboarder/photoshop.png"
data-size="1920x1080"
>
<img
src="https://wonderunit.com/storyboarder/photoshop.png"
alt=""
loading="lazy"
/>
</a>
<figcaption>
<h3 style="margin-top: 1rem;">Edit in Photoshop and save</h3>
<p>The board will open up in Photoshop. Just edit as you normally would. Once you save, it will automatically update in Storyboarder!</p>
</figcaption>
</figure>
</div>
<h2>Who's this for?</h2>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-storyartists.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-storyartists.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Story Artists</h4>
<p>Craft stories visually from your thoughts to boards as fast as possible.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-directors.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-directors.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Directors</h4>
<p>Sketch your shot list through boards to see if they work as a movie.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-writers.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-writers.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Writers</h4>
<p>Take your written stories and visualize them. See the words come to life.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-advertisers.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-advertisers.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Advertisers</h4>
<p>Create storyboards for advertisements so you can visually show your clients.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-dreamers.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-dreamers.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Dreamers</h4>
<p>Have an idea and a dream? Create and iterate on your idea by drawing it.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/who-anyone.jpg"
data-size="614x303"
>
<img
src="https://wonderunit.com/storyboarder/who-anyone.jpg"
alt=""
loading="lazy"
/>
</a>
</figure>
<h4>Anyone with an idea</h4>
<p>You can storyboard even the smallest idea. You don't even have to be able to draw!</p>
<h2>Do you like storyboarding on paper? Print and import paper storyboards magically.</h2>
<p>In Storyboarder, you can print out storyboard worksheets. Draw on as many frames and pages as you like. Then take a picture of the worksheet with your phone and Storyboarder will automatically import the boards into your project.</p>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/paper.png"
data-size="1000x617"
>
<img
src="https://wonderunit.com/storyboarder/paper.png"
alt=""
loading="lazy"
/>
</a>
</figure>
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/phone.png"
data-size="1000x521"
>
<img
src="https://wonderunit.com/storyboarder/phone.png"
alt=""
loading="lazy"
/>
</a>
</figure>
<!--
<figure class="w-large" data-image>
<a
href="https://wonderunit.com/storyboarder/importarrow.png"
data-size="132x297"
>
<img
src="https://wonderunit.com/storyboarder/importarrow.png"
alt=""
loading="lazy"
/>
</a>
</figure>
-->
<div
class="w-large"
style="--aspect-ratio: 16 / 9;"
>
<video controls>
<source src="https://wonderunit.com/storyboarder/import.mp4" type="video/mp4">
</video>
</div>
<h2>Export to Premiere, Final Cut, Avid, PDF,<br/> and Animated GIF</h2>
<!--
<img src="https://wonderunit.com/storyboarder/export-arrows.png">
-->
<figure>
<img
src="https://wonderunit.com/storyboarder/export-premiere.png"
loading="lazy">
</figure>
<p>Export to any editing program. This is great for cutting together your boards or doing realtime editing at shoots. You can also export a contact sheet of your boards as a PDF, and an Animated GIF – perfect for sharing and collaboration.</p>
<figure>
<img src="https://wonderunit.com/storyboarder/export-pdf.png" loading="lazy">
</figure>
<figure>
<img src="https://wonderunit.com/storyboarder/ducks.gif" loading="lazy">
</figure>
<section class="dark">
<div class="row">
<div class="large-12 columns">
<h2>Generate a shot just by typing...</h2>
<!-- <img src="https://wonderunit.com/storyboarder/export-arrows.png" style="position: absolute; opacity: 0.15; transform: scale(0.73, 0.73) translate(-48%, -22%);"> -->
<div class="row">
<div class="large-5 columns">
<p style="font-size: 21px; text-shadow: 0px 1px 36px black; ">Can't draw? Have a shot list? Or just want to quickly mockup reference shots without drawing? Just type a description into the Shot Generator in the sidebar, press return, and generate as many shots as you'd like. Change parameters as you want. Shots are fully customizable.<br/><br/>Double click to put it in the reference layer of the board. The generated shots are meant to be drawn over so they can be used as a guide.<br/><br/>If you can describe a shot and draw a smiley face, you can storyboard!</p>
</div>
<div class="large-7 columns">
<video loop="" muted="" autoplay="" style="width: 100%; border-radius: 6px; box-shadow: 0px 2px 15px rgba(0,0,0,0.1); border-bottom: 10px solid #333;" loading="lazy">
<source src="https://wonderunit.com/storyboarder/shotgenerator.mp4" type="video/mp4">
</video>
</div>
</div>
<h2 style="margin-top: 30px;">So you can generate a scene in seconds.</h2>
<video loop="" muted="" autoplay="" style="width: 100%; border-radius: 7px; box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.8);, 0px 1px 3px 1px rgba(0,0,0,0.5); background: #333333;" loading="lazy">
<source src="https://wonderunit.com/storyboarder/generatorscene.mp4" type="video/mp4">
</video>
<h2>Examples of shots...</h2>
</div>
</div>
</section>
<h2>Key commands for everything.</h2>
<figure class="w-large">
<img
src="https://wonderunit.com/storyboarder/keyboard2.gif"
loading="lazy">
</figure>
<p>Key commands really speed up your work. Pressing "N" for new board, and left and right arrows from navigating is essential. For some, knowing all the key commands is the key to working quickly. If you'd like to know what's possible, just press <kbd>Command</kbd> + <kbd>K</kbd></p>
<h2>Just a few features...</h2>
<div class="features-grid w-large">
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Simple, Smooth Drawing</h4>
<p>5 tools, Incredibly fast drawing engine pressure sensitive.</p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Super Simple Interface</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Printed Worksheets</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Works with Wacom</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Easy Organization</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Draw Straight Lines</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Works with Fountain</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Open in Photoshop</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Measure Line Mileage</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Guides to Help Drawing</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Reference Layer</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Onion Skin</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Track Changes</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Collaborate on Github</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Export to Formats</h4>
<p></p>
</div>
<div>
<div style="--aspect-ratio: 16 / 9;">
<img
src="https://wonderunit.com/storyboarder/image.png"
loading="lazy"
>
</div>
<h4>Built with Love</h4>
<p></p>
</div>
</div>
<h3><a href="/storyboarder/faq/">Please click here to read the FAQ to learn more!</a></h3>
<section>
<div class="row" style="margin-bottom: 30px;">
<div class="large-12 columns">
<h2 style="text-align: center;">Many people love Storyboarder...</h2>
</div>
</div>
<div class="row">
<div class="medium-4 columns">
<h1 style="margin-bottom: 0px;font-size: 60px; text-align: center; font-weight: 800; margin-bottom: -15px;">250K+</h1>
<p style="text-align: center; font-size: 22px;">Registered Users</p>
</div>
<div class="medium-4 columns">
<h1 style="margin-bottom: 0px;font-size: 60px; text-align: center; font-weight: 800; margin-bottom: -15px;">1.5 million+</h1>
<p style="text-align: center; font-size: 22px;">Downloads</p>
</div>
<div class="medium-4 columns">
<h1 style="margin-bottom: 0px;font-size: 60px; text-align: center; font-weight: 800; margin-bottom: -15px;">50K+</h1>
<p style="text-align: center; font-size: 22px;">Daily Users</p>
</div>
</div>
</section>
<section>
<div class="row">
<div class="large-12 columns">
<h2>Why is Storyboarder free?</h2>
<div class="row">
<div class="large-6 columns">
<p>Storyboarder is niche software. The market is tiny. There's an inverse relationship between the market size and price we have to charge to make money. We are building this tool for ourselves to make better movies. We make money making movies, not software. We believe creative software should be free. Let's be completely real – I've never known anyone working on dope ass shit to be paying for the software they use anyways.</p>
</div>
<div class="large-6 columns">
<p>Storyboard Pro - Shitty software that costs $1000? Boords and other online software that just allows you to order images and costs a monthly fee?</p>
<!-- <p>Fuck those guys.</p>
<p style="font-size: 13px;">And fuck Sony Pictures. They make the worst fucking movies. What does that have to do with free software? Not much. Maybe use free software to make great movies and don't waste money going to a Sony movie? Fuck.</p>
<p style="font-size: 13px;">And fuck Dave Morin. And Gary Vaynerchuk. Ugh.</p> -->
</div>
</div>
</div>
</div>
</section>
<section>
<div class="row">
<div class="large-12 columns">
<h2>What are people saying?</h2>
<div class="row">
<div class="large-4 columns">
<p>"The print, shoot, import workflow is super slick. And it’s the best case I’ve ever seen for QR codes. Well done!"</p>
<img src="https://wonderunit.com/storyboarder/johnaugust.jpg" style="width: 60px; border-radius: 50%; float: left; margin-right: 20px;" loading="lazy"><p style="margin-top: 22px;margin-bottom: -5px;">John August</p><p>Writer, Host of ScriptNotes.</p>
</div>
<div class="large-4 columns">
<p>"Holy effin dickbutt. This is the best. Far better than anything else out there, and I've basically seen it all."</p>
<img src="https://wonderunit.com/storyboarder/psql.jpg" style="width: 60px; border-radius: 50%; float: left; margin-right: 20px;" loading="lazy"><p style="margin-top: 22px;margin-bottom: -5px;">Pasquale D'Silva</p><p>Animator, Co-founder Thinko.</p>
</div>
I have been using Storyboarder exclusively for over a year. It’s set up makes organizing frames/scenes effortless and exporting in different formats almost instant. This program saves me oceans of time.
Storyboarder is an amazing storyboard organizational tool for Photoshop.
<div class="large-4 columns">
<p>"You don't have a background layer? To be honest, if you hired me to work on your storyboards, I wouldn't use this."</p>
<img src="https://wonderunit.com/storyboarder/matthewtaylor.jpg" style="width: 60px; border-radius: 50%; float: left; margin-right: 20px;" loading="lazy"><p style="margin-top: 22px;margin-bottom: -5px;">Matthew A. Taylor</p><p>Live Action Storyboard Artist</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="row">
<div class="large-12 columns">
<p style="font-size: 30px; margin-bottom: 20px;">Dearest Friends,</p>
<div class="row">
<div class="large-6 columns">
<p style="font-size: 30px; margin-top: -5px;">We made Storyboarder because we needed a great storyboarding tool that simply didn't exist.</p>
<p>We use tools every day to help us do things. This is especially true with creative persuits. As many artists before us, we think that toolmaking is an important aspect of creation. Making a tool that allows us to realize our vision in a faster, richer, and more meaningful way is well worth the short term investment for the long term benefits.</p>
<p>It is very important that the primary purpose of this tool is to allow us to create better work. We want to iterate on it and make it better as we learn more from the process of using it. It is important that we are motivated almost exclusively by the betterment of our work, and not by making money. We will make money from creating great stories, not selling overpriced niche software.</p>
<p>We have been accused of trying to rethink the way things are done. "Why don't you just do it the way thousands have done it before?" "Why don't you just make your movie instead of making this tool?" These are the voices of closed-minded, common people. They lack the ability to dream of a better way. They don't push the human race forward. They discourage change. I hope you do not ignore them, but defy them.</p>
</div>
<div class="large-6 columns">
<p>Should other people want to use our tools to create something great, nothing should stand in the way of that. Additionally, we think it's important to listen to feedback and ideas, and if possible integrate the truly best ideas into the tool. I believe great ideas are in all of us. Selfishly, I want to experience your stories. If I can make a tool to help you will them into the world, that would make me happy.</p>
<p>Tools are not a replacement for work. The tool alone doesn't make anything. Work is hard. Refining work into great work is even harder. Storyboarder, at the highest level, is a drawing organizer. It makes drawing and ordering drawings simpler. You could do this with a stack of paper and a pencil. Anyone who makes broad claims otherwise is a liar.</p>
<p>I invite you to use our tools freely. Please send us feedback, ideas, and suggestions. Feel free to share your work with us. We would love to see it. I also invite you to look at what we are working on - the reason why we made this tool. We are looking for people to join our team. If you are compelled by it, we would love to hear from you. Actually, either way, we would love to hear from you!</p>
<img src="https://wonderunit.com/storyboarder/signature.png" style="width: 200px; margin-left: 40px; margin-top: 10px;" loading="lazy">
<p style="font-size: 10px;margin-left: 40px; margin-top: 10px;">Charles Forman // Just some dude who cares.</p>
</div>
</div>
</div>
</div>
</section>
<!-- storyboarder content: end -->
<div class="right-sidebar">
</div>
<footer>
<div class="flex">
<small class="text-center w-full">
© 2020 Wonder Unit, Inc. All rights reserved.
</small>
</div>
</footer>
</div>
<!-- PhotoSwipe template -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button
class="pswp__button pswp__button--close"
title="Close (Esc)"
></button>
<button
class="pswp__button pswp__button--share"
title="Share"
></button>
<button
class="pswp__button pswp__button--fs"
title="Toggle fullscreen"
></button>
<button
class="pswp__button pswp__button--zoom"
title="Zoom in/out"
></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div
class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"
>
<div class="pswp__share-tooltip"></div>
</div>
<button
class="pswp__button pswp__button--arrow--left"
title="Previous (arrow left)"
></button>
<button
class="pswp__button pswp__button--arrow--right"
title="Next (arrow right)"
></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<script type="module" src="js/index.js"></script>
</body>
</html>