ActionScript 3.0 :: Audio Player Song Duration

Jun 18, 2010

Im looking for a why to display the current time position of a song playing in an audio player in a dynamic text box. I know the soundChannel. position references the current point of the songs, but I need some conceptual help translating that to a string and 00:00 time format dynamic text box

View 1 Replies


Similar Posts:


Record And Listen Audio - Specific Duration

Nov 3, 2009

I am facing a scenario where I would like the user of my page record their voices from their login where they will purchase certain minutes for recording and as well as for listening. How do I manage the audio frames sent back to the server? Is that possible to only stream audio for a length of 10 minutes, while actual length of audio is 1 hour?

Questions:
- Do I have to write or develop a flash player completely?
- Is there any already developed solution?
- Do I have to use Media Server in this scenario

View 3 Replies

ActionScript 2.0 :: Duration Slider To Audio Controller?

Sep 15, 2003

Trying to add a duration slider to a play and stop controller similar to what you see when viewing a .wav or .aiff file in a browser. I would like the viewer to be able to go backward or forward during a speech. Final delivery is in Dreamweaver as a .swf.

View 2 Replies

ActionScript 3.0 :: Mp3 Player Won't Go To Next Song Sometimes?

Oct 17, 2009

so I have this mp3 player I made. It won't go to the next song when a song ends sometimes. It will if the song is very short (10ish seconds) but once it gets to the 30 second mark it won't go.If you click on the slider at any point it will get to the next song, if you click the pause play button it will get to the next song.I have only been doing AS3 for a little bit and I am totally baffled by this problem.
 
I've attached the code as a .txt file, i sorted them into their sepperate files with a header. I hope its ok to read. I can post them differently or post the actual player need be.

View 1 Replies

ActionScript 3.0 :: Loading More Than One Song Into MP3 Player

Feb 8, 2009

I'm trying to make an MP3 player with art and text associated with each of the 4 songs I need included, but I can't figure out how to load more than one song into the player. The first song loads and plays fine, but when I try to load another one of the songs, I'm given this error:

Code:
Error: Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful.
at flash.media::Sound/_load()
at flash.media::Sound/load()
at RealSite_fla::mp3player_mc_6/goGS86()

And here is my code:
var req:URLRequest;
var sound:Sound = new Sound();
var controller:SoundChannel;
var volumeControl:SoundTransform;
var soundPaused:Boolean = false;
var position:int;
function loadSound(event:Event):void
[Code] .....

View 1 Replies

ActionScript 2.0 :: Add Song Count To Mp3 Player?

Mar 21, 2009

I've searched the forums and can't seem to find an answer on this one.

How do I add a a counter on a mp3 player that counts the number of times a song is played?

Could I send this count number to a mysql database using PHP?

View 7 Replies

Multi Song Flash Player

May 10, 2010

I need to make player like this one URL...Is there a tutorial for this on this site already? If not does anyone know any good tutorials?

View 3 Replies

ActionScript 3.0 :: Mp3 Player - Plays The First Song When Click On Second

Jan 17, 2010

Im new in flash, and i have a problem in my mp3 player. im using flash cs3. When i click the link to play the song, it plays the song. but when i click another song, it plays the first song. by the way its an XML driven. here's the codes that i've tried

[Code]...

View 3 Replies

ActionScript 2.0 :: MP3 Player - Song Position Not Setting To Zero

Apr 2, 2010

I am create a flash mp3 player. In that I am displaying the song.position(time completed played). The song.position is not setting to zero, when a new song is played. It is continuing with the previous song. For example, if the previous song time is 30 seconds. the song.position is started from zero and comes to 30 seconds. After that song is completed and a again a new song is started, the song.position is starting as 30 seconds and gets increasing. It is not setting to zero at the start of the second song. I even set the song.position=0, when the previous song is completed.

View 1 Replies

ActionScript 2.0 :: Music Player Won't Play On 2nd Song?

Nov 3, 2011

I have problem with the code below. its a flash mp3 player. I need to prevent it from autoplay from the start. but keeps on playing all the tracks after the user click on play. How can i fix this?

Code:
import flash.filters.DropShadowFilter;
var infostruc:Array = [];
var xmlData:XML = new XML();

[Code].....

View 2 Replies

ActionScript 3.0 :: Music Player Track Duration Countdown

Dec 2, 2009

I have a XML music player that so far - Gets mp3s from an xml file. Has controls for play, pause, previous track, next track. The next thing I need it to do is display a dynamic text field with the current mp3 track length counting down to zero as the song plays. This countdown needs to stop and start as and when the pause/play is pressed.

Here's the code -
ActionScript Code:
var my_songs:XMLList;
var my_total:Number;
var my_sound:Sound;
var my_channel:SoundChannel;
var current_song:Number=0;
[Code] .....

View 2 Replies

ActionScript 3.0 :: Add Time Duration On Flash Video Player?

Apr 4, 2011

I just want to know, howto add time duration and time ellapse on a flash video player.

View 1 Replies

Actionscript 3.0 :: MP3 Player Elapsed Time / Total Duration

Jul 24, 2009

I'm trying to modify an mp3 player to work on my site, and I can't seem to get it to display time elapsed and total duration. I've included the .fla file below so you can see it (keep in mind that the mp3 file it loads, and the title are both passed to it through the link, i.e. "mp3player.html?audlink=test.mp3&audtitle=This+Is+The+Title").

[Code]...

View 2 Replies

Asp.net :: Skinnable Audio Player (or Something Similar To Windows Vista Audio Control In Task Bar) For The Web?

Mar 11, 2010

Anyone know of a skinnable audio player (or something similar to Windows Vista audio control in task bar) that i can embed in my website?

A player that can be customized to use a 'speaker' icon instead of a 'play' icon. When the speaker is clicked, the volume can be adjusted or turned off. The option of being able to autoplay and set the default volume level.

View 1 Replies

ActionScript 1/2 :: Audio To Not Play When Moved To New Position For Audio Player

Aug 25, 2009

I have an audio player that has a custom timeline and playhead. I am using a start and stop drag to move in the time line but the only way i can make it work is to have it play when ever I release the play head. I would like it to stay stopped if the player is paused and play if the player was playing.
 
[Code]...

View 5 Replies

Flash :: Audio Player That Can Play Binary Audio Streams?

Apr 13, 2011

My server is streaming binary audio data (mostly mp3 files) to a client (a browser). This client stores the audio data in memory.

What I'm looking for is a flash audio player that I can input the binary audio data so that it can play the audio file.

Preferably, the flash client is merely a bridge to Javascript so that I can handle everything in Javascript and simply use Flash's audio features, but this is not a requirement.

View 1 Replies

Html :: Flash Audio Player For M4a (AAC) Audio File Embedded?

May 15, 2007

I'm looking for a (free) flash player that I can embed in my site and use to play a .m4a (.mp4 with AAC audio) file that will be obtained using a URL (i.e. it's not local to the server hosting the web page).I've tried searching on google for one, but either I'm searching wrong or no one has made such a thing. Ideally this would be very simple (small user interface with play button and maybe a progress bar) and it would be easy to have multiple instances of on an html page (can create the player with an <object> tag).

View 7 Replies

IDE :: Progress Bar For An Audio Player Streaming Audio From Wowza Server?

Feb 24, 2011

I am new in action script 3.0. i am trying to build an audio player which will stream audio(mp3 etc.) from wowza media server. the player needs to have a play button, stop/pause button, a play progressbar and a volume scroll bar. i am using NetStream object to paly the audio

View 1 Replies

IDE :: Marquee Scroll (Song Title) From XML File In MP3 Player

Jan 3, 2007

So I made some a nifty a MP3 player that grabs songs from an XML file. It displays the song name in the dynamic text field. Unfortunately, I only have very little display space and many of the track names are long. The solution: marquee scroll the text horizonally. The problem: I never marquee scrolled dynamic text and now I am lost.

Here is my main AS:
stop();
playlist = new XML();
playlist.ignoreWhite = true;
playlist.onLoad = function(success) {
if (success) {
[Code] .....

And while this did make the text scroll on the first song, it doesn't work so hot on the second song. It blips back-and-forth between the first and second song name. Advance to a third song and you've got an even bigger blipping mess. I kind of think that this code above isn't the way to go... that it isn't even worth reworking... that I should try something completely new.

View 3 Replies

ActionScript 3.0 :: MP3 Player To Load Random Song From XML List

Jan 27, 2009

I have built an MP3 player using XML and this works fine. But I want this MP3 player to load a random song from the XML list everytime it runs.

I have this code:
var my_songs:XMLList;
var my_total:Number;
var my_sound:Sound;
var my_channel:SoundChannel;
var current_song:Number = 0;
[Code] .....

But it produces the error -
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at flashPlayer_fla::MainTimeline/playSong()
at flashPlayer_fla::MainTimeline/processXML()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/flash.net:URLLoader::onComplete()

I have also tried to trace the problem by putting trace(my_songs[mySong].@URL) in the playSong() function but this doesn't do anything.

View 6 Replies

ActionScript 3.0 :: Direct Flash MP3 Player To Get Song List From XML File

Nov 12, 2010

What do I need to put in my code to tell my mp3 player to grab its songs from a folder on my server via an xml doc I outputted from my sql server? (The mp3 player is also on the server).

Here's my code:
import flash.events.MouseEvent;
import flash.media.Sound;import flash.net.URLRequest;
import flash.media.SoundChannel;import fl.events.SliderEvent;
var myMusic:Sound = new Sound();
var soundFile:URLRequest = new URLRequest("lpwfte.mp3");
var channel:SoundChannel = new SoundChannel();
[Code] .....

View 1 Replies

ActionScript 3.0 :: Music Player - Play / Pause Specific Song

Nov 27, 2010

At the moment, I am attempting to make a music player that will play a specific song of my choosing. I am stuck at the part where you can pause the sound, and then play it in the same place. I have tried many things such as using the timer utilities. Right now, when I pause it, it stops, and when I press play, it plays from the beginning.
stop();
var channel:SoundChannel;
var soundCheck:Boolean = true;
var song:Sound = new Sound(new URLRequest("song.mp3"));
channel = song.play();
[Code] .....

View 1 Replies

Flash :: Mp3 Player With Playlist Playing The Song That Has Been Deleted Or Changed

Dec 22, 2010

I downloaded player from [URL].. but I don't know why what the problem it had with with playlist. I had a playlist in xml file with songs. When i deleted the mp3 from the server, it is still playing. and when i changed the mp3 files it is still playing the original files. I don't know where these files were saved. I thought it was saved in my browser cache and i cleared it but it didn't work. I thought it was cached in my server, but in my localserver , i had the same problem.

So, again i downloaded the player, and this time it played different song, that i put. I have a hypothesis. Does flash player (swf object) absorb mp3 files?? i don't think so but how come player is playing the mp3 that has been changed or deleted? if it was in server cache then how long will it take to clear the cache and play new file. However, i don't remember coding something like 'cache'

View 2 Replies

ActionScript 2.0 :: XML Player - Flash Button To Call Specific Song?

Sep 7, 2011

I have a flash website that uses an XML player to play the artist's songs. The player works great. Now, I need a specific button in the flash document to call and play a specific song title from the XML list. The button I tried and that is showed in the flash code has an instance name of "santaBaby", calling a function I named "sampleSong1"Here's my XML playlist:

Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<jukebox>

[code]......

View 9 Replies

ActionScript 3.0 :: Mp3 Player Functions - Create Next And Previous Song Buttons

Jan 27, 2009

I don't really use Flash anymore but have been approached by a client to work on a simple-function mp3 player with play, pause, prev, and next song buttons for their website. I'm using [URL] and wanted to learn how to create next and previous song buttons. Here is my code:

[Code]....

View 1 Replies

ActionScript 3.0 :: Why Flash-based Music Player Can't Play A Song From Other Sites

Apr 28, 2009

I am making flash CS4-based music player with ActionScript 3. When I host the player on my site, e.g. [URL], and play an mp3 on the server of my site, e.g.[URL], it works well.

When I link to an mp3 of another site, e.g. [URL], in my local machine, it also works. However, when I host the music player in my site [URL], and play an mp3 of [URL], then it can't be played.

View 8 Replies

Javascript :: Update The Song's Volume For A Flash Player Using JQuery Slider?

Apr 12, 2012

I'm having some trouble with the code below. the flash player has a default volume slider, but I want to use the jQuery slider to change the volume. the volume value(nr) is changing while I move the slider, but the volume of the song doesn't.

<!DOCTYPE html>
<script type='text/javascript'>
$(document).ready(function(){

[Code].....

View 1 Replies

Flash - Xspf Player - Name Of Object Or Code That Defines Current Song Highlighting?

Jan 20, 2010

I'm creating a new look for the xspf player: [URL]The playlist highlights the current song being played. I'd like to change the color but can't find where that option is listed in the .flv file, or in the actionscript file.

View 2 Replies

ActionScript 3.0 :: Mp3 Title List - Stop Button Should Move From Song To Song When Playing?

Aug 19, 2009

I have a list of mp3-songs, when song 1 is clicked it gets streamed, a stop-button appears, if this Btn is clicked, this Btn disappears as it should - but if user forgets to click for stopping sound and clicks song 2, stopBtn 1 remains and the new stopBtn 2 also appears. there should be only one stopBtn, the one next to the song is playing.

I would like to move the stopBtn and I have tried several approaches move; graphics.moveTo; if(stopButton !=null) {removeChild (stopButton)}; I packed the var stopButton:Sprite in the header and so on.

Code:
SoundMixer.stopAll();
import flash.display.Sprite;[code]..........

View 0 Replies

IDE :: Make The Duration Of A Movieclip Equal The Duration Of The Preloader?

Apr 3, 2009

is it possible to make the duration of a movieclip equal the duration of the preloader, i mean is it possible to make something like, the time the preloader needs to reach the 100% = the duration of the movieclip? i'm using AS 3.0 and flash CS4 just in case it helps here is my code for the loader:

Code:
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete);
function loadProgress(event:ProgressEvent):void {
var percentLoaded:Number = event.bytesLoaded/event.bytesTotal;

[code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved