贝斯特游戏大厅官网入口

视频变换(视频教程)

最新更新日期:Oct-31-2023

上页:

评分本页 :

概述

本教程展示使用电子商务视频构建节点js显示产品以不同方式使用逐步指南将显示如何链化变换,同时加一变换

视频教程


Video Player is loading.
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time -:-
 
1x
  • descriptions off, selected
  • subtitles off, selected
    Next upNext up:

    视频由云情视频播放器带给你嵌入自有脱机

    教程内容

    本教程介绍以下题目点击时标跳转到视频那部分

    导 言

    跳转到视频中此点0:14 视频中,你可以看到云化变换和AI能力 如何帮助你编程编辑视频

    获取存储云内视频发送URL

    跳转到视频中此点0:25 使用URLssSDK方法取资产公有身份证并返回交付URL指定视频公开标识并设置资源类型视频播放.
    Nodejs
    (async () => {
    let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video"
        }
    })();

    步骤1-添加变换修改并调整视频大小

    跳转到视频中此点1:10 裁剪并调整视频大小变换对象.指定a持续时间5秒宽度为250像素 方位比为3:4设置裁剪参数切换填充以便您的视频裁剪适应指定的维度而不扭曲
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", width: 250 },
            { duration: "5"}
          ],
        });
    })();

    步骤2-修改视频焦点

    跳转到视频中此点1:54 居中表情视频设置重力参数化在这种情况下,我们将设置北边集中视频向顶端
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { duration: "5"},
          ],
        });
    })();

    步骤3-归并另一视频

    跳转到视频中此点2:23 剖析另一视频,指定公有标识为叠加值并使用复数标志表示它应该分解,而不是覆盖嵌入式视频必须重排到与基视频相同的维度添加持续时间参数修饰卷积视频上头层位应用标志显示重叠变换结束
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { duration: "5"},
            { duration: "5", flags: "splice", 
                overlay: "video:docs:video_features_tutorial:makeup"},
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { flags: "layer_apply" },
        });
    })();

    步骤4-添加标题

    跳转到视频中此点3点01分 添加存储于云端的SRT文件并注明公有标识设置资源类型字幕编程结束叠加转换层应用国旗
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { duration: "5"},
            { duration: "5", flags: "splice", 
                overlay: "video:docs:video_features_tutorial:makeup"},
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { overlay: {resource_type: "subtitles", 
                public_id: "docs/video_features_tutorial/captions.srt"}},
            { flag: "layer_apply" }
          ],
        });
    })();

    步骤5-添加后台音乐

    跳转到视频中此点3点16分 添加存储云性音乐剪片作为叠加并具体说明公有标识结束重叠转换层位应用国旗
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { duration: "5"},
            { duration: "5", flags: "splice", 
                overlay: "video:docs:video_features_tutorial:makeup"},
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { flags: "layer_apply" },
            { overlay: "video:docs:video_features_tutorial:romeo_and_juliet" },
                    { flags: "layer_apply"},
            { overlay: {resource_type: "subtitles", 
                public_id: "docs/video_features_tutorial/captions.srt"}},
            { flag: "layer_apply" }
          ],
        });
    })();

    步骤6-加水印

    跳转到视频中此点3点39分 印上视频并覆盖云内保存为水印的图像设置右上角重力参数切换东北右上边缘值为10像素x:10y:10)水印大小为40像素宽度并设置不透明度至80%结束重叠转换层位应用国旗完成代码如下:
    Nodejs
    (async () => {
      let videoURL = cloudinary.url("docs/video_features_tutorial/hair", {
          resource_type: "video",
          transformation: [
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { duration: "5"},
            { duration: "5", flags: "splice", 
                overlay: "video:docs:video_features_tutorial:makeup"},
            { aspect_ratio: "3:4", crop: "fill", gravity: "north", width: 250 },
            { flags: "layer_apply" },
            { overlay: "video:docs:video_features_tutorial:romeo_and_juliet" },
                    { flags: "layer_apply"},
            { overlay: "cloudinary_icon"},
            { width: 40, x:10, y:10 },
                    { opacity: 80 },
            { flags: "layer_apply", gravity: "north_east"},
            { overlay: {resource_type: "subtitles", 
                public_id: "docs/video_features_tutorial/captions.srt"}},
            { flag: "layer_apply" }
          ],
        });
    })();

    更多信息

    跳转到视频中此点4: 44 查查我们的变换引用列表所有可应用视频变换滤镜页面仅查看视频相关变换 使用资产类型滤镜页面右上角看ode.jsSDK文档,特别是快速启动起步运行分钟

    继续学习

    相关题目

    狦尺舧 砛尺舧

    复杂变换
    组合变换生成3D画布
    命名变换
    简化并规范复杂交付URL
    优化技巧
    提供优化图像提示

    云学院

    查查云学院免费自步云式课程开发者或DAM专题或注册正规教程虚拟或现场课程

    反馈发送