构建播放列表以在vlc中播放选定部分的媒体文件

时间:2015-04-18 05:52:08

标签: lua vlc

我有一个媒体文件列表(DVD VOB文件),我想只从文件列表中看一部分视频。

#! /bin/bash
export SOURCE_DIR=/path/to/dvds/dir
export DVD1=$SOURCE_DIR/dvd1/VIDEO_TS
export DVD2=$SOURCE_DIR/dvd2/VIDEO_TS
export DVD3=$SOURCE_DIR/dvd3/VIDEO_TS
export DVD4=$SOURCE_DIR/dvd4/VIDEO_TS
export FILE1=VTS_01_1.VOB
export FILE2=VTS_01_2.VOB
export FILE3=VTS_01_3.VOB
export FILE4=VTS_01_4.VOB

vlc --play-and-exit --start-time=348 --stop-time=355 $DVD1/$FILE1
vlc --play-and-exit --start-time=574 --stop-time=594 $DVD1/$FILE2
#... and so on ...

我想出了上面的脚本,它启动了一个vlc实例并播放了指定的start-timestop-time中的每个文件。这样可以正常工作,但在每个vlc --play-and-exit语句中都会旋转一个新的vlc实例,并且文件之间会出现明显的中断。

有没有办法将播放列表规则集成到vlc中,以便单个实例可以继续播放脚本文件中的所有视频?

可以假设我知道每个文件的start-timestop-time

1 个答案:

答案 0 :(得分:1)

我按照here的说明完成了这项工作。 VLC具有lua脚本支持。下面是我提出的脚本,它接收以.fixedseek扩展名结尾的文件。播放列表文件是一个csv文件,其中包含三列,其中包含file_path_urlstart_timestop_time e.g。

file:///path/to/dvds/dvd1/VIDEO_TS/VTS_01_3.VOB,348,355
file:///path/to/dvds/dvd2/VIDEO_TS/VTS_01_3.VOB,548,855
... and so on ...

脚本解析文件并播放从start_timestop_time

的每一行
-- fixedseek.lua
-- A compiled version of this file (.luac) should be put into the proper VLC playlist parsers directory.
-- In my ubuntu 14.04 vlc installation, it was: /usr/lib/vlc/lua/playlist/
-- For details, refer to:
-- http://wiki.videolan.org/Documentation:Play_HowTo/Building_Lua_Playlist_Scripts
--
-- The play list file format consists of three comma separated parts:
-- (file_path_url, start_time, stop_time)
-- e.g.
-- file:///path/to/dvds/dvd1/VIDEO_TS/VTS_01_3.VOB,348,355

-- The script below opens the file, seeks to start_time and plays until stop_time
-- and then moves on to next file in the playlist

function probe()
    -- tell VLC we will handle anything ending in ".fixedseek"
    return string.match(vlc.path, "%.fixedseek$")
end

function parse()
    -- VLC expects us to return a list of items, each item itself a list
    -- of properties
    playlist = {}

    while true do
       playlist_item = {}

       line = vlc.readline()

       if line == nil then
           break
    else vlc.msg.info(" Read line: '"..line.."'")
       end

-- parse playlist line into three tokens splitting on comma
values = {}
i=0
for word in string.gmatch(line, '([^,]+)') do
    values[i]=word
    i=i+1
end

vlc.msg.info(values[0])
vlc.msg.info(values[1])
vlc.msg.info(values[2])

       playlist_item.path = values[0]
       start_time = values[1]
       stop_time = values[2]

     vlc.msg.info("  Start is '"..tostring(start_time).."'")
     vlc.msg.info("  Stop is '"..tostring(stop_time).."'")

       -- a playlist item has another list inside of it of options
       playlist_item.options = {}
       table.insert(playlist_item.options, "start-time="..tostring(start_time))
       table.insert(playlist_item.options, "stop-time="..tostring(stop_time))
       table.insert(playlist_item.options, "fullscreen")

       -- add the item to the playlist
       table.insert( playlist, playlist_item )
    end

    return playlist
end
相关问题