github项目地址:https://github.com/zhangyanhua0913/Short-Video-Link--Homepage-Link-Parsing-and-Caption-Extraction

接口源码文档:http://92k.fun/908

公用key :  sk-123456   (免费的,不要无节制的用,尊重开发者)

  • 接口名称: 单视频解析 

  • 接口地址: http://api6.92k.fun/v1/watermarke/parses_DZP

  • 请求方法: POST

  • 请求参数:

    • link (str): 视频链接

    • key (str): 设备密钥

  • 响应参数:

    • title (str): 视频标题

    • videoSrc (str): 视频源地址

    • height (int): 视频高度

    • width (int): 视频宽度

    • duration (str): 视频时长

    • userName (str): 用户名

    • viewCount (int): 观看次数

    • commentCount (int): 评论数

    • linkCount (int): 分享数

    • coverUrls (list): 封面图URL列表

    • imageSrc (str): 图片源地址

    • music (str): 背景音乐

    • imageAtlas (list): 图片集

    • description (str): 视频描述

    • state (int): 状态码

    • link (str): 视频链接

    • jifen_info (dict): 积分信息

      • consumed_points (int): 消耗积分

      • status (str): 状态信息

      • time (str): 时间戳

  • 示例请求:

    
      

    { "link": "https://www.douyin.com/video/12345", "key": "your_device_key" }

    • 示例响应:

      
        

      { "title": "视频标题", "videoSrc": "https://video.douyin.com/12345.mp4", "height": 1080, "width": 1920, "duration": "5:30", "userName": "抖音用户", "viewCount": 1000, "commentCount": 50, "linkCount": 200, "coverUrls": ["https://cover.douyin.com/12345.jpg"], "imageSrc": "https://image.douyin.com/12345.jpg", "music": "背景音乐", "imageAtlas": [{"imageSrc": "https://image.douyin.com/12345_1.jpg"}], "description": "视频描述", "state": 1, "link": "https://www.douyin.com/video/12345", "jifen_info": { "consumed_points": 1, "status": "老用户,积分过期时间:2023-12-31 23:59:59", "time": "2023-10-01 12:00:00" } }


      1. 短视频提取文案接口

      1. 语音识别

      单作品提取文案

      • 接口名称: 单作品提取文案

      • 接口地址: http://api6.92k.fun/v1/api/transcribe/dzp_wa

      • 请求方法: POST

      • 请求参数:

        • key (str): 设备密钥

        • link (str): 视频链接

      • 响应参数:

        • title (str): 视频标题

        • videoSrc (str): 视频源地址

        • height (int): 视频高度

        • width (int): 视频宽度

        • duration (str): 视频时长

        • userName (str): 用户名

        • viewCount (int): 观看次数

        • commentCount (int): 评论数

        • linkCount (int): 分享数

        • coverUrls (list): 封面图URL列表

        • imageSrc (str): 图片源地址

        • music (str): 背景音乐

        • imageAtlas (list): 图片集

        • description (str): 视频描述

        • state (int): 状态码

        • link (str): 视频链接

        • jifen_info (dict): 积分信息

          • jifen_xiaohao (int): 消耗积分

          • mac (str): 设备标识

          • status (str): 状态信息

          • remaining_points (int): 剩余积分

          • time (str): 时间戳

      • 示例请求:

        
          

        { "key": "your_device_key", "link": "https://www.douyin.com/video/12345" }

        • 示例响应:

          
            

          { "title": "视频标题", "videoSrc": "https://video.douyin.com/12345.mp4", "height": 1080, "width": 1920, "duration": "5:30", "userName": "抖音用户", "viewCount": 1000, "commentCount": 50, "linkCount": 200, "coverUrls": ["https://cover.douyin.com/12345.jpg"], "imageSrc": "https://image.douyin.com/12345.jpg", "music": "背景音乐", "imageAtlas": [{"imageSrc": "https://image.douyin.com/12345_1.jpg"}], "description": "视频描述", "state": 1, "link": "https://www.douyin.com/video/12345", "jifen_info": { "jifen_xiaohao": 1, "mac": "your_device_key", "status": "老用户", "remaining_points": 99, "time": "2023-10-01 12:00:00" } }

          1. 字幕识别
          1. 主页视频解析

          • 接口名称: 主页视频解析详细 

          • 接口地址: http://api6.92k.fun/v1/api/videos_zhuye_2

          • 请求方法: POST

          • 请求参数:

            • link (str): 主页链接

            • extract_count (int): 提取的视频数量

            • key (str): 设备密钥

          • 响应参数:

            • code (int): 状态码

            • msg (str): 消息

            • data (dict): 解析结果

              • linkPlatform (str): 平台名称(如:douyin, kuaishou)

              • descExplainMsg (str): 描述信息

              • author (dict): 作者信息

                • nickname (str): 用户昵称

                • avatar (str): 头像URL

              • aweme_list (list): 视频列表

                • aweme_id (str): 视频ID

                • title (str): 视频标题

                • videoSrc (str): 视频源地址

                • height (int): 视频高度

                • width (int): 视频宽度

                • duration (str): 视频时长

                • userName (str): 用户名

                • viewCount (int): 观看次数

                • commentCount (int): 评论数

                • linkCount (int): 分享数

                • coverUrls (list): 封面图URL列表

                • imageSrc (str): 图片源地址

                • imageAtlas (list): 图片集

                • awemeLink (str): 视频链接

            • count (int): 视频数量

            • jifen_info (dict): 积分信息

              • consumed_points (int): 消耗积分

              • status (str): 状态信息

              • time (str): 时间戳

          • 示例请求:

            
              

            { "link": "https://www.douyin.com/user/12345", "extract_count": 5, "key": "your_device_key" }

            • 示例响应:

              
                

              { "code": 1, "msg": "解析成功", "data": { "linkPlatform": "douyin", "descExplainMsg": "", "author": { "nickname": "抖音用户", "avatar": "https://avatar.douyin.com/12345.jpg" }, "aweme_list": [ { "aweme_id": "12345", "title": "视频标题1", "videoSrc": "https://video.douyin.com/12345.mp4", "height": 1080, "width": 1920, "duration": "5:30", "userName": "抖音用户", "viewCount": 1000, "commentCount": 50, "linkCount": 200, "coverUrls": ["https://cover.douyin.com/12345.jpg"], "imageSrc": "https://image.douyin.com/12345.jpg", "imageAtlas": [{"imageSrc": "https://image.douyin.com/12345_1.jpg"}], "awemeLink": "https://www.douyin.com/video/12345" } ] }, "count": 1, "jifen_info": { "consumed_points": 0, "status": "包月用户,套餐过期时间:2023-12-31 23:59:59", "time": "2023-10-01 12:00:00" } }


              1. 主页视频提取文案

              1. 语音识别
              1. 字幕识别

              主页视频解析

              • 接口名称: 主页视频解析

              • 接口地址: http://api6.92k.fun/v1/run-workflow_zhuye_zimu_1

              • 请求方法: POST

              • 请求参数:

                • zhu_URL (str): 主页URL

                • Num (int): 提取的视频数量

                • key (str): 设备密钥

              • 响应参数:

                • platform (str): 平台名称(如:douyin, kuaishou)

                • status (str): 请求状态(如:success, error)

                • data (dict): 解析结果

                  • account_info (dict): 账号信息

                    • nickname (str): 用户昵称

                    • jifen_shenyu (int): 剩余积分

                    • jifen_xiaohao (int): 消耗积分

                  • videos (list): 视频列表

                    • title (str): 视频标题

                    • aweme_link (str): 视频链接

                    • video_src (str): 视频源地址

                    • duration_minutes (str): 视频时长

                    • formatted_text (str): 格式化文案

                    • srt (str): 字幕文件

              • 示例请求:

                
                  

                { "zhu_URL": "https://www.douyin.com/user/12345", "Num": 5, "key": "your_device_key" }

                • 示例响应:

                  
                    

                  { "platform": "douyin", "status": "success", "data": { "account_info": { "nickname": "抖音用户", "jifen_shenyu": 100, "jifen_xiaohao": 1 }, "videos": [ { "title": "视频标题1", "aweme_link": "https://www.douyin.com/video/12345", "video_src": "https://video.douyin.com/12345.mp4", "duration_minutes": "5:30", "formatted_text": "这是视频的文案内容", "srt": "1\n00:00:00,000 --> 00:00:05,000\n这是视频的字幕" } ] } }

                  Logo

                  有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

                  更多推荐