Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
44 views

So i have these 2 PlayerView one top one bottom and they are mirrored one on top have full scale then the bottom one is compressed to fill the bottom part. So i want a blurr overlay that will be on ...
wayne chirwa's user avatar
0 votes
0 answers
74 views

I'm using flutter media_kit 1.2.0 library in my project and the task is to put tracks into playlist and play one after another in schedule. Each video has own index so by schedule a bloc passes index ...
Alex20280's user avatar
  • 385
0 votes
1 answer
68 views

I have been having a problem since quite some time and I have tried many things to understand and get rid of it without any success. Actually I am developing a music app with different songs that can ...
VanessaF's user avatar
  • 717
0 votes
0 answers
42 views

When viewing my media notification the LargeIcon of the albumart is very pixelated. However Samsung Music's notification of the same albumart is of the correct resolution. I've attached 4 images below ...
Steve Campos's user avatar
1 vote
1 answer
130 views

I want to create an activity that includes an androidx.media3.ui.PlayerView. The player should play a video using a foreground service, allowing media playback to continue even when the app is ...
ahmadreza gh's user avatar
0 votes
0 answers
45 views

I am working on an Android project where I have a fragment that broadcasts a channel. I use media3.ui.player as VideoView. There is no problem in portrait mode, but when I switch to full screen mode, ...
Subhan Efendiyev's user avatar
0 votes
0 answers
81 views

I am making a music player Android App with Kotlin and building UI with Jetpack Compose, using ExoPlayer as the player. Currently I'm using Hilt to inject ExoPlayer directly into the ViewModel ...
Tuấn Lương Ngọc's user avatar
0 votes
0 answers
122 views

For example a popular VLC player app uses "Manage all files" permission (MANAGE_EXTERNAL_STORAGE). It's not easy for other video player developers to use this permission and pass the review ...
user924's user avatar
  • 12.9k
0 votes
0 answers
64 views

I support different types of streams in the app. When a transition between streams happens while on the Now Playing screen, Android Auto closes the screen. I migrated the app from legacy ExoPlayer to ...
Deniz Demirci's user avatar
0 votes
0 answers
81 views

I'm working on a MP3 player for Android Auto and I noticed some debugging(?) text on the AA screen in the Windows Headunit. See the example in the screen shot below - "Step: 1, Template: ...
user3573712's user avatar
0 votes
0 answers
33 views

I have the following code. When the alarm is triggered, if I have a bluetooth device connected, it will play on through bluetooth. I have found an app that when playing an alarm, it plays through both ...
John Smith's user avatar
  • 3,645
0 votes
1 answer
661 views

I am using AIDE for Android, and have 2 java files (one is MainActivity.java, and the other is M4APlayer.Java). During the onCreate() call, I have a text changed listener attached to an EditText ...
Michael Lowe's user avatar
2 votes
0 answers
97 views

I’m developing an Android app that needs to play five audio tracks of a song simultaneously. I'm currently using the Android MediaPlayer package for playback. However, precise synchronization is ...
DuckLovesBread's user avatar
0 votes
1 answer
56 views

I have raw files named zero.flac , one.flac , ... , nine.flac My app has minimum api 28 and I am using kotlin. My app will take number input from user and read it sequentially There will be option to ...
lxuser's user avatar
  • 1
0 votes
1 answer
620 views

I'm currently working on an Android app using the Media3 (ExoPlayer) library to stream video content. I've successfully implemented playback for HTTP streams, but I'm having trouble playing a UDP ...
chirantha's user avatar
0 votes
2 answers
62 views

I've developed a simple Android application where you can play and stop audio using MediaPlayer. However the audio doesn't stop when requested to. Here is a breakdown of the app. There are two buttons ...
Bob Rasner's user avatar
1 vote
1 answer
56 views

This code is needed to implement MediaPlayer functionality. Since the project itself is multiplatform. class AudioPlayerImp(private val client: HttpClient) : AudioPlayer { private var mediaPlayer: ...
Umaq's user avatar
  • 43
6 votes
0 answers
118 views

I am trying to handle the pause/play button from a Bluetooth headset (e.g. Jabra Elite 7 Pro) by simply logging into Logcat a message whenever it is pressed. The “twist” is that this is during ...
sfinja's user avatar
  • 883
0 votes
0 answers
77 views

I am recording voice in my .net maui app in iOS using AVFoundation.AVAudioRecorder. private AVAudioRecorder recorder; ... { var filePath = GetTempFilePath(); url = ...
Reza's user avatar
  • 5,702
0 votes
1 answer
842 views

I am developing a mobile application for both Android & IOS which among other things it plays audio using expo-av. By changing some of the configuration variables it works even when the user locks ...
JohnP's user avatar
  • 100
0 votes
1 answer
40 views

After I left my project development sleep for a while, I had to get back to it. I'm stuck with the loss of MediaButtonReceiver library ... It used to sit in android.support.v4.media.session....
MF de Préval's user avatar
0 votes
1 answer
40 views

retriever.setDataSource(context, uri) This line of code keeps throwing exception: could not access android.resource:/data/user/0/ba.simovic.videoeditor/cache/editedVideo.mp4 I would get a video ...
Ivan Šimović's user avatar
1 vote
0 answers
462 views

I want to implement the option to choose between hardware and software decoding in ExoPlayer based on user selection. I've implemented the following code: private fun buildRenderersFactory(...
Pratik Fagadiya's user avatar
1 vote
1 answer
59 views

I've been trying for about 2 weeks now to get sound looping to work, but there seems to be an issue with every method I've been able to find. These are the things I've tried so far, as well as the ...
Bo Bramer's user avatar
0 votes
2 answers
149 views

Following is my code to play a video from an url import androidx.appcompat.app.AppCompatActivity; import android.media.MediaPlayer; import android.os.Bundle; import android.view.SurfaceHolder; import ...
amodkanthe's user avatar
  • 4,540
0 votes
0 answers
233 views

I have implemented media3 with MediaSessionService or my song player service and I am using MediaController for my UI side. In my service I also have implemented MediaSession.Callback(). val ...
Debayan Ghosh Dastider's user avatar
0 votes
0 answers
48 views

I am trying to record the audio using MediaRecorder API of android and save the audio file in the cache directory of the app. The audio file gets saved perfectly into the cache dir and is working fine ...
coDeR's user avatar
  • 41
0 votes
1 answer
174 views

I have an android application written in Kotlin & jetpack compose. The application is running on a device with physical keyboard. My goal is to play a sound every time I click a button. Ideally, I ...
Nontas Papadopoulos's user avatar
2 votes
1 answer
107 views

I am working on an Android app using Java, and I have a RecyclerView displaying a list of songs. When a song is selected, it starts playing, and the app navigates to a player Activity. After returning ...
HaxOfficial's user avatar
0 votes
2 answers
65 views

I'm using OpusPlayer to play an audio where I need to get the Amplitude. we can get Amplitude if using MediaRecorder by mediaRecorder.getMaxAmplitude() but in OpusPlayer I'm only using audioManager ...
AMAN SINGH's user avatar
  • 3,561
0 votes
1 answer
402 views

In Android Jetpack Compose when using Exoplayer when an app is defaulted in portrait the time of opening the media player shows media with cropping. But the issue was resolved after switching to ...
Anusha C's user avatar
0 votes
2 answers
36 views

I want to run music in background or another thread not on main thread. when i continuedly click on button and call music method then start music without any delay and without freezing main Thread. ...
Human's user avatar
  • 1
0 votes
1 answer
59 views

My problem is that I have used the MediaPlayer class in an activity to play music. The music is played online from a link, and I have used the prepareAsync method for audio. At the first time, the ...
Javad Moeini Hadizadeh's user avatar
0 votes
2 answers
150 views

I have tried every possible step but only giving value once, I want it should update every single second. This is my code, what am I doing wrong? I want to implement progress slider for musics, can ...
IYCS's user avatar
  • 23
2 votes
0 answers
288 views

I'm using ExoPlayer in my Android app to play videos using HLS. Sometimes the server returns an empty playlist during playback (only headers without tracks). This happens quite rarely and subsequent ...
BArtWell's user avatar
  • 4,109
0 votes
1 answer
32 views

I am making Android application that displays contents that is copied from USB storage disk. The problem is when USB storage disc is connected to device, Media Player onCompletion() is immediately ...
jpskgc's user avatar
  • 787
5 votes
1 answer
680 views

I would like to take the user directly to the player UI when the user taps on media notification. I see that app is launched (or brought to foreground) but intent extras are null and I cannot take the ...
rysv's user avatar
  • 3,532
1 vote
0 answers
31 views

I'm using MediaPlayer for background song and SoundPool for onButtonClick sound effects. I've noticed that while MediaPlayer playing background song SoundPool starts to give slow response for method ...
Artem Gorbachev's user avatar
0 votes
1 answer
626 views

I need to modify the title shown in the media notification based on the current playback position. According to the documentation, I can use MediaNotification.Provider however the document also says ...
rysv's user avatar
  • 3,532
0 votes
1 answer
292 views

I want to split an HLS audio stream into chapters and add them as a list of MediaItems to the Media3 player using MediaSessionService. I have this following code in MediaController. From the ...
rysv's user avatar
  • 3,532
0 votes
0 answers
355 views

I am encountering an issue on Unity 2022.3.21f where I cannot seem to stream videos recorded by an iPhone on Android. To isolate this problem, I create an empty Unity Project and add a VideoPlayer to ...
Red's user avatar
  • 9
0 votes
0 answers
40 views

I want to run Media Player. How does the seekBar enhance user interaction in the provided Android media player application? Briefly explain its role in visualizing playback progress and facilitating ...
Triya Roy's user avatar
0 votes
1 answer
896 views

Apparently, we can set an HLS media source only to ExoPlayer and not to MediaController in the Activity/Composable. Is there way to pass URL and token to the service so that HLSMediaSource factory can ...
rysv's user avatar
  • 3,532
1 vote
1 answer
1k views

I would like to get HLS streaming working using Media3 with a background playback service. I see references online on how to use MediaController setMediaItem in the activity/composable, however, not ...
rysv's user avatar
  • 3,532
1 vote
2 answers
1k views

I want to set default start positions of my playlist items (basically to resume from where the user left), to use when playlist item auto transitions to next item. As per my understanding (I am not ...
Akshdeep Singh's user avatar
0 votes
0 answers
51 views

I am making a music playing app in Android Java. I have a MediaPlayer object that is supposed to play the audio file selected in the default Android file chooser. This is how I am calling the file ...
SE User's user avatar
  • 75
1 vote
1 answer
522 views

i'm trying to build a media app for android auto. I have tried to build the app according to official documentation but i've missed/misunderstood some stuffs, probably. I've created a "Playable&...
ChaTho's user avatar
  • 761
0 votes
0 answers
81 views

"Error in Flutter when using flutter_sound: ^9.0.0 - The getter 'onPlayerStateChange' isn't defined for the type 'FlutterSoundPlayer'" I am developing a Flutter application that utilizes ...
David jorge's user avatar
0 votes
1 answer
115 views

I'm working on an app that involves listening to playlists of audio tracks that are loaded asynchronously from network. the issue here is using mediaplayer, i load (prepare) each audio track after the ...
M.KH's user avatar
  • 482
3 votes
0 answers
477 views

I'm working on a project in compose and it requires trimming video. I have implemented the video trimming part but I having issues with creating the slider to select the starting and the ending point ...
Oluwafemi's user avatar
  • 366

1
2 3 4 5
96