vitamio

Vitamio libffmpeg.so

房东的猫 提交于 2019-12-04 18:02:55
I am playing around with the Vitamio demo, and like what I see. However, I need to slightly customise the ffmpeg source code (modifying http.c so the default is set for http streams to be non-seekable). I have followed the steps HERE in order to rebuild libffmpeg.so. All compiled fine, so far, so good... However, I don't see where libffmpeg.so resides in the Vitamio bundle. I see a library called libarm.so. Does it live inside here? If so, how does one go about repacking it with the modified libffmpeg.so included? Thanks Dan libarm.so you see in a raw folder is actually a 7z with folders in it

Android RTSP Live Streaming Issue

一笑奈何 提交于 2019-12-04 10:24:43
Android Video Live Streaming Problem I am using Vitamio library. The RTSP streaming is working well, Now I want to record that RTSP live streaming in my SD card locally. please help !!! Or can i use media recorder to record RTSP live streaming ? Media Recorder is not the good way to record RTSP video, I have used the FFMPEG library to record RTSP recording locally in sd card. Steps to do this. Capture or decode the RAW frames from live stream and pass them to ffmpeg and save them to sdcard in .h264 format. Then again pick .h264 raw file and decode the file using ffmpeg, and save the file with

Android Vitamio初探

扶醉桌前 提交于 2019-12-03 09:58:45
GitHub: https://github.com/yixia/VitamioBundle 1.下载完毕导入用Android Studio打开 2.新建Mode,引入依赖 dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation project(path: ':vitamio') } 3.AndroidManifest加入相应权限以及必要Activity <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses

Android Vitamio 5.0.0 and vulnerable version of OpenSSL

匿名 (未验证) 提交于 2019-12-03 08:30:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using Vitamio 5.0.0 version for my app in Google Play. Today i gat a mail from google. it says "Google Play warning: You are using a vulnerable version of OpenSSL " Hello Google Play Developer, Your app(s) listed at the end of this email utilize a version of OpenSSL that contains one or more security vulnerabilities. If you have more than 20 affected apps in your account, please check the Developer Console for a full list. Please migrate your app(s) to OpenSSL 1.02f/1.01r or higher as soon as possible and increment the version number of

安卓开发之解决project.ANDROID_BUILD_SDK_VERSION找不到的问题

匿名 (未验证) 提交于 2019-12-03 00:39:02
背景 今天在导入Vitamio模块、同步gradle时,出现了如下报错: 解决方案 找到ANDROID_BUILD_SDK_VERSION引用的位置,我的是在vitamio-sample.gradle,说明是变量找不到。所以要在gradle.properties文件里,定义这么一个变量,当然,vitamio-sample.gradle里引用了4个变量,它们都要在gradle.properties里定义 再同步,就可以了 文章来源: 安卓开发之解决project.ANDROID_BUILD_SDK_VERSION找不到的问题

Can't run live stream using Vitamio

老子叫甜甜 提交于 2019-12-02 02:11:18
I'm trying to use Vitamio to run RTSP video stream, I'm using Vitamio-sample after updating it to run the stream through VideoViewDemo activity: public class VideoViewDemo extends Activity { /** * TODO: Set the path variable to a streaming video URL or a local media file * path. */ private String path = "rtsp://user:password@<stream-ip>:554"; private VideoView mVideoView; private EditText mEditText; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); if (!LibsChecker.checkVitamioLibs(this)) return; setContentView(R.layout.videoview); mEditText = (EditText) findViewById(R.id

Play video stream using Vitamio library in android?

爱⌒轻易说出口 提交于 2019-12-01 05:59:37
I'm using the library Vitamio to play rtsp live stream. I tried to run the demo videoview class play rtsp link as follows: http://117.103.224.75:1935/live/ definst /VTCHD3/VTCHD3_840x480_1200kbps.stream/playlist.m3u8 ==> Result : it run but quality very bad, load videos very low and picture in video are not sharp and sound are not heard. I don't know what to do to make it run smooth and picture is sharp. Please help me this problem ! Thank very much ! this is my code : private String path="http://117.103.224.75:1935/live/_definst_/VTCHD3/VTCHD3_840x480_1200kbps.stream/playlist.m3u8"; private

Play video stream using Vitamio library in android?

时光怂恿深爱的人放手 提交于 2019-12-01 04:03:16
问题 I'm using the library Vitamio to play rtsp live stream. I tried to run the demo videoview class play rtsp link as follows: http://117.103.224.75:1935/live/definst/VTCHD3/VTCHD3_840x480_1200kbps.stream/playlist.m3u8 ==> Result : it run but quality very bad, load videos very low and picture in video are not sharp and sound are not heard. I don't know what to do to make it run smooth and picture is sharp. Please help me this problem ! Thank very much ! this is my code : private String path="http

Integration of Vitamio in Android App

有些话、适合烂在心里 提交于 2019-11-28 06:33:28
问题 I have created an App to stream h264 videos over RTSP. Using Android's videoview i got long buffertimes and a latency around 5 seconds. From what I have read the easiest way to improve this is to use Vitamio SDK. The documentation on their page is very small and I have trouble importing it. This is the official HowTo https://github.com/yixia/VitamioBundle/wiki/How-to-integrate-Vitamio-on-your-own-project%3F I don't know how to this properly, how do I create the .jar file? Thanks in advance