解决 PasLibVlc 不能实现 TitleShow:=false 问题, 即关闭--no-video-title-show字幕

在使用最新版本 libvlc 2.0 版本时,我收集了不少调用 libvcl 的资料。

最后还是觉得 PasLibVlc 最好使用,开源又支持 FreePascal。

但发现PasLibVlc最近没怎么更新,使得在 libvlc2.0 上连设置 --no-video-title-show 的功能都出问题。应该是  libvlc2.0 的新接口作变动造成。

经过分析后,只要在 PasLibVlcClassUnit.pas 248行,修改以下内容即可消除那个字幕问题:

function TPasLibVlc.GetHandle() : libvlc_instance_t_ptr;
var
  args : array[0..2] of PAnsiChar;
begin
  Result := NIL;
  if (FHandle = NIL) then
  begin
    if (Path <> '') then
    begin
      libvlc_dynamic_dll_init_with_path(System.UTF8Encode(Path));
      if (libvlc_dynamic_dll_error <> '') then libvlc_dynamic_dll_init();
    end
    else
    begin
      libvlc_dynamic_dll_init();
    end;
    if (libvlc_dynamic_dll_error <> '') then exit;

    args[0] := PAnsiChar(libvlc_dynamic_dll_path);
    args[1] := ‘--no-video-title-show’;//'--ignore-config';
    args[2] := NIL;
    FHandle := libvlc_new(2, @args);
  end;
  Result := FHandle;
end;

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值