There is any .NET open source desktop media player?
I want to customize my own media player, but I would rather do it in C#. There is any .NET open source media player, so I will not start from scratch? ...
I want to customize my own media player, but I would rather do it in C#. There is any .NET open source media player, so I will not start from scratch? ...
Hi, MediaPlayer: Message collectionsForQuery: timed out. Is any body getting this error ? Is there any way to resolve this issue ? Need urgent help Thanks ...
Hi, The media player embedded code work only in IE.How I can do it able to work on opera ,mozilla and other browser.I am using this below code. <HTML> <HEAD> </HEAD> <BODY> <OBJECT ID="Player" height="0" width="0" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"> </OBJECT> <INPUT TYPE="BUTTON" NAME="BtnPlay" VALUE="Play" OnClick=...
I need to load subtitles as external xml/text (representing different language) files for a video. However, I'm trying to decide on a schema/format for my external file, and have come across two options: SAMI: http://msdn.microsoft.com/en-us/library/ms971327.aspx Timed Text: http://www.w3.org/AudioVideo/TT/ Right now I'm leaning tow...
Hi I have a simple page and a link on it which opens a simple popup ajax popup with embedded media player on it, like so <object classid="..." id="mediaplayer1"> </object> The problem is that after closing and disappearing popup it seems that Meda Player continues working, cause I am hearing movie sound. How can I stop this? ...
as far as i can tell the only way to play audio on silverlight 3 is using the mediaelement. I'm comparing using flash vs silverlight for a web app which will allow the user to interactively turn on/off multiple tracks from a single audio compositions. how many simultaneous sounds can silverlight play at once? Think flash has a limit of...
Hello, I have several UIButtons that control the iPhone's music player. I would like to have the music player seek backwards if the previous button is touched and held, but skip to the previous item if the button is single-tapped. Currently, I am able to skip to the previous item with a tap, but touching and holding will seek backward...
How do you call the default media player to play a wav file in Java? ...
Hii, i am working on Bootstrapper which check for windows media player 11 before installing application's msi.i had search for bootstrapper package on google but there is no package.. So,i just download the exe of wmp 11 and make a bootstrapper package with a tool called "Bootstrapper Manifest Generator"..i use the link below for HomeSi...
I am trying to build an Android Service that should get notified when the user starts playing an MP3. I checked LogCat when I start playing a song and saw that the following Intent is logged: Intent { act=com.android.music.PLAYBACK_VIEWER flg=0x4000000 cmp=com.android.music/.MediaPlaybackActivity } I couldn't figure out how to write a...
I am using the MediaPlayer framework to play a movie on the iPhone. There is a notification:- myMovieFinishedCallback to capture the end of play, but there doesn't appear to be any way to distinguish between the player coming to the end of the movie, and the user pressing 'Done' to terminate mid-play. Is it possible to tell the cond...
I am using the media player framework's MPMoviePlayerController to play local (on device) m4v files. Depending on user's selection, I want to be able to play multiple movies one after the other seamlessly. To do this, I queue up the movies in an array and in my observer method that is called on the MPMoviePlayerPlaybackDidFinishNotifica...
Hi there! Can anyone tell me if the Android MediaPlayer class is able to play a video stored in a remoted URL? Just for testing purposes, can I use the URL http://localhost/video-name.3gp. Another question is if the MediaPlayer works well on the emulator? Thanks in advance, Best regards! ...
Hi there! I have implement the following code in order to test playing a video from a remote web server through it´s URL. videoView = (VideoView)this.findViewById(R.id.videoView); MediaController mc = new MediaController(this); videoView.setMediaController(mc); videoView.setVideoURI(Uri.parse("http://sayedhashimi.com/dow...
I can't seem to get the jQuery Media plugin to work with nonverblaster:hover ... This is what I'm using.... am I doing something wrong? I've tried loading SWFobject aswell... <script type="text/javascript"> $(function() { $.fn.media.defaults.flvPlayer = 'js/NonverBlaster.swf'; $.fn.media.defaults.mp3Player = 'js/NonverBlaste...
Hi there! I have the following working code: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.setContentView(R.layout.player); videoView = (VideoView)this.findViewById(R.id.videoView); playVideo(); // video finish listener ...
Hi, I get the following error 12-15 16:54:37.125: ERROR/MediaPlayer(6032): error (-2147483648, 0) when trying to execute this code in a service: MediaPlayer mp = null; @Override public void onCreate() { if (mp == null) { mp = new MediaPlayer(); } } @Override public void onStart(Intent intent, int startId) { if (!mp.isPlayi...
Hi, I've been trying to stream mp3's over http using Android's built in MediaPlayer class. The documentation would suggest to me that this should be as easy as : MediaPlayer mp = new MediaPlayer(); mp.setDataSource(URL_OF_FILE); mp.prepare(); mp.start(); However I am getting the following repeatedly. I have tried different URLs as we...
Hi Everyone, I am currently developing my first Android application by reading Dev Documentation at Android official website. What I am trying to accomplish is to play some ring sounds. A section from my code is: import android.app.Activity; import android.media.MediaPlayer; import android.os.Bundle; import android.view.View; public c...
I have a piece of my site being built for me that works like this... when you click a song, the song loads in the player and plays it. I'm being told by the guy who's developing it for me that Asp.Net does not support 320kbps files, so that's why the player isn't working. This seemed a little ridiculous so I did some research on it and ...