V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
爱意满满的作品展示区。
EdsionRookie
V2EX  ›  分享创造

AI 视频自动剪辑,帮你节省视频制作流程至少 1 小时

  •  
  •   EdsionRookie · 11 天前 · 1137 次点击
    支持多平台视频链接上传

    产品主页
    https://bravoclip.com/

    AI 自动剪辑
    https://bravoclip.com/ai-viral-clip

    自动加字幕(免费)
    https://bravoclip.com/ai-caption

    自动翻译 40+语言字幕(免费)
    https://bravoclip.com/ai-translate

    转录视频成文本(免费)
    https://bravoclip.com/video-to-text

    AI 自动改写脚本(免费)
    https://bravoclip.com/ai-script-writer

    视频转 MP3 、GIF 等多种格式
    https://bravoclip.com/youtube-video-to-mp3-converter
    5 条回复    2025-02-11 17:51:10 +08:00
    Yuesh1
        1
    Yuesh1  
       11 天前
    https://imgur.com/a/1GESYsk


    我用的 arc 浏览器,为什么一直谈这个导致我的浏览器假死,需要退出才能使用?
    Wvg9eBo3U0c8BLd2
        2
    Wvg9eBo3U0c8BLd2  
       11 天前
    以后所有的内容创作都是 AI 输出的, 网络世界还有什么意思!
    EdsionRookie
        3
    EdsionRookie  
    OP
       11 天前
    @Yuesh1 最好用 Chrome
    EdsionRookie
        4
    EdsionRookie  
    OP
       11 天前
    @lolita89201 加快流程的工具,不是代替真人
    LeslieLeung
        5
    LeslieLeung  
       11 天前
    看到一楼的回复好奇试了下。

    这个防控制台打开的方法也太拙劣了,检测逻辑就是两个:一个控制台高度阈值,一个开发者工具快捷键拦截。甚至因为 arc 本身的布局,一打开就会触发检测。

    绕过方法:Arc 浏览器全屏,把开发者工具弹出方式改为单独窗口。

    ```
    checkConsoleOpen: function checkConsoleOpen() {
    var threshold = 160; // 自定义控制台高度阈值
    setInterval(function () {
    if (window.outerHeight - window.innerHeight > threshold || window.outerWidth - window.innerWidth > threshold) {
    alert("控制台已打开,禁止查看源代码!");
    window.location.reload(); // 可选:刷新页面或隐藏内容
    }
    }, 1000);
    }

    if (true) {
    if (localStorage.getItem('allowopenf12') != true && localStorage.getItem('allowopenf12') != 'true') {
    this.checkConsoleOpen();
    // 禁用右键菜单
    document.addEventListener('contextmenu', function (event) {
    return event.preventDefault();
    });
    document.addEventListener('keydown', function (event) {
    if (event.key === 'F12' ||
    // F12
    event.ctrlKey && event.shiftKey && event.key === 'I' ||
    // Ctrl+Shift+I
    event.ctrlKey && event.shiftKey && event.key === 'J' ||
    // Ctrl+Shift+J
    event.ctrlKey && event.key === 'U' // Ctrl+U
    ) {
    event.preventDefault();
    }
    });
    }
    }
    ```

    说实话,开发者工具真没必要防吧,想看你接口我抓包也行,一万种方法。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2709 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 12:49 · PVG 20:49 · LAX 04:49 · JFK 07:49
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.