android媒体在二级设备上呈现和播放

2024-04-23 01:08

本文主要是介绍android媒体在二级设备上呈现和播放,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

public class PresentationWithMediaRouterActivity extends Activity {private final String TAG = "PresentationWithMediaRouterActivity";// MediaRouter用于和MediaRouterService交互一起管理多媒体的播放行为,并维护当前已经配对上的remote// display设备,包括Wifi diplay、蓝牙A2DP设备、chromecast设备。private MediaRouter mMediaRouter;// MediaRouter提供了快速获得系统中用于演示(presentations)默认显示设备的方法。private DemoPresentation mPresentation;private GLSurfaceView mSurfaceView;private TextView mInfoTextView;private boolean mPaused;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);/** 获取到媒体路由,当媒体路由被选择或取消选择或者路由首选的presentation显示屏幕发生变化时,* 它都会发送通知消息。一个应用程序可以非常简单通过地观察这些通知消息来自动地在首选的presentation* 显示屏幕上显示或隐藏一个presentation。*/mMediaRouter = (MediaRouter) getSystemService(Context.MEDIA_ROUTER_SERVICE);setContentView(R.layout.presentation_with_media_router_activity);mSurfaceView = (GLSurfaceView) findViewById(R.id.surface_view);// 设置我们要渲染的图形为CubeRenderermSurfaceView.setRenderer(new CubeRenderer(false));mInfoTextView = (TextView) findViewById(R.id.info);}@Overrideprotected void onResume() {super.onResume();/*** 注册一个具体的MediaRouter.Callback回调对象,并用来启动与特定MediaRouteSelector相匹配的媒体路由的发现* , 以及监听发现的媒体路由的相关事件,如用户已选择连接到某个媒体路由设备、某个媒体路由设备的特性发生改变或者断开某个媒体路由等事件。* 应用为了使用相关的媒体路由,必须调用该函数来启动媒体路由的发现,并通过登记的回调函数接收相关的事件。*/// 设置对媒体路由变化的监听mMediaRouter.addCallback(MediaRouter.ROUTE_TYPE_LIVE_VIDEO,mMediaRouterCallback);mPaused = false;updatePresentation();}@Overrideprotected void onPause() {super.onPause();// 移除回调监听mMediaRouter.removeCallback(mMediaRouterCallback);mPaused = true;updateContents();}@Overrideprotected void onStop() {super.onStop();// 当Activity不可见时,清除Presentationif (mPresentation != null) {Log.i(TAG,"Dismissing presentation because the activity is no longer visible.");mPresentation.dismiss();mPresentation = null;}}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {super.onCreateOptionsMenu(menu);// 加载菜单getMenuInflater().inflate(R.menu.presentation_with_media_router_menu,menu);MenuItem mediaRouteMenuItem = menu.findItem(R.id.menu_media_route);MediaRouteActionProvider mediaRouteActionProvider = (MediaRouteActionProvider) mediaRouteMenuItem.getActionProvider();mediaRouteActionProvider.setRouteTypes(MediaRouter.ROUTE_TYPE_LIVE_VIDEO);// 显示菜需要返回truereturn true;}/*** 代码示例展示了Presentation实现对象的作为一个单独方法的控制层.当一个显示器处理不可选状态或者失去联系时,该方法负责清除无效的展示对象,* 而在一个显示设备连接时负责创建一个展示对象。* * @description:* @author ldm* @date 2016-6-4 上午9:34:05*/private void updatePresentation() {// 获取当前路由MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute(MediaRouter.ROUTE_TYPE_LIVE_VIDEO);// 判断route信息是否为空,如果不为空则返回被选择演示(presentation)设备。该方法只对// route信息类型为ROUTE_TYPE_LIVE_VIDEO有效。Display presentationDisplay = route != null ? route.getPresentationDisplay() : null;// 清除无用的展示对象if (mPresentation != null&& mPresentation.getDisplay() != presentationDisplay) {Log.i(TAG,"Dismissing presentation because the current route no longer "+ "has a presentation display.");mPresentation.dismiss();mPresentation = null;}// 根据需要显示展示 对象if (mPresentation == null && presentationDisplay != null) {Log.i(TAG, "Showing presentation on display: "+ presentationDisplay);mPresentation = new DemoPresentation(this, presentationDisplay);mPresentation.setOnDismissListener(mOnDismissListener);try {mPresentation.show();} catch (WindowManager.InvalidDisplayException ex) {Log.w(TAG,"Couldn't show presentation!  Display was removed in "+ "the meantime.", ex);mPresentation = null;}}// 更新Activity中内容updateContents();}/*** 更新内容* * @description:* @author ldm* @date 2016-6-4 上午9:27:40*/private void updateContents() {if (mPresentation != null) {mInfoTextView.setText(getResources().getString(R.string.presentation_with_media_router_now_playing_remotely,mPresentation.getDisplay().getName()));mSurfaceView.setVisibility(View.INVISIBLE);mSurfaceView.onPause();if (mPaused) {mPresentation.getSurfaceView().onPause();} else {mPresentation.getSurfaceView().onResume();}} else {mInfoTextView.setText(getResources().getString(R.string.presentation_with_media_router_now_playing_locally,getWindowManager().getDefaultDisplay().getName()));mSurfaceView.setVisibility(View.VISIBLE);if (mPaused) {mSurfaceView.onPause();} else {mSurfaceView.onResume();}}}private final MediaRouter.SimpleCallback mMediaRouterCallback = new MediaRouter.SimpleCallback() {// 当用户连接到一个媒体路由输出设备上时调用。@Overridepublic void onRouteSelected(MediaRouter router, int type, RouteInfo info) {Log.d(TAG, "onRouteSelected: type=" + type + ", info=" + info);updatePresentation();}// 当用户断开一个媒体路由输出设备时调用。@Overridepublic void onRouteUnselected(MediaRouter router, int type,RouteInfo info) {Log.d(TAG, "onRouteUnselected: type=" + type + ", info=" + info);updatePresentation();}// 当展示的显示器改变现实像素,如从720p变到1080p分辨率。@Overridepublic void onRoutePresentationDisplayChanged(MediaRouter router,RouteInfo info) {Log.d(TAG, "onRoutePresentationDisplayChanged: info=" + info);updatePresentation();}};/*** Listens for when presentations are dismissed.*/private final DialogInterface.OnDismissListener mOnDismissListener = new DialogInterface.OnDismissListener() {@Overridepublic void onDismiss(DialogInterface dialog) {if (dialog == mPresentation) {Log.i(TAG, "Presentation was dismissed.");mPresentation = null;updateContents();}}};/*** 要为辅助显示屏创建独特的内容,您需要扩展Presentation类,并实现onCreate()回调方法。在onCreate()中,* 调用setContentView()来指定您要在辅助显示屏上显示的UI。* 作为Dialog类的扩展,Presentation类提供了一个区域,在其中, 您的应用可以在辅助显示屏上显示不同的UI。* * @description:* @author ldm* @date 2016-6-4 上午9:08:45*/private final static class DemoPresentation extends Presentation {/*** GLSurfaceView是一个视图,继承至SurfaceView,它内嵌的surface专门负责OpenGL渲染。* GLSurfaceView提供了下列特性: 1>* 管理一个surface,这个surface就是一块特殊的内存,能直接排版到android的视图view上。 2> 管理一个EGL* display,它能让opengl把内容渲染到上述的surface上。 3> 用户自定义渲染器(render)。 4>* 让渲染器在独立的线程里运作,和UI线程分离。 5> 支持按需渲染(on-demand)和连续渲染(continuous)。* 6>一些可选工具,如调试。*/private GLSurfaceView mSurfaceView;public DemoPresentation(Context context, Display display) {super(context, display);}@Overrideprotected void onCreate(Bundle savedInstanceState) {// 必须要写下面这句话,调用父类的onCreate();super.onCreate(savedInstanceState);// 设置布局setContentView(R.layout.presentation_with_media_router_content);// mSurfaceView对象获取:建立有趣的视觉mSurfaceView = (GLSurfaceView) findViewById(R.id.surface_view);mSurfaceView.setRenderer(new CubeRenderer(false));}public GLSurfaceView getSurfaceView() {return mSurfaceView;}}
}

相关代码请见:https://github.com/ldm520/ANDROID_API_DEMOS
参考博客:
http://blog.csdn.net/lilian0118/article/details/22940943
http://blog.csdn.net/michaelcao1980/article/details/9293441

这篇关于android媒体在二级设备上呈现和播放的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/927372

相关文章

流媒体平台/视频监控/安防视频汇聚EasyCVR播放暂停后视频画面黑屏是什么原因?

视频智能分析/视频监控/安防监控综合管理系统EasyCVR视频汇聚融合平台,是TSINGSEE青犀视频垂直深耕音视频流媒体技术、AI智能技术领域的杰出成果。该平台以其强大的视频处理、汇聚与融合能力,在构建全栈视频监控系统中展现出了独特的优势。视频监控管理系统EasyCVR平台内置了强大的视频解码、转码、压缩等技术,能够处理多种视频流格式,并以多种格式(RTMP、RTSP、HTTP-FLV、WebS

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

如何编写Linux PCIe设备驱动器 之二

如何编写Linux PCIe设备驱动器 之二 功能(capability)集功能(capability)APIs通过pci_bus_read_config完成功能存取功能APIs参数pos常量值PCI功能结构 PCI功能IDMSI功能电源功率管理功能 功能(capability)集 功能(capability)APIs int pcie_capability_read_wo

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

android应用中res目录说明

Android应用的res目录是一个特殊的项目,该项目里存放了Android应用所用的全部资源,包括图片、字符串、颜色、尺寸、样式等,类似于web开发中的public目录,js、css、image、style。。。。 Android按照约定,将不同的资源放在不同的文件夹中,这样可以方便的让AAPT(即Android Asset Packaging Tool , 在SDK的build-tools目

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR