Questions tagged [ijkplayer]

Android/iOS video player based on FFmpeg

Android/iOS video player based on FFmpeg

25 questions
10
votes
1 answer

iOS multiple video display

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…
Lysdexia
  • 453
  • 8
  • 22
4
votes
2 answers

Android lib ijkplayer load https url

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…
2
votes
0 answers

Connection error using FIJK Player to RTSP

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() { …
Raphael Sauer
  • 630
  • 1
  • 6
  • 27
2
votes
1 answer

Android 11 IjkMediaPlayer and GiraffePlayer2 issue

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…
Md Mohsin
  • 1,568
  • 1
  • 18
  • 28
2
votes
0 answers

IJK MediaCodec Buffer (J4A) not loading

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…
MSD Paul
  • 1,648
  • 3
  • 13
  • 31
2
votes
2 answers

Error when creating Archive

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
Sagar Chavada
  • 5,169
  • 7
  • 40
  • 67
2
votes
3 answers

Android layout collapse

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…
LF00
  • 27,015
  • 29
  • 156
  • 295
2
votes
1 answer

deinterlace video when playing with IJKPlayer

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…
Harry Developer
  • 260
  • 1
  • 3
  • 15
1
vote
0 answers

How to implement Seekbar for a video player playing FFmpeg pipe output in Flutter?

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…
Lins Louis
  • 2,393
  • 2
  • 25
  • 30
1
vote
1 answer

Audio tone change when changing speed in IJKPlayer

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…
1
vote
0 answers

How to merge two decoded images in ijkplayer and show it on the same surface

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…
MSD Paul
  • 1,648
  • 3
  • 13
  • 31
1
vote
0 answers

After decoding using ijkplayer why decoded frames have no Y, U, V frame data although being YUVJ420P

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?
MSD Paul
  • 1,648
  • 3
  • 13
  • 31
1
vote
0 answers

Merging four decoded frames into one big frame and then display it using ijkplayer

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 =…
MSD Paul
  • 1,648
  • 3
  • 13
  • 31
1
vote
0 answers

Program type already present: tv.danmaku.ijk.media.player.AbstractMediaPlayer

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…
Vir Rajpurohit
  • 1,869
  • 1
  • 10
  • 23
1
vote
1 answer

IJK player (iOS) how to ensure player is always at most recent point in stream

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?
Jake M.
  • 105
  • 8
1
2