Pre-Production Experts para contratar
Mostrando 15 resultados
Freelancers patrocinados
-
Hi, welcome to my profile! I am Video Editor with long and quality experience with Video Editing and Sound Design. I have worked on various types of projects. Love to work on different types of videos: - TV Commercials - Instagram and Facebook Promo Videos - Travel Videos - Intro - Outro Videos - YouTube Vlogs ...Hi, welcome to my profile! I am Video Editor with long and quality experience with Video Editing and Sound Design. I have worked on various types of projects. Love to work on different types of videos: - TV Commercials - Instagram and Facebook Promo Videos - Travel Videos - Intro - Outro Videos - YouTube Vlogs and more Thanks and I appreciate your time for checking out my profile. menos
Contratar BojanSa
-
Welcome to my page! With over 7 years of experience in architectural design, 3D product modeling, and rendering, I specialize in delivering high-quality, detailed, and innovative solutions for clients around the world. I take pride in providing exceptional service while always meeting deadlines and maintaining high...Welcome to my page! With over 7 years of experience in architectural design, 3D product modeling, and rendering, I specialize in delivering high-quality, detailed, and innovative solutions for clients around the world. I take pride in providing exceptional service while always meeting deadlines and maintaining high standards of quality. I am specialized in 3ds Max, Solidworks, AutoCAD, Maya, SketchUp, Blender and also several rendering engine such as V-Ray. My expertise spans across a variety of services, including: - 3D Architectural Design & Visualization - Interior and Exterior Design - 3D Product Design - 3D Animation My goal is to satisfy all requirements on project with high quality and always strive to get the best solutions. Hope to work together. Best regards Rafayel Ohanyan menos
Contratar rafayelohanyan
-
Experienced in Image Processing.Can handle AI/Deep Learning Projects Libraries that i have worked on - OpenCv, TensorFlow, PyTorch, SFML, Cairo, Dlib, Several unity libraries. Languages - C++, C#, .net, Python, Java, Javascript Framework: .net framework, asp.net for backend server, android, Qt Modelling Tools -...Experienced in Image Processing.Can handle AI/Deep Learning Projects Libraries that i have worked on - OpenCv, TensorFlow, PyTorch, SFML, Cairo, Dlib, Several unity libraries. Languages - C++, C#, .net, Python, Java, Javascript Framework: .net framework, asp.net for backend server, android, Qt Modelling Tools - Blender, Game Development, VR(Oculus), MR(Hololens), AR(Android Phone) : Unity 3D menos
Contratar Prakash1206
-
✅Studied Master in Game Technologies & Have made several games ✅Studied Master in Computer Animation & Have made hundreds of product animations ✅Studied Architecture & Have made hundreds of architectural projects ✅ Preferred Freelancer Badge Earned ✅ Verified by Freelancer Staff Badge Earned I have 4 years of game...✅Studied Master in Game Technologies & Have made several games ✅Studied Master in Computer Animation & Have made hundreds of product animations ✅Studied Architecture & Have made hundreds of architectural projects ✅ Preferred Freelancer Badge Earned ✅ Verified by Freelancer Staff Badge Earned I have 4 years of game design and game development experience. ✔️Made over 4 games. ✔️Made over 10 characters with animations. I have 13 years of architectural rendering and design experience. ✔️Made over 180 interior designs and renderings. ✔️Made over 20 architectural animations with over 3600 seconds. I have 7 years of product advertisement and CG animations experience. ✔️Made over 120 product animations with over 3000 seconds. Game Design: ✔️Character Modelling & Painting ✔️Character animation, motion capture, lip sync, expressions ✔️Environment design ✔️Custom complex shader creation (Unity) ✔️Game development + scripting (Unity, C#)(Singleplayer only) ✔️Cinematic design (Timeline/Sequencer + smooth camera animations) ✔️Game optimization (Unity)(Frame Debugger, Memory Profiler, Lightmaps, culling, light probes) 3D CG Animations: ✔️Product advertisements ✔️Dynamic object simulations ✔️Mechanism simulations ✔️Robotic mechanism movements ✔️Construction/destruction animations ✔️3D Camera tracking and CGI 3D Architectural Rendering: ✔️Realistic interior or exterior rendering ✔️Realistic and concept 3D building animation ✔️Realistic architectural animation placed on drone video ✔️Realistic 360 degree panoramic renders and virtual tours Main software that I use in professional level: ✔️Unity ✔️Character Creator ✔️Iclone ✔️Substance Painter ✔️Cinema 4D ✔️Sketchup ✔️AutoCad ✔️Photoshop ✔️After Effects Render Engines that I use in professional level: ✔️Redshift ✔️Corona ✔️V-ray Secondary softwares that I can use: ✔️3DsMax ✔️ArchiCad ✔️Revit ✔️Lumion menos
Contratar OrhanAsan
-
Diseño gráfico, Producción de audio, Análisis de negocios, Consultoría Empresarial, Desarrollo EmpresarialWriting content, business consulting, researching for long term global eco system. Unlock your online potential with our curated freelancing services. From creative design to technical solutions, I offer a diverse range of talent to fuel your growth. Trust in our vetted professionals and streamlined collaboration...Writing content, business consulting, researching for long term global eco system. Unlock your online potential with our curated freelancing services. From creative design to technical solutions, I offer a diverse range of talent to fuel your growth. Trust in our vetted professionals and streamlined collaboration tools to elevate your digital presence. Discover endless possibilities for innovation and success with our reliable platform guiding your journey. A recent ads development you may try. Building a complete app for the described project requires detailed implementation across several components, including UI/UX, backend APIs, and database integration. Here's a detailed starter implementation using Flutter for cross-platform compatibility. This code provides foundational screens and features. For production-level deployment, you’d integrate APIs, backend logic, and advanced features. Project Structure css Copy code lib/ ├── main.dart ├── screens/ │ ├── customer/ │ │ ├── post_request_screen.dart │ │ ├── view_estimates_screen.dart │ │ ├── track_service_screen.dart │ │ ├── pricing_insights_screen.dart │ ├── contractor/ │ │ ├── registration_screen.dart │ │ ├── manage_requests_screen.dart │ │ ├── provide_estimates_screen.dart │ │ ├── lead_fees_screen.dart ├── widgets/ │ ├── custom_button.dart │ ├── custom_text_field.dart ├── services/ │ ├── api_service.dart │ ├── auth_service.dart │ ├── database_service.dart ├── models/ │ ├── user_model.dart │ ├── service_request_model.dart │ ├── estimate_model.dart └── utils/ ├── constants.dart ├── styles.dart Main Entry Point main.dart dart Copy code import 'package:flutter/material.dart'; import 'screens/customer/post_request_screen.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Construction Services', theme: ThemeData( primarySwatch: Colors.blue, ), home: PostRequestScreen(), ); } } Customer Module Post Service Request Screen (post_request_screen.dart) dart Copy code import 'package:flutter/material.dart'; class PostRequestScreen extends StatelessWidget { final TextEditingController descriptionController = TextEditingController(); final TextEditingController locationController = TextEditingController(); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Post a Service Request')), body: Padding( padding: const EdgeInsets.all(16.0), child: Column( children: [ TextField( controller: descriptionController, decoration: InputDecoration(labelText: 'Service Description'), ), TextField( controller: locationController, decoration: InputDecoration(labelText: 'Location'), ), SizedBox(height: 20), ElevatedButton( onPressed: () { // Send data to backend }, child: Text('Post Request'), ), ], ), ), ); } } View Estimates Screen (view_estimates_screen.dart) dart PS. Rest of the app development are not include here for the authentic validation. menos
Contratar tongowan
-
Welcome to honorable clients. Thanks for visiting! This is Lutfur, an experienced Motion Graphic Artist and one of the best ANIMATION men who produces 2D & 3D ANIMATION Videos and specializes in Video & Audio Editing. I’m also a team of Pro Voice Artists with more than 7+ years of experience and am committed to...Welcome to honorable clients. Thanks for visiting! This is Lutfur, an experienced Motion Graphic Artist and one of the best ANIMATION men who produces 2D & 3D ANIMATION Videos and specializes in Video & Audio Editing. I’m also a team of Pro Voice Artists with more than 7+ years of experience and am committed to delivering extraordinary quality. I'm connected with several other professional designers, editors, and animators who work with me continuously to create superb quality items, such as 2D/3D animation videos, audio-video editing, and voice recording. Having worked with multiple clients over the years, including multinational corporations and small businesses alike, I've developed strong communication skills that enable me to understand your requirements with ease and ensure they're met efficiently and effectively. Daily I serve: * Motion Graphic * 2D & 3D Animated Videos * Explainers / Explainer Videos * Whiteboard Animation Videos * Commercial & Promotional Videos * Logo Animation & Infographic Videos * Video Editing * Podcast & Audio Editing * Mix & Mastering * Voice-Over I value my clients and his/her projects. My creativity and professionalism ensure your project meets your vision. With unlimited revisions and a satisfaction guarantee. Let's work together and bring your ideas to life. Greetings! Lutfur R. menos
Contratar lutfur0413
-
Creative & Visual Solutions • 2D & 3D Animation – Explainer videos, product demos, architectural walkthroughs, cinematic visuals. • AI-Generated Animations – Fast, cost-effective storytelling powered by AI. • Product Visualization – Photorealistic renders, configurators, AR/VR product showcases. • Game Art & Assets –...Creative & Visual Solutions • 2D & 3D Animation – Explainer videos, product demos, architectural walkthroughs, cinematic visuals. • AI-Generated Animations – Fast, cost-effective storytelling powered by AI. • Product Visualization – Photorealistic renders, configurators, AR/VR product showcases. • Game Art & Assets – Environments, characters, props for Unity & Unreal projects. ________________________________________ Engineering & Product Development • Mechanical Design – CAD modeling, prototyping, structural/thermal analysis (ANSYS, SolidWorks, Abaqus). • Electronics & Firmware – PCB design, sensor integration, IoT hardware, DSP/ANC systems. • Industrial Product Development – From concept sketches to prototypes & manufacturing support. • Compliance & Testing – IEC, CE, FDA, EMC, thermal rise, and safety standards readiness. ________________________________________ Digital Development & Automation • Web & Mobile Apps – Full-stack development (React, Node, Flutter, Django). • Custom Automations – AI-powered workflows, lead generation bots, data parsing, CRMs. • SaaS & Platforms – MVP design to enterprise-grade SaaS builds. • E-Commerce & Portals – Secure, scalable platforms for products & services. ________________________________________ Immersive Tech (AR/VR/XR) • Unity & Unreal Development – Interactive configurators, simulations, training tools. • AR/VR Experiences – Metaverse zones, VR walkthroughs, mixed-reality demos. • Gamification – Logic puzzle games, virtual living rooms, multiplayer XR concepts. • 3D Configurators – Dental, automotive, architectural, and product-based solutions. ________________________________________ Specialized Offerings • Medical Animations & Devices – Patient education visuals, device simulations, multi-sensor health tech R&D. • EV & Energy Tech – Charger design, IEC compliance upgrades, IoT dashboards. • Crypto & FinTech Tools – SWIFT ISO 20022 compliant gateways, secure blockchain integrations. • Custom Hardware Builds – ANC headphones, IoT wearables, ASIC sockets, robotics. Best Regards, Ekarthaan menos
Contratar Ekarthaan
-
Hi, I am Sarabjot Singh - Cinematographer, Video Editor and Graphic designer. I am working as full time freelancer with great team and have my own Company under name of White Mascot Media.Hi, I am Sarabjot Singh - Cinematographer, Video Editor and Graphic designer. I am working as full time freelancer with great team and have my own Company under name of White Mascot Media. menos
Contratar sarabsandhudp
-
Hello, call me on chat and I see what I can do for you and your projects. Thanks!Hello, call me on chat and I see what I can do for you and your projects. Thanks! menos
Contratar freedaniel2
-
Bachelor of Software Engineering, Video and Audio expert, Advanced Level in English and Native Spanish Speaker, committed to work, responsible and punctual. ✅ +350 projects completed for big enterprises and international clients ✅ Unlimited revisions ✅ Full time freelancer ✅ Excellent Communication ✅ 100%...Bachelor of Software Engineering, Video and Audio expert, Advanced Level in English and Native Spanish Speaker, committed to work, responsible and punctual. ✅ +350 projects completed for big enterprises and international clients ✅ Unlimited revisions ✅ Full time freelancer ✅ Excellent Communication ✅ 100% satisfaction I will help you with any project related to: ✅ Software Engineering: Website Development, Mobile Apps, Database Administration, Data Analysis, Automations and more! ✅ Video: Video Editing, Animation and Design (2D & 3D), Whiteboard Videos, Motion Graphics and more! ✅ Design: Logos, posters, websites, social media content, brochures, presentations, and more! ✅ Audio: Audio Editing, Voice Over, Audio Production including Mixing and Mastering of Music (I also offer Promotion for Artists), Podcasts and more! Click on "Request Quote" and let's start working on your project! menos
Contratar Giovanni704