I'm currently doing an iOS project that uses IJKPlayer which is based on FFmpeg and SDL to display RTSP feed from a certain source.
I have no problem in displaying a single video feed but my project requires me to display multiple stream on the…
I am using ijkplayer in my android app that I compile using
compile 'tv.danmaku.ijk.media:ijkplayer-java:0.4.5'
compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.4.5'
It works perfectly loading http urls but if I try to load https urls I get this…
I am trying to use IJK Player (for flutter, FIJK player) to play an RTSP stream. However, I keep getting errors. Here's a simple example:
import 'package:fijkplayer/fijkplayer.dart';
import 'package:flutter/material.dart';
void main() {
…
I am using GiraffePlayer2 which is using IjkMediaPlayer for implementation. I am getting crash on Android 11 and above versions while using lazyLoad library. Here is the logcat:-
2021-08-05 11:47:02.253 2872-2959/daily.status.earn.money…
while using ijkmediaplayer, necessary packages from the J4A loader is not loading (like MediacodecInfo, MediaCodecBufferInfo, java.nio.ByteBuffer, Buffer) That's why I am getting an error of insufficient resources to instantiate the decoder.
02-21…
i m implementing rtmp streaming player and its work fine on device,
but when i create archive of project, error occurred,
I am using this framwork: IJKMediaFramework and its working good, but not able to create Archive
I use a XWalkView to load webpage and a IjkVideoView to play live video in my app. I want the IjkVideoView playing the video in front the XwalkView, so I put these two view in a relativelayout and IijVideoView behind the XWalkView.
In the android…
There are exact four entries when searching google about deinterlaced play back with IJKPlayer. The best one seems to be this. However, the mentioned solution by adding
mediaPlayer.setOption(IjkMediaPlayer.OPT_CATEGORY_PLAYER, "vf0", "yadif")
to…
I was about to create a video player that can play FFmpeg pipe output in flutter. Luckily i found a solution with Github project flutter-ffmpeg, Thanks @tanersener for this amazing project https://github.com/tanersener/flutter-ffmpeg
Below I am…
I am working with ijkplayer video player library to play videos in my android app.But when i try to increase the audio speed (e.g 1.5+) it change my audio tone.I looked into the source code of ijkplayer but couldn't figure out the issue. When…
How can I merge the same decoded frame twice on top of one another while decoding using ijkplayer. My decoded frame is of size 4096*2048. I have created a big overlay of size 4096*4096 and want to put the same frame twice on top of one another. Here…
In ijkplayer, after decoding, the obtained frame has no YUV planes data[0], data[1], data[2] are all null and similarly linesize[i], although pix_fmt is YUVJ420P. Can anyone please tell me why?
Can anyone please help me providing advice on how to merge four decoded frames from four different videos and then send it to display.
I observed in video_refresh() function decoded frames are dequeued from framebuffer
vp =…
I have defined below gradles in my app.gradle
implementation 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'
implementation 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.8'
and also defined same in one of the module integrated.
When I try to run the…
Is there a way to ensure the current playback time is as close to live as possible? For example if it was buffering - how do I ensure when it starts playing again it skips ahead to most current time?