草庐IT

VIDEO_TDR_FAILURE

全部标签

java - 尝试视频通话时,Android WireApp记录UnsatisfiedLink错误:“wcall_set_video_send_state”

我已经从以下存储库构建了Wire应用程序:https://github.com/wireapp/wire-android使用以下构建说明:如何在本地构建请查看wire-android系统信息库。切换到最新的relase分支版本从checkout文件夹中,运行./gradlewassembleProdRelease。这将获取所有必要的依赖项来自Maven。我已经尝试了发布分支:gitclonehttps://github.com/wireapp/wire-android.git--branchrelease和主人:gitclonehttps://github.com/wireapp/wi

安卓错误 : Failure [INSTALL_CANCELED_BY_USER]

当我尝试在我的设备而不是Android虚拟设备上运行应用程序时,它给出错误并停止运行。在控制台上显示这些消息。打开:权限被拒绝pkg:/data/local/tmp/com.example.android.sunshine失败[INSTALL_CANCELED_BY_USER]$adbshellpm卸载com.example.android.sunshine未知故障(Failure) 最佳答案 转到其他设置,然后选择通过USB安装。 关于安卓错误:Failure[INSTALL_CANC

android - map 安卓 API : Authorization failure

和我类似的问题有很多。我把它们都看了一遍(我希望)。我也认为我做的一切都很好。Mapsv2在GoogleServices上次更新到Rev25之前一直有效我得到:E/GoogleMapsAndroidAPI﹕AuthorizationfailureEnsurethatthe"GoogleMapsAndroidAPIv2"isenabled.EnsurethatthefollowingAndroidKeyexists:APIKey:AIzaSyB...关键匹配。下一个:AndroidApplication(;):87:60:41:37...;com.example.example证书匹配所

android - 将内容 URI 与 ACTION_VIDEO_CAPTURE 结合使用

我目前在我的文件提供程序上使用内容URI来检索由ACTION_IMAGE_CAPTUREIntent返回的相机图像。这很好用。由于某些奇怪的原因,在尝试从相机中检索视频文件时,同一个调用不起作用。destinationFile=File.createTempFile("video",".mp4",this.getFilesDir());Uriuri=FileProvider.getUriForFile(this,getPackageName()+".fileprovider",destinationFile);IntentcameraIntent=newIntent(MediaStor

android - "gradle -FAILURE: Build failed with an exception"使用终端时

我正在尝试直接从终端运行命令。每次我运行命令./gradlew时,我都会收到上述错误。我遵循了许多stackoverflow答案,但尚未解决问题。为方便起见,这里是堆栈跟踪。添加,我已经删除了gradle文件夹,使androidstudio失效并重新启动,清除了缓存,检查了this,这个blog以及stackoverflow中与此问题相关的其他答案。没有任何效果。请建议。谢谢*Whatwentwrong:Aproblemoccurredconfiguringproject':app'.java.lang.NullPointerException(noerrormessage)*Exce

java - validator 异常 : bind failure on AVD

我正在尝试创建一个使用Google的OAuth库的Android应用程序,likethissample.但是,当我调用getAuthTokenByFeatures时,我得到一个异常,在LogCat上打印出来:05-2410:56:58.224:W/System.err(557):android.accounts.AuthenticatorException:bindfailure05-2410:56:58.236:W/System.err(557):atandroid.accounts.AccountManager.convertErrorToException(AccountMana

android - 如何从看起来像 "/content:/media/external/video/media/19"的路径中提取真实文件 URI 或文件数据?

我正在拼命尝试将捕获的视频发送到服务器。问题是内置相机应用程序给出的URI不是真实的文件路径。它看起来像这样-/content:/media/external/video/media/19。如何直接从这种URI访问真实路径或数据?阅读android文档后,我看到它看起来像一个内容提供者的符号,但我仍然不知道如何获得我需要的数据。请帮忙!!!提前致谢 最佳答案 HowcanIaccesstherealpathorthedatadirectlyfromthiskindofURIs?你不知道。它可能不作为文件存在。或者,它可能不作为您可以

android - Video Intent 未将视频保存到所需位置

我已经实现了将捕获的视频保存到自定义位置的代码。//ConstantsfinalstaticintREQUEST_VIDEO_CAPTURED=1;StringCAPTURE_TITLE="MyVideo.3gp";//SpecifiedthedesiredlocationhereFilefile=newFile(Environment.getExternalStorageDirectory()+"/DCIM",CAPTURE_TITLE);UrioutputFileUri=Uri.fromFile(file);Intentintent=newIntent(android.provid

android - 火力地堡安卓 : Google Sign In Failure

首先,我不得不说我是Android开发的新手,所以如果我忽略了一些明显的事情,请原谅我。对于一个大学项目,我必须创建一个应用程序,首先使用Firebase通过他们的Google帐户对用户进行身份验证。我首先按照找到的说明进行操作here.首先,我复制粘贴了thiscodefromFirebaseTutorial.一切似乎都在工作,除了一件事:@OverridepublicvoidonActivityResult(intrequestCode,intresultCode,Intentdata){Log.d(TAG,"------------------onActivityResult--

android - 我的应用程序不会显示在 android.intent.action.VIEW 的选择器对话框中,mime 类型为 video/* only on Marshmallow

基本上,当一个应用分享一个视频url时,我的应用应该出现在列表中,但它没有。MXPlayer和GooglePhotos媒体播放器都没有显示,也没有allcast(最近发布的版本解决了这个问题)。我写了一个快速应用来测试这个问题,这是我的list过滤器:这是重现问题的代码:Intentintent=newIntent("android.intent.action.VIEW");intent.setDataAndType(Uri.parse("http://media.w3.org/2010/05/sintel/trailer.mp4"),"video/*");startActivity(