问题描述
Android可以发送MP4格式,但无法发送avi格式,其他格式未测试,求告知可以发送哪些视频格式 如果想发送avi格式的该怎么做
解决方案
格式应该没有限制,是否你的avi格式大于10M
解决方案二:
这两张图分别是发送avi和MP4的,avi<10M的也没发送出去
解决方案三:
你下载demo的源码编译下,看看发送avi有什么错误提示
解决方案四:
我知道为什么了Bitmap thumbBitmap = ThumbnailUtils.createVideoThumbnail(videoPath, 3);这个获取不到avi的缩略图,所以thumbBitmap是null然后我做了个判断if (thumbBitmap==null){ thumbBitmap=BitmapFactory.decodeResource( getActivity().getResources(), R.drawable.em_chat_video_call_normal); }手动给thumbBitmap赋个值,然后就可以正常发送了 最后还是要谢谢你@lzan13
时间: 2024-10-05 05:36:57