ffpyplayer icon indicating copy to clipboard operation
ffpyplayer copied to clipboard

A cython implementation of an ffmpeg based player.

Results 50 ffpyplayer issues
Sort by recently updated
recently updated
newest added

Hello, My install is failing due to the compiler trying to use the aarch64 architecture from my m1 Silicon mac rather than the x86_64 of my VM. I couldn't find...

Hey everyone, if I set the `ff_opts` dict to the following values, it raises an error: ``` ff_opts = {'ss': start / 1000, 'af':'atempo=1.2', 'vn':True} MediaPlayer(self.audio_source, ff_opts=ff_opts, callback=self.ffplay_callback) ``` ```...

Hi there, I'm looking for some help regarding the syntax to set video and/or audio filters in `MediaPlayer` (where I'm trying to speed up a video). The following `ffplay` command...

Hello everyone! I am trying write a simple audio player using MediaPlayer class. Here is my code: ``` from ffpyplayer.player import MediaPlayer player = MediaPlayer('audio.mp3', ff_opts={'volume': 0}) while True: pass...

When connecting to a RTSP stream and initializing MediaPlayer paused, sometimes 'eof' is received after a few frames, depending on the stream producer. I encountered this behavior with a RTSP...

I am developing android app with kivy and ffpyplayer for watching video streams. But i'm using low performance hardware and getting lag on streams with 2500 bitrate and higher, so...

Questions At the latest version, ffpyplayer==4.3.5. Q1: Start a instance of MediaPlayer(video, ff_opts={"volume": 0.0}), the media still have a big audio voice output. Q2: And if instanced a MediaPlayer object...

I'm making a [desktop app with kivy](https://www.youtube.com/watch?v=Pp7F4EH3iFw) and ffpyplayer is a godsend. However, I am trying to load youtube links asynchronously and sometimes I get this error: ``` [ERROR ]...

Hi All, I'm trying to convert a cdg (MP3CDG/Karaoke file) into any sort of more compatible video format, the idea is to mux it then with audio and use a...

I'm using ffpyplayer for kivy audio there is a problem of loading more than sound, for example: ``` s1 = SoundLoader.load('m1.mp3') s2 = SoundLoader.load(m2.mp3') ``` if i played s2 it...