• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java Seek类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.fourthline.cling.support.avtransport.callback.Seek的典型用法代码示例。如果您正苦于以下问题:Java Seek类的具体用法?Java Seek怎么用?Java Seek使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Seek类属于org.fourthline.cling.support.avtransport.callback包,在下文中一共展示了Seek类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: onVideoSeek

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
/**
 * 视频跳转
 */
public void onVideoSeek(int schedule) {
    String seekToTime = generateTime(schedule);
    ActionCallback seek = new Seek(avTransportService, seekToTime) {

        @Override
        public void failure(ActionInvocation arg0, UpnpResponse arg1, String arg2) {
            onFailureCallBack(SEEK, arg2);
        }

        @Override
        public void success(ActionInvocation invocation) {
            onSuccessCallBack(SEEK);
        }
    };
    mUpnpService.getControlPoint().execute(seek);
}
 
开发者ID:hezhubo,项目名称:HPlayer,代码行数:20,代码来源:UpnpControlSet.java


示例2: seek

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
public void seek(SeekMode mode, String target) {
	Seek callback = new Seek(mAvTransportService, mode, target) {

		@SuppressWarnings("rawtypes")
		@Override
		public void failure(ActionInvocation actionInvocation,
				UpnpResponse response, String message) {
			// TODO Auto-generated method stub
			Log.e(LOG_TAG, "Seek failed! the reason is:" + message
					+ "the response details is:" + response);
			Utils.showToast(mContext, message);
		}
	};
	if (mAvTransportService != null)
		mAndroidUpnpService.getControlPoint().execute(callback);
}
 
开发者ID:sky24987,项目名称:UPlayer,代码行数:17,代码来源:Controller.java


示例3: commandSeek

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
@Override
public void commandSeek(String relativeTimeTarget)
{
	if (getAVTransportService() == null)
		return;

	controlPoint.execute(new Seek(getAVTransportService(), relativeTimeTarget) {
		// TODO fix it, what is relativeTimeTarget ? :)

		@Override
		public void success(ActionInvocation invocation)
		{
			Log.v(TAG, "Success seeking !");
			// TODO update player state
		}

		@Override
		public void failure(ActionInvocation arg0, UpnpResponse arg1, String arg2)
		{
			Log.w(TAG, "Fail to seek ! " + arg2);
		}
	});
}
 
开发者ID:trishika,项目名称:DroidUPnP,代码行数:24,代码来源:RendererCommand.java


示例4: seekTo

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
@Override
@SuppressLint("SimpleDateFormat")
public void seekTo(long millisecondsFromStart){
    if(getDevice() == null) {
        Log.d(getClass().getName(),
                "No receiver device found: "
                        + deviceId);
        return;
    }
    Service<?, ?> service = getUpnpClient().getAVTransportService(getDevice());
    if (service == null) {
        Log.d(getClass().getName(),
                "No AVTransport-Service found on Device: "
                        +getDevice().getDisplayString());
        return;
    }
    Log.d(getClass().getName(), "Action seek ");
    final ActionState actionState = new ActionState();
    actionState.actionFinished = false;
    SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
    String relativeTimeTarget =dateFormat.format(millisecondsFromStart);
    Seek seekAction = new Seek(new UnsignedIntegerFourBytes(id),service, relativeTimeTarget) {
        @Override
        public void success(ActionInvocation invocation)
        {
            //super.success(invocation);
            Log.d(getClass().getName(), "success seek");
        }
        @Override
        public void failure(ActionInvocation arg0, UpnpResponse arg1, String arg2)
        {
            Log.d(getClass().getName(), "fail seek");
        }
    };
    getUpnpClient().getControlPoint().execute(seekAction);

}
 
开发者ID:theopenbit,项目名称:yaacc-code,代码行数:39,代码来源:SyncAVTransportPlayer.java


示例5: seekTo

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
@Override
@SuppressLint("SimpleDateFormat")
public void seekTo(long millisecondsFromStart){
    if(getDevice() == null) {
        Log.d(getClass().getName(),
                "No receiver device found: "
                        + deviceId);
        return;
    }
    Service<?, ?> service = getUpnpClient().getAVTransportService(getDevice());
    if (service == null) {
        Log.d(getClass().getName(),
                "No AVTransport-Service found on Device: "
                        +getDevice().getDisplayString());
        return;
    }
    Log.d(getClass().getName(), "Action seek ");
    final ActionState actionState = new ActionState();
    actionState.actionFinished = false;
    SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
    String relativeTimeTarget =dateFormat.format(millisecondsFromStart);
    Seek seekAction = new Seek(service, relativeTimeTarget) {
        @Override
        public void success(ActionInvocation invocation)
        {
            //super.success(invocation);
            Log.d(getClass().getName(), "success seek");
        }
        @Override
        public void failure(ActionInvocation arg0, UpnpResponse arg1, String arg2)
        {
            Log.d(getClass().getName(), "fail seek");
        }
    };
    getUpnpClient().getControlPoint().execute(seekAction);

}
 
开发者ID:theopenbit,项目名称:yaacc-code,代码行数:39,代码来源:AVTransportPlayer.java


示例6: changePosition

import org.fourthline.cling.support.avtransport.callback.Seek; //导入依赖的package包/类
@Override
public void changePosition(int seconds) {
	SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
	df.setTimeZone(TimeZone.getTimeZone("UTC"));
	controlPoint.execute(new Seek(getTransportService(), SeekMode.REL_TIME, df.format(new Date(seconds * 1000))) {
		@SuppressWarnings("rawtypes")
		@Override
		public void failure(ActionInvocation invocation, UpnpResponse operation, String defaultMessage) {
			Log.w(TAG, "Seek failed: " + defaultMessage);
		}
	});
}
 
开发者ID:popeen,项目名称:Popeens-DSub,代码行数:13,代码来源:DLNAController.java



注:本文中的org.fourthline.cling.support.avtransport.callback.Seek类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TorException类代码示例发布时间:2022-05-23
下一篇:
Java ChatType类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap