-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtools.json
6797 lines (6797 loc) · 195 KB
/
tools.json
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
[
{
"title": "Pixela AI",
"description": "Pixela AI is an AI tool that generates game textures using machine learning technology. It offers developers a fast and cost-effective solution for creating high-quality game textures. It also offers customization options for unique texture styles. Pixela AI is a powerful and versatile tool for game texture generation.",
"url": "https://pixela.ai",
"pricing": "Free",
"screenshot": "Pixela AI.png",
"category": "📍 3D",
"social": {
"twitter": "@pixela_ai"
}
},
{
"title": "GET3D",
"description": "GET3D is a generative model for creating high-quality 3D textured shapes, learned from images. It offers a unique solution for creating 3D shapes with realistic textures and detailed features. GET3D leverages machine learning technology to deliver efficient and accurate results, making it a valuable tool for industries such as gaming, architecture, and product design.",
"url": "https://nv-tlabs.github.io/GET3D",
"pricing": "Free",
"screenshot": "GET3D.png",
"category": "📍 3D"
},
{
"title": "GetFloorPlan",
"description": "Getfloorplan Lab is a tool designed to enhance real estate sales. It provides 2D and 3D floor plans and virtual tours, which have been shown to increase sales calls by up to 30% according to its clients. Getfloorplan Lab is an effective solution for real estate professionals looking to boost their sales and stand out in the market. By offering engaging and interactive visual experiences, Getfloorplan Lab helps potential buyers envision and connect with properties.",
"url": "https://getfloorplan.com",
"pricing": "-",
"screenshot": "GetFloorPlan.png",
"category": "📍 3D"
},
{
"title": "Texture Lab",
"description": "Texture Lab is a tool for creating unique seamless textures for games. It allows users to generate textures from any text, offering an instant solution for adding personalized textures to their games. Texture Lab is user-friendly and offers customization options to produce high-quality textures efficiently and effectively. It is a valuable asset for game developers and artists looking for unique and customized textures for their games.",
"url": "https://www.texturelab.xyz",
"pricing": "Free",
"screenshot": "Texture Lab.png",
"category": "📍 3D"
},
{
"title": "DeepMotion",
"description": "Deepmotion is a powerful AI tool that transforms animation pipelines. It offers markerless motion capture and real-time 3D body tracking solutions through web and mobile platforms, leading the industry in animation technology.",
"url": "https://www.deepmotion.com",
"pricing": "Free",
"screenshot": "DeepMotion.png",
"category": "📍 3D"
},
{
"title": "Poly",
"description": "Poly is an AI-powered tool that enables users to create unlimited 3D design assets quickly. It features customizable, high-resolution, commercially-licensed 3D textures with physical-based rendering maps.",
"url": "https://withpoly.com",
"pricing": "-",
"screenshot": "Poly.png",
"category": "📍 3D"
},
{
"title": "Kinetix",
"description": "Kinetix is a virtual world platform that allows users to express themselves through custom emotes. The emotes can be used on any avatar and in multiple virtual worlds, providing unique and creative ways to showcase personality.",
"url": "https://www.kinetix.tech",
"pricing": "-",
"screenshot": "Kinetix.png",
"category": "📍 3D"
},
{
"title": "Kaedim",
"description": "Kaedim is a magical tool that generates custom 3D models in minutes. Say goodbye to spending hours on modeling tools. With Kaedim, users can easily create stunning 3D art with just an image.",
"url": "https://www.kaedim3d.com",
"pricing": "599$ mo",
"screenshot": "Kaedim.png",
"category": "📍 3D"
},
{
"title": "Mirageml",
"description": "MirageML is an AI-powered 3D prototyping tool that transforms the traditional design process. It allows creatives to effortlessly design beautiful environments on a user-friendly 3D canvas. Reimagine 3D prototyping with MirageML.",
"url": "https://www.mirageml.com",
"pricing": "Waitlist",
"screenshot": "Mirageml.png",
"category": "📍 3D"
},
{
"title": "Leonardo.Ai",
"description": "Leonardo.Ai is an AI tool that enables users to create stunning game assets. Meet Leonardo.Ai and revolutionize your game asset creation process.",
"url": "https://leonardo.ai",
"pricing": "-",
"screenshot": "Leonardo.Ai.png",
"category": "📍 3D"
},
{
"title": "PrometheanAI",
"description": "PrometheanAI is a groundbreaking AI tool that assists artists in building virtual worlds. It takes on mundane tasks and offers creative solutions, allowing artists to focus on what's important. With PrometheanAI, virtual world building is transformed by artificial intelligence that adapts to individual artist's tastes.",
"url": "https://www.prometheanai.com",
"pricing": "-",
"screenshot": "PrometheanAI.png",
"category": "📍 3D"
},
{
"title": "Ponzu",
"description": "Ponzu is an AI tool that adds flavor to 3D assets by generating textures. Season your 3D assets with Ponzu's AI-generated textures.",
"url": "https://www.ponzu.gg",
"pricing": "-",
"screenshot": "Ponzu.png",
"category": "📍 3D"
},
{
"title": "The Simulation",
"description": "The Simulation is a cutting-edge metaverse powered by Artificial Intelligence, designed to change the way we interact with virtual environments. With advanced machine learning, innovative game design, Non-Fungible Tokens (NFTs), and the ERC20 token, $SIM, this new digital world is poised to be a game-changer. Unlike traditional virtual worlds, only AI-powered NFTs will be represented in The Simulation, meaning that human presence will be absent. This creates a unique opportunity for AI entities to interact with each other in a virtual environment, free from human influence. The Simulation is a new frontier in AI development, and will allow developers, researchers, and artists to explore the possibilities of AI-powered virtual environments. The combination of sophisticated technology and the ability to trade AI NFTs opens up a world of potential, and provides a glimpse into the future of virtual worlds. Get ready to experience the next level of artificial intelligence with The Simulation.",
"url": "https://fablesimulation.com",
"pricing": "-",
"screenshot": "The Simulation.png",
"category": "📍 3D"
},
{
"title": "G3DAI {Jedi}",
"description": "G3DAI is a game development platform that transforms imagination into reality. With its cutting-edge AI technology, game creators can build stunning, unique games in a fraction of the time. G3DAI offers a suite of tools, each one expertly crafted to boost creativity and eliminate manual tasks, allowing game creators to focus on what really matters - creating games that captivate players and bring their visions to life. From dream to reality, G3DAI makes it possible to imagine any game and play it. Get ready to bring your game ideas to life with G3DAI.",
"url": "https://g3d.ai",
"pricing": "-",
"screenshot": "G3DAI {Jedi}.png",
"category": "📍 3D"
},
{
"title": "Imagine 3D",
"description": "Imagine 3D v1.2 (alpha) is a cutting-edge technology that allows you to create 3D models with just text. It's an early experiment aimed at revolutionizing the way 3D models are created, making it easier and more accessible. With Imagine 3D, you no longer have to be an expert in 3D design to bring your ideas to life. Access to this exciting technology is gradually expanding, and it's available to everyone on the waitlist. Whether you're a game designer, architect, or artist, Imagine 3D v1.2 (alpha) offers endless possibilities to bring your imagination to reality. Get ready to experience the future of 3D design with this innovative tool.",
"url": "https://captures.lumalabs.ai/imagine",
"pricing": "-",
"screenshot": "Imagine 3D.png",
"category": "📍 3D"
},
{
"title": "Masterpiece Studio",
"description": "Masterpiece Studio is a cutting-edge platform that combines generative AI with ease of use to revolutionize the world of 3D design. With Masterpiece Studio, creating beautiful 3D designs is effortless, as the platform leverages the power of generative AI to take the hassle out of the design process. Whether you're an experienced designer or just starting out, Masterpiece Studio provides an intuitive and user-friendly interface that makes 3D design accessible to everyone. By being the first commercially available 3D generative AI platform, Masterpiece Studio is poised to change the game and make 3D design accessible to anyone with a creative vision.",
"url": "https://masterpiecestudio.com",
"pricing": "-",
"screenshot": "Masterpiece Studio.png",
"category": "📍 3D"
},
{
"title": "Plask",
"description": "Plask is a cutting-edge technology that revolutionizes the process of extracting motion from video. It eliminates the need for expensive bodysuits or motion capture work, making it effortless and accessible to everyone. With its seamless integration with other tools and support for most professional file formats, including GLB, FBX, BVH, and more, Plask is the ideal choice for both solo artists and team collaborations. With the ability to extract motion just from video, Plask streamlines your workflow and makes it easier than ever to bring your visions to life. Get ready to elevate your game and bring your creations to the next level with Plask.",
"url": "https://plask.ai",
"pricing": "-",
"screenshot": "Plask.png",
"category": "📍 3D"
},
{
"title": "Luma AI",
"description": "Luma AI is revolutionizing the way we capture and experience memories. With a focus on three dimensional images, Luma is breaking down the barriers of 2D photos and videos. Their mission is to bring about a change in the way we share memories, explore products, and spaces on the internet by bringing them to life in lifelike 3D. By harnessing the power of mixed-reality technology, Luma is propelling us into the future of image capture and preservation. Say goodbye to flat, two dimensional memories and say hello to a new, immersive world with Luma AI.",
"url": "https://lumalabs.ai",
"pricing": "-",
"screenshot": "Luma AI.png",
"category": "📍 3D"
},
{
"title": "CSM",
"description": "CSM is revolutionizing the world of artificial intelligence. With its advanced technology, you can now create, simulate, and manipulate 3D worlds. Their APIs, interfaces, and open-source software enable the translation of multi-modal inputs into a digital simulator, perfect for AI training and content creation. CSM's mission is to bring artificial intelligence to the next level by providing a systematic path towards AGI, similar to the way a child learns about the world through experience. With CSM, you'll have the power to bring your imagination to life in a digital world.",
"url": "https://csm.ai",
"pricing": "-",
"screenshot": "CSM.png",
"category": "📍 3D"
},
{
"title": "Scenario",
"description": "Scenario is an AI-powered tool for game asset creation. It offers a solution for generating high-quality and style-consistent assets for game developers. With Scenario, you can create your own AI engine, custom-trained with your own data. This enables you to unlock astonishing creativity and quickly test new game concepts and ideas. With its efficient prompting system, Scenario speeds up your production and generates unique, high-quality content that is cohesive with your art direction. Say goodbye to the time-consuming process of manual asset creation, and welcome to the future of game development with Scenario.",
"url": "https://www.scenario.gg",
"pricing": "-",
"screenshot": "Scenario.png",
"category": "📍 3D"
},
{
"title": "Midjourney",
"description": "-",
"url": "https://www.midjourney.com/home",
"pricing": "-",
"screenshot": "Midjourney.png",
"category": "🎭 Art"
},
{
"title": "NightCafe Studio",
"description": "Nightcafe Studio is a platform that helps creators and artists make stunning digital content with its drag-and-drop editor and ready-made templates. It provides a wide range of tools for designing and animating graphics, and supports a variety of file formats for export.",
"url": "https://creator.nightcafe.studio",
"pricing": "Free and Pro plans from $9.99/month",
"screenshot": "NightCafe Studio.png",
"category": "🎭 Art"
},
{
"title": "Fy! Studio",
"description": "-",
"url": "https://www.iamfy.co/studio",
"pricing": "-",
"screenshot": "Fy! Studio.png",
"category": "🎭 Art"
},
{
"title": "Playground AI",
"description": "-",
"url": "https://playgroundai.com",
"pricing": "-",
"screenshot": "Playground AI.png",
"category": "🎭 Art"
},
{
"title": "Civitai",
"description": "-",
"url": "https://civitai.com",
"pricing": "-",
"screenshot": "Civitai.png",
"category": "🎭 Art"
},
{
"title": "Astria",
"description": "-",
"url": "https://www.astria.ai",
"pricing": "-",
"screenshot": "Astria.png",
"category": "🎭 Art"
},
{
"title": "Phraser",
"description": "-",
"url": "https://phraser.tech",
"pricing": "-",
"screenshot": "Phraser.png",
"category": "🎭 Art"
},
{
"title": "Super Prompt",
"description": "-",
"url": "https://superprompts.com",
"pricing": "-",
"screenshot": "Super Prompt.png",
"category": "🎭 Art"
},
{
"title": "ArtHub",
"description": "-",
"url": "https://arthub.ai",
"pricing": "-",
"screenshot": "ArtHub.png",
"category": "🎭 Art"
},
{
"title": "DaVinciFace",
"description": "-",
"url": "https://www.davinciface.com",
"pricing": "-",
"screenshot": "DaVinciFace.png",
"category": "🎭 Art"
},
{
"title": "Nijijourney",
"description": "-",
"url": "https://nijijourney.com/en",
"pricing": "-",
"screenshot": "Nijijourney.png",
"category": "🎭 Art"
},
{
"title": "Al Picasso",
"description": "-",
"url": "https://aipicasso.studio.site",
"pricing": "-",
"screenshot": "Al Picasso.png",
"category": "🎭 Art"
},
{
"title": "Lexica",
"description": "-",
"url": "https://lexica.art",
"pricing": "-",
"screenshot": "Lexica.png",
"category": "🎭 Art"
},
{
"title": "DiffusionBee",
"description": "-",
"url": "https://diffusionbee.com",
"pricing": "-",
"screenshot": "DiffusionBee.png",
"category": "🎭 Art"
},
{
"title": "Dreamlike.art",
"description": "-",
"url": "https://dreamlike.art",
"pricing": "-",
"screenshot": "Dreamlike.art.png",
"category": "🎭 Art"
},
{
"title": "AI Art Apps Database",
"description": "-",
"url": "https://aiartapps.com",
"pricing": "-",
"screenshot": "AI Art Apps Database.png",
"category": "🎭 Art"
},
{
"title": "Openart",
"description": "-",
"url": "https://openart.ai",
"pricing": "-",
"screenshot": "Openart.png",
"category": "🎭 Art"
},
{
"title": "Clipdrop",
"description": "-",
"url": "https://clipdrop.co",
"pricing": "-",
"screenshot": "Clipdrop.png",
"category": "🎭 Art"
},
{
"title": "Artroom AI",
"description": "-",
"url": "https://artroom.ai/download-app",
"pricing": "-",
"screenshot": "Artroom AI.png",
"category": "🎭 Art"
},
{
"title": "Daft Art",
"description": "-",
"url": "https://daftart.ai",
"pricing": "-",
"screenshot": "Daft Art.png",
"category": "🎭 Art"
},
{
"title": "Mage",
"description": "-",
"url": "https://www.mage.space",
"pricing": "-",
"screenshot": "Mage.png",
"category": "🎭 Art"
},
{
"title": "Diffusion Land",
"description": "-",
"url": "https://diffusion.land",
"pricing": "-",
"screenshot": "Diffusion Land.png",
"category": "🎭 Art"
},
{
"title": "Libraire",
"description": "-",
"url": "https://libraire.ai",
"pricing": "-",
"screenshot": "Libraire.png",
"category": "🎭 Art"
},
{
"title": "Neural.love Art Generator",
"description": "-",
"url": "https://neural.love",
"pricing": "-",
"screenshot": "Neural.love Art Generator.png",
"category": "🎭 Art"
},
{
"title": "Aragon-Image Generation",
"description": "-",
"url": "https://www.aragon.ai",
"pricing": "-",
"screenshot": "Aragon-Image Generation.png",
"category": "🎭 Art"
},
{
"title": "Wombo",
"description": "-",
"url": "https://www.wombo.art",
"pricing": "-",
"screenshot": "Wombo.png",
"category": "🎭 Art"
},
{
"title": "PicSo",
"description": "-",
"url": "https://picso.ai",
"pricing": "-",
"screenshot": "PicSo.png",
"category": "🎭 Art"
},
{
"title": "Artbreeder",
"description": "-",
"url": "https://www.artbreeder.com",
"pricing": "-",
"screenshot": "Artbreeder.png",
"category": "🎭 Art"
},
{
"title": "Dream Up",
"description": "-",
"url": "Deviant Art",
"pricing": "-",
"screenshot": "Dream Up.png",
"category": "🎭 Art"
},
{
"title": "Vana Portrait",
"description": "-",
"url": "https://portrait.vana.com",
"pricing": "-",
"screenshot": "Vana Portrait.png",
"category": "🎭 Art"
},
{
"title": "Quasi",
"description": "-",
"url": "https://quasi.market",
"pricing": "-",
"screenshot": "Quasi.png",
"category": "🎭 Art"
},
{
"title": "Krisp",
"description": "Krisp is an advanced AI-based software that eliminates background noise, voices, and echo from all your calls, ensuring a distraction-free and serene communication experience. Whether you're in a noisy coffee shop or working from a home office, Krisp can improve the audio quality of your calls, making them clear and easy to understand. The software is perfect for professionals, freelancers, and anyone who wants to improve their communication experience.",
"url": "krisp.ai",
"pricing": "Free Plan",
"screenshot": "Krisp.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Adobe Podcast",
"description": "Adobe Podcast is an AI-powered audio recording and editing tool that can be accessed directly on the web. It is designed for individuals who have stories to tell, providing an easy-to-use platform to create and publish high-quality podcast episodes. The AI technology in Adobe Podcast removes background noise, echo and voices, ensuring that your audio recordings are clear and distraction-free. With Adobe Podcast, you can record, edit and distribute your podcast to multiple platforms, including Apple Podcasts, Spotify, and Google Podcasts. Additionally, it provides analytics and tools to help you measure the performance of your podcast. Adobe Podcast is a powerful tool for anyone looking to share their stories and connect with their audience through the power of podcasting.",
"url": "https://podcast.adobe.com/",
"pricing": "Beta",
"screenshot": "Adobe Podcast.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Beatoven",
"description": "Beatoven.ai is a music generation software that utilizes artificial intelligence to compose unique, mood-based tracks that are tailored to fit every aspect of your video or podcast. The software is designed to help elevate the storytelling in your content by providing a wide variety of royalty-free music. With advanced AI generation techniques, Beatoven.ai offers a large selection of tracks that can be used in any project. It's perfect for Filmmakers, Podcasters, and other creative professionals who want to add high-quality, unique music to their work.",
"url": "www.beatoven.ai/",
"pricing": "Free Plan",
"screenshot": "Beatoven.png",
"category": "🎛️ Audio Editing"
},
{
"title": "AudioStrip",
"description": "AudioStrip is the ultimate online tool for music producers, providing an easy way to remove vocals from instrumentals on any song. The process is simple, just upload the song in the blue form above and let the technology do the rest. With its advanced algorithms, AudioStrip guarantees high-quality results every time. The tool is perfect for those who want to create their own instrumental versions of popular songs or to isolate specific elements of a track for use in their own productions. Whether you're a professional or just starting out, AudioStrip is an essential tool for anyone looking to elevate their music production skills.",
"url": "www.audiostrip.co.uk",
"pricing": "Free",
"screenshot": "AudioStrip.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Voicemod",
"description": "Voicemod is a free real-time voice changing software that allows you to express yourself and build your sonic identity in the metaverse. With its advanced AI technology, it provides a real-time voice changer and soundboard that can be used on various platforms such as Roblox, OBS, VRChat, Discord, and more. It can be used to add custom sound effects to games and communication apps like Discord, ZOOM, Google Meet, Minecraft, World of Warcraft, Overwatch, Rust, Fortnite, Valorant, League of Legends, Among Us, Roll20, Skype, WhatsApp Desktop, TeamSpeak, and many more.",
"url": "www.voicemod.net",
"pricing": "Free",
"screenshot": "Voicemod.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Cleanvoice",
"description": "Cleanvoice is an artificial intelligence tool that helps you improve the quality of your podcast or audio recording by removing filler sounds, stuttering and mouth sounds. With Cleanvoice, you can save hours of editing time and focus on creating great content. Whether you're a podcaster, musician, or any other audio professional, Cleanvoice is the perfect tool for enhancing the quality of your audio recordings.",
"url": "www.cleanvoice.ai",
"pricing": "Subscription or Pay as you go",
"screenshot": "Cleanvoice.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Podcastle",
"description": "Podcastle is the ultimate one-stop shop for broadcast storytelling. It offers a web-based platform that provides studio-quality recording, AI-powered editing, and seamless exporting all in one place. With Podcastle, you can take your podcasting to the next level and create professional-sounding episodes with ease. Whether you're a beginner or a seasoned pro, Podcastle makes it easy to create and share high-quality audio content.",
"url": "www.podcastle.com",
"pricing": "Free plan",
"screenshot": "Podcastle.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Altered",
"description": "Altered is a unique technology that allows you to change your voice to any of our carefully curated portfolio of voices or create custom voices for professional voice performances. Whether you're an actor, voiceover artist, or just looking to add some variety to your videos or podcasts, Altered can help you augment your voice and create compelling audio performances. With its advanced AI technology, Altered makes it easy to experiment with different voices and find the perfect one for your project.",
"url": "www.altered.ai",
"pricing": "Starting at 53€/mo or higher",
"screenshot": "Altered.png",
"category": "🎛️ Audio Editing"
},
{
"title": "Profile Picture AI",
"description": ")",
"url": "[Profile Picture AI",
"pricing": "https",
"screenshot": "Profile Picture AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Avatar AI",
"description": "-",
"url": "https://avatarai.me",
"pricing": "-",
"screenshot": "Avatar AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Lensa",
"description": ")",
"url": "[Lensa",
"pricing": "https",
"screenshot": "Lensa.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Xpression Camera",
"description": "-",
"url": "https://xpressioncamera.com",
"pricing": "-",
"screenshot": "Xpression Camera.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Reface AI",
"description": "-",
"url": "https://hey.reface.ai",
"pricing": "-",
"screenshot": "Reface AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "AnimeAI",
"description": "-",
"url": "https://www.animeai.lol",
"pricing": "-",
"screenshot": "AnimeAI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Avatarify",
"description": "-",
"url": "https://avatarify.art",
"pricing": "-",
"screenshot": "Avatarify.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "AI Roguelite",
"description": "-",
"url": "https://store.steampowered.com/app/1889620/AI_Roguelite",
"pricing": "-",
"screenshot": "AI Roguelite.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "LiveReacting AI",
"description": ")",
"url": "[LiveReacting AI",
"pricing": "https",
"screenshot": "LiveReacting AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "In3D",
"description": "-",
"url": "https://in3d.io",
"pricing": "-",
"screenshot": "In3D.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "HairstyleAI",
"description": "-",
"url": "https://www.hairstyleai.com",
"pricing": "-",
"screenshot": "HairstyleAI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Inworld",
"description": "-",
"url": "https://www.inworld.ai",
"pricing": "-",
"screenshot": "Inworld.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Digirama",
"description": ")",
"url": "[Digirama",
"pricing": "https",
"screenshot": "Digirama.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Unrealme",
"description": "-",
"url": "https://unrealme.io",
"pricing": "-",
"screenshot": "Unrealme.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "PhotoAI",
"description": "-",
"url": "https://photoai.me",
"pricing": "-",
"screenshot": "PhotoAI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Character AI",
"description": "-",
"url": "https://beta.character.ai",
"pricing": "-",
"screenshot": "Character AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "NeuralStudio",
"description": "-",
"url": "https://neural.cam/studio",
"pricing": "-",
"screenshot": "NeuralStudio.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Arti.pics",
"description": "-",
"url": "http://Arti.pics",
"pricing": "-",
"screenshot": "Arti.pics.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Theoasis",
"description": "-",
"url": "https://theoasis.com",
"pricing": "-",
"screenshot": "Theoasis.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Gemsouls",
"description": "-",
"url": "https://www.mygemsouls.com",
"pricing": "-",
"screenshot": "Gemsouls.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Ready Player Me",
"description": "-",
"url": "https://readyplayer.me",
"pricing": "-",
"screenshot": "Ready Player Me.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "PictoDream",
"description": "-",
"url": "https://pictodream.com",
"pricing": "-",
"screenshot": "PictoDream.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Beb.ai",
"description": "-",
"url": "http://Beb.ai",
"pricing": "-",
"screenshot": "Beb.ai.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "AI Time Machine",
"description": ")",
"url": "[AI Time Machine",
"pricing": "https",
"screenshot": "AI Time Machine.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Hairgen AI",
"description": "-",
"url": "https://www.hairgen.ai",
"pricing": "-",
"screenshot": "Hairgen AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Vana Portrait",
"description": "-",
"url": "https://portrait.vana.com",
"pricing": "-",
"screenshot": "Vana Portrait.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "DreamPic.AI",
"description": "-",
"url": "http://DreamPic.AI",
"pricing": "-",
"screenshot": "DreamPic.AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "PictoDream",
"description": "-",
"url": "https://pictodream.com",
"pricing": "-",
"screenshot": "PictoDream.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Beb.ai",
"description": "-",
"url": "http://Beb.ai",
"pricing": "-",
"screenshot": "Beb.ai.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "AI Time Machine",
"description": "-",
"url": "https://www.myheritage.com/ai-time-machine",
"pricing": "-",
"screenshot": "AI Time Machine.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Hairgen AI",
"description": "-",
"url": "https://www.hairgen.ai",
"pricing": "-",
"screenshot": "Hairgen AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Vana Portrait",
"description": "-",
"url": "https://portrait.vana.com",
"pricing": "-",
"screenshot": "Vana Portrait.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "DreamPic.AI",
"description": "-",
"url": "http://DreamPic.AI",
"pricing": "-",
"screenshot": "DreamPic.AI.png",
"category": "🧑🤝🧑 Avatars"
},
{
"title": "Replit",
"description": "-",
"url": "https://replit.com",
"pricing": "-",
"screenshot": "Replit.png",
"category": "🥷 Code Assistant"
},
{
"title": "AutoRegex",
"description": "-",
"url": "https://www.autoregex.xyz",
"pricing": "-",
"screenshot": "AutoRegex.png",
"category": "🥷 Code Assistant"
},
{
"title": "Amazon CodeWhisperer",
"description": "-",
"url": "https://aws.amazon.com/codewhisperer",
"pricing": "-",
"screenshot": "Amazon CodeWhisperer.png",
"category": "🥷 Code Assistant"
},
{
"title": "Tabnine",
"description": "-",
"url": "https://www.tabnine.com",
"pricing": "-",
"screenshot": "Tabnine.png",
"category": "🥷 Code Assistant"
},
{
"title": "Copilot",
"description": "-",
"url": "https://github.com/features/copilot",
"pricing": "-",
"screenshot": "Copilot.png",
"category": "🥷 Code Assistant"
},
{
"title": "AI CLI",
"description": "-",
"url": "https://github.com/abhagsain/ai-cli",
"pricing": "-",
"screenshot": "AI CLI.png",
"category": "🥷 Code Assistant"
},
{
"title": "Codeium",
"description": "-",
"url": "https://www.codeium.com",
"pricing": "-",
"screenshot": "Codeium.png",
"category": "🥷 Code Assistant"
},
{
"title": "Lookup",
"description": "-",
"url": "https://app.uselookup.com",
"pricing": "-",
"screenshot": "Lookup.png",
"category": "🥷 Code Assistant"
},
{
"title": "Duino Code Generator",
"description": "-",
"url": "https://www.duinocodegenerator.com",
"pricing": "-",
"screenshot": "Duino Code Generator.png",
"category": "🥷 Code Assistant"
},
{
"title": "Kodezi ai",
"description": "-",
"url": "https://kodezi.com",
"pricing": "-",
"screenshot": "Kodezi ai.png",
"category": "🥷 Code Assistant"
},
{
"title": "Maverick",
"description": ")",
"url": "[Maverick",
"pricing": "https",
"screenshot": "Maverick.png",
"category": "🥷 Code Assistant"
},
{
"title": "Buildt",
"description": "-",
"url": "https://www.buildt.ai",
"pricing": "-",
"screenshot": "Buildt.png",
"category": "🥷 Code Assistant"
},
{
"title": "BlackBox AI",
"description": "-",
"url": "https://www.useblackbox.io",
"pricing": "-",
"screenshot": "BlackBox AI.png",
"category": "🥷 Code Assistant"
},
{
"title": "Spellbox",
"description": "-",
"url": "https://spellbox.app",
"pricing": "-",
"screenshot": "Spellbox.png",
"category": "🥷 Code Assistant"
},
{
"title": "CodeGeeX",
"description": "-",
"url": "https://huggingface.co/spaces/THUDM/CodeGeeX",
"pricing": "-",
"screenshot": "CodeGeeX.png",
"category": "🥷 Code Assistant"
},
{
"title": "Cheat Layer",
"description": "-",
"url": "https://cheatlayer.com",
"pricing": "-",
"screenshot": "Cheat Layer.png",
"category": "🥷 Code Assistant"
},
{
"title": "AskCodi",
"description": "-",
"url": "https://www.askcodi.com",
"pricing": "-",
"screenshot": "AskCodi.png",
"category": "🥷 Code Assistant"
},
{
"title": "Programminghelper",
"description": "-",
"url": "https://www.programming-helper.com",
"pricing": "-",
"screenshot": "Programminghelper.png",
"category": "🥷 Code Assistant"
},
{
"title": "CodeAssist",
"description": "-",
"url": "https://plugins.jetbrains.com/plugin/20085-codeassist",
"pricing": "-",
"screenshot": "CodeAssist.png",
"category": "🥷 Code Assistant"
},
{
"title": "Fig AI",
"description": "-",
"url": "https://fig.io/user-manual/ai",
"pricing": "-",
"screenshot": "Fig AI.png",
"category": "🥷 Code Assistant"
},
{
"title": "Mutable",
"description": "-",
"url": "https://mutable.ai",
"pricing": "-",
"screenshot": "Mutable.png",
"category": "🥷 Code Assistant"
},
{
"title": "Clippy AI",
"description": ")",
"url": "[Clippy AI",
"pricing": "https",
"screenshot": "Clippy AI.png",
"category": "🥷 Code Assistant"
},
{
"title": "Continual",
"description": "-",
"url": "https://continual.ai",
"pricing": "-",
"screenshot": "Continual.png",
"category": "🥷 Code Assistant"
},
{
"title": "Stenography",
"description": "-",
"url": "https://stenography.dev",
"pricing": "-",
"screenshot": "Stenography.png",
"category": "🥷 Code Assistant"
},
{
"title": "WhatTheDiff",
"description": "-",
"url": "https://whatthediff.ai",
"pricing": "-",
"screenshot": "WhatTheDiff.png",
"category": "🥷 Code Assistant"
},
{
"title": "Hey, Github!",
"description": "-",
"url": "https://githubnext.com/projects/hey-github",
"pricing": "-",
"screenshot": "Hey, Github!.png",
"category": "🥷 Code Assistant"
},
{
"title": "CodeSquire",
"description": "-",
"url": "https://codesquire.ai",
"pricing": "-",
"screenshot": "CodeSquire.png",
"category": "🥷 Code Assistant"
},
{
"title": "Adcreative.ai",
"description": "-",
"url": "https://free-trial.adcreative.ai/yu6pljyh4s0k",
"pricing": "-",
"screenshot": "Adcreative.ai.png",
"category": "✍🏽 Copywriting"
},
{
"title": "Writesonic",
"description": "-",
"url": "https://writesonic.com",
"pricing": "-",
"screenshot": "Writesonic.png",
"category": "✍🏽 Copywriting"
},
{
"title": "Copy.ai",
"description": "-",
"url": "https://www.copy.ai",
"pricing": "-",
"screenshot": "Copy.ai.png",
"category": "✍🏽 Copywriting"
},
{
"title": "Rytr",
"description": "-",
"url": "https://rytr.me",
"pricing": "-",
"screenshot": "Rytr.png",
"category": "✍🏽 Copywriting"
},
{
"title": "Copymatic",
"description": "-",
"url": "https://copymatic.ai",
"pricing": "-",
"screenshot": "Copymatic.png",
"category": "✍🏽 Copywriting"
},
{
"title": "CopyMonkey",
"description": "-",
"url": "https://copymonkey.ai",