EDITE 3x MAIS RÁPIDO COM ALGUNS CLIQUES Seu assistente de edição com IA: corrige erros, remove silêncios, pré-seleciona b-rolls e entrega um projeto pronto para editar no seu editor preferido.
ECONOMIZE TEMPO E OTIMIZE SEU FLUXO DE TRABALHO "Antes eu pegava vídeo bruto de 10, até 15 minutos e demorava até mais que uma hora para cortar os erros de gravação para ter um vídeo final de 1 minuto e meio. Agora eu faço esse processo em menos de 5 minutos e ele ainda me ajuda com outras tarefas da edição, pra poder focar no que realmente vai diferenciar meus vídeos"
- Thiago Souza, editor de Direct Response
Compatível com o que você já usa Total compatibilidade com Premiere Não é preciso mudar seu fluxo de trabalho. O AutoEdit PRO entrega um projeto pronto em XML para abrir direto no Premiere
✔️ Direto do seu computador
✔️ Gera legendas automaticamente
✔️ Exporta cortes e b-roll em XML pronto para edição
APENAS 3 PASSOS Importe seu vídeo e o roteiro
Selecione seus arquivos e deixe o AutoEdit cuidar do resto.
O AutoEdit limpa e organiza tudo
Erros e pausas removidos, legendas geradas, b-rolls sugeridos.
Finalize no seu editor
Revise o resultado, exporte o XML no Premiere e dê seu toque criativo final.
Plano Pro R$ 23,57 / 12x / anual
Processamento ilimitado de vídeo Edição automática com IA Exportação vídeo ou XML Suporte aos principais editores Assinar Agora Se já fez o cadastro e a assinatura, faça o download do aplicativo clicando no botão abaixo
Perdeu a sua senha? Clique no botão abaixo
Trocar senha
(function() { var BASE = "https://mainserver-01q3.onrender.com"; function abrir() { document.getElementById("ts-overlay").classList.add("active"); } function fechar() { document.getElementById("ts-overlay").classList.remove("active"); ["ts-email","ts-atual","ts-nova","ts-conf"].forEach(function(id) { document.getElementById(id).value = ""; }); document.getElementById("ts-forca").style.display = "none"; alerta("",""); } function alerta(msg, tipo) { var b = document.getElementById("ts-alert"); if (!msg) { b.style.display = "none"; b.className = ""; return; } b.className = tipo; b.style.display = "block"; b.textContent = msg; } function olho(inputId, iconId) { var i = document.getElementById(inputId); var ic = document.getElementById(iconId); if (i.type === "password") { i.type = "text"; ic.className = "ti ti-eye-off ts-eye"; } else { i.type = "password"; ic.className = "ti ti-eye ts-eye"; } } function forca() { var v = document.getElementById("ts-nova").value; var box = document.getElementById("ts-forca"); if (!v) { box.style.display = "none"; return; } box.style.display = "block"; var s = 0; if (v.length >= 8) s++; if (/[A-Z]/.test(v) && /[a-z]/.test(v)) s++; if (/[0-9!@#$%]/.test(v)) s++; var cores = ["#E24B4A","#EF9F27","#639922"]; var nomes = ["Fraca","Media","Forte"]; ["ts-b1","ts-b2","ts-b3"].forEach(function(id, i) { document.getElementById(id).style.background = i < s ? cores[s-1] : "#ddd"; }); document.getElementById("ts-forca-label").textContent = nomes[s-1] || ""; } function salvar() { alerta("",""); var email = document.getElementById("ts-email").value.trim(); var atual = document.getElementById("ts-atual").value; var nova = document.getElementById("ts-nova").value; var conf = document.getElementById("ts-conf").value; if (!email || !atual || !nova || !conf) { alerta("Preencha todos os campos.","erro"); return; } if (nova !== conf) { alerta("As senhas nao coincidem.","erro"); return; } if (nova.length < 6) { alerta("A nova senha deve ter pelo menos 6 caracteres.","erro"); return; } var btn = document.getElementById("ts-submit"); btn.disabled = true; btn.textContent = "Salvando..."; var form = new URLSearchParams(); form.append("username", email); form.append("password", atual); fetch(BASE + "/login", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded" }, body: form.toString() }) .then(function(r) { if (!r.ok) throw new Error("Email ou senha incorretos."); return r.json(); }) .then(function(d) { return fetch(BASE + "/api/trocar-senha", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer " + d.access_token }, body: JSON.stringify({ senha_atual: atual, nova_senha: nova }) }); }) .then(function(r) { if (!r.ok) throw new Error("Erro ao trocar senha."); alerta("Senha alterada com sucesso!","sucesso"); setTimeout(fechar, 1500); }) .catch(function(e) { alerta(e.message || "Erro de conexao.","erro"); }) .finally(function() { btn.disabled = false; btn.textContent = "Salvar nova senha"; }); } document.getElementById("ts-open").addEventListener("click", abrir); document.getElementById("ts-close").addEventListener("click", fechar); document.getElementById("ts-submit").addEventListener("click", salvar); document.getElementById("ts-nova").addEventListener("input", forca); document.getElementById("ts-eye1").addEventListener("click", function() { olho("ts-atual","ts-eye1"); }); document.getElementById("ts-eye2").addEventListener("click", function() { olho("ts-nova","ts-eye2"); }); document.getElementById("ts-eye3").addEventListener("click", function() { olho("ts-conf","ts-eye3"); }); document.getElementById("ts-overlay").addEventListener("click", function(e) { if (e.target.id === "ts-overlay") fechar(); }); })(); PERGUNTAS FREQUENTES Funciona em quais editores? Nosso sistema funciona principalmente no Adobe Premiere Pro, e exporta MP4, podendo ser usado com outros editores de sua preferência.
Posso pedir reembolso? Sim. Você por lei pode pedir reembolso em até 7 dias, e se não estiver funcionando em até 30 dias.
async function handleBrSignupSubmit(event) { event.preventDefault(); const form = event.target; const statusMessage = form.parentElement.querySelector('.status-message-br'); const email = form.querySelector('.email-input-br').value; const password = form.querySelector('.password-input-br').value; const region = form.querySelector('.region-input-br').value; const SERVER_URL = "https://mainserver-01q3.onrender.com"; statusMessage.textContent = 'Processando...'; statusMessage.className = 'status-message-br info'; statusMessage.style.display = 'block'; try { const response = await fetch(`${SERVER_URL}/api/create-checkout-session`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email, password, region }) }); const data = await response.json(); if (!response.ok) { statusMessage.textContent = `Erro: ${data.detail || 'Não foi possível processar.'}`; statusMessage.className = 'status-message-br error'; } else { statusMessage.textContent = 'Redirecionando para o pagamento...'; window.location.href = data.checkout_url; } } catch (error) { statusMessage.textContent = 'Erro de conexão. Tente novamente.'; statusMessage.className = 'status-message-br error'; } } document.addEventListener('DOMContentLoaded', function() { const brForm = document.querySelector('.signup-form-br'); if (brForm) { brForm.addEventListener('submit', handleBrSignupSubmit); } }); Você está quase lá Finalize o pagamento e comece a acelerar suas edições hoje mesmo. Se já pagou, você já está o pronto para começar!!! Você receberá um email com sua senha temporária, volte aqui no site para mudar sua senha após o primeiro acesso. O software acompanha um manual em PDF, na área de membros da Hotmart você tem acesso à tutoriais detalhados de como funciona.
Obrigado Você já está o pronto para começar!!! Você receberá um email com sua senha temporária, volte aqui no site para mudar sua senha após o primeiro acesso. O software acompanha um manual em PDF, na área de membros da Hotmart você tem acesso à tutoriais detalhados de como funciona.
EDIT 3X FASTER WITH A FEW CLICKS Your AI editing assistant: fixes mistakes, removes silences, pre-selects b-rolls, and delivers a project ready to edit in your favorite editor.
SAVE TIME AND OPTIMIZE YOUR WORKFLOW "Before, I would take a raw video of 10, even 15 minutes, and it would take me more than an hour to cut out the recording mistakes to get a final one-and-a-half-minute video. Now I do this process in less than 5 minutes , and it even helps me with other editing tasks, so I can focus on what will really make my videos stand out."
- Thiago Souza, Direct Response Editor
Compatible with your favorite software No need to change your workflow. AutoEdit PRO delivers a ready XML project to open directly in Premiere, DaVinci, or Final Cut.
✔️ Directly from your computer
✔️ Automatically generates captions
✔️ Exports cuts and b-roll in an XML ready for editing
Verified safe by top industry leaders: Microsoft, Google, and Kaspersky.
✔️ Scanned and approved by Microsoft, Google, and Kaspersky engines.
✔️ Clean and safe installation, no adware or unwanted programs.
✔️ Verified Integrity: File hash checked and approved.
JUST 3 STEPS Import your video and the script
Select your files and let AutoEdit handle the rest.
AutoEdit cleans and organizes everything
Errors and pauses removed, captions generated, b-rolls suggested.
Finalize in your editor
Review the result, export the XML in Premiere, DaVinci, or your favorite editor, and add your final creative touch.
Pro Plan $19.87 / month
Up to 40h of video processing Automatic editing with AI Video or XML export Support for major editors Subscribe Now If you have already registered and subscribed, download the app by clicking the button below.
FAQ Which editors does it work with? Our system works with the main editors on the market that accept XML file exports, such as Adobe Premiere, DaVinci Resolve, Final Cut Pro, and CapCut.
Can I cancel anytime? Yes. Access is through a monthly subscription, with no long-term commitment or cancellation fees. You can cancel at any time directly from your user dashboard.
async function handleUsSignupSubmit(event) { event.preventDefault(); const form = event.target; const statusMessage = form.parentElement.querySelector('.status-message-us'); const emailInput = form.querySelector('.email-input-us'); const passwordInput = form.querySelector('.password-input-us'); const regionInput = form.querySelector('.region-input-us'); const selectedRegion = regionInput.value; const email = emailInput.value; const password = passwordInput.value; const SERVER_URL = "https://mainserver-01q3.onrender.com"; statusMessage.textContent = 'Processing...'; statusMessage.className = 'status-message-us info'; statusMessage.style.display = 'block'; try { const response = await fetch(`${SERVER_URL}/api/create-checkout-session`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email: email, password: password, region: selectedRegion }) }); const data = await response.json(); if (!response.ok) { statusMessage.textContent = `Error: ${data.detail || 'Could not process.'}`; statusMessage.className = 'status-message-us error'; } else { statusMessage.textContent = 'Redirecting to payment...'; window.location.href = data.checkout_url; } } catch (error) { statusMessage.textContent = 'Server connection error. Try again.'; statusMessage.className = 'status-message-us error'; } } document.addEventListener('DOMContentLoaded', function() { const usForm = document.querySelector('.signup-form-us'); if (usForm) { usForm.addEventListener('submit', handleUsSignupSubmit); } }); Thank You If you have already registered and subscribed, download the app by clicking the button below.