搜索

知识库

当前位置:
首页
/
/
脚本示例:将*后一次录制添加到 vMix 作为输入

脚本示例:将*后一次录制添加到 vMix 作为输入

  • 分类:知识库
  • 作者:
  • 来源:
  • 发布时间:2022-05-17
  • 访问量:0

【概要描述】

脚本示例:将*后一次录制添加到 vMix 作为输入

【概要描述】

  • 分类:知识库
  • 作者:
  • 来源:
  • 发布时间:2022-05-17
  • 访问量:0
详情
以下示例代码使用 vMix 4K 和 Pro 版本中的 vMix 脚本功能。
 
代码默认在默认录音文件夹 (Documents\vMixStorage) 中查找新的 MP4 录音
 

 

        Dim szExt As String = ".mp4"
        Dim szFolder As String = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments) & "\vmixstorage"
        Dim szLatestFile As String = ""
        Dim dLatestFile As Date = Nothing
        For Each szFile As String In System.IO.Directory.GetFiles(szFolder)
            Dim fi As New System.IO.FileInfo(szFile)
            If fi.Extension = szExt Then
                If fi.LastWriteTime > dLatestFile Then
                    szLatestFile = szFile
                    dLatestFile = fi.LastWriteTime
                End If
            End If
        Next
        If System.IO.File.Exists(szLatestFile) Then
            API.Function("AddInput", Value:="Video|" & szLatestFile)
        End If

 

 
 
 
 
更新时间:2021 年 1 月 20 日,星期三,上​​午 10:57:11

扫二维码用手机看

推荐新闻

脚本示例:将*后一次录制添加到 vMix 作为输入

  • 分类:知识库
  • 作者:
  • 来源:
  • 发布时间:2022-05-17
  • 访问量:0

【概要描述】

脚本示例:将*后一次录制添加到 vMix 作为输入

【概要描述】

  • 分类:知识库
  • 作者:
  • 来源:
  • 发布时间:2022-05-17
  • 访问量:0
详情
以下示例代码使用 vMix 4K 和 Pro 版本中的 vMix 脚本功能。
 
代码默认在默认录音文件夹 (Documents\vMixStorage) 中查找新的 MP4 录音
 

 

        Dim szExt As String = ".mp4"
        Dim szFolder As String = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments) & "\vmixstorage"
        Dim szLatestFile As String = ""
        Dim dLatestFile As Date = Nothing
        For Each szFile As String In System.IO.Directory.GetFiles(szFolder)
            Dim fi As New System.IO.FileInfo(szFile)
            If fi.Extension = szExt Then
                If fi.LastWriteTime > dLatestFile Then
                    szLatestFile = szFile
                    dLatestFile = fi.LastWriteTime
                End If
            End If
        Next
        If System.IO.File.Exists(szLatestFile) Then
            API.Function("AddInput", Value:="Video|" & szLatestFile)
        End If

 

 
 
 
 
更新时间:2021 年 1 月 20 日,星期三,上​​午 10:57:11

扫二维码用手机看

新浪微博

关注@vMixchina

VMIX

官方微信公众号

VMIX

新浪微博

关注@vMixhd

官方微信公众号

gotop