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

124 天前
 EdsionRookie
支持多平台视频链接上传

产品主页
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
1699 次点击
所在节点    分享创造
5 条回复
Yuesh1
124 天前
https://imgur.com/a/1GESYsk


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

这个防控制台打开的方法也太拙劣了,检测逻辑就是两个:一个控制台高度阈值,一个开发者工具快捷键拦截。甚至因为 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();
}
});
}
}
```

说实话,开发者工具真没必要防吧,想看你接口我抓包也行,一万种方法。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://yangjunhui.monster/t/1110719

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX