ActionScript 3.0 :: Volume Levels Between Flvs Are Very Different

Jan 31, 2011

I made a video player that plays through flv videos one after another for an in-store display. My problem is that volume levels between flvs are very different, one flv volume levels would be louder than other flvs vice versa.So I'm thinking if I could equalize the volume levels using sound channel but have no idea where to start. Can anyone point me in the right direction on how to properly adjust/equalize volume levels so they all sound the same?

View 4 Replies


Similar Posts:


ActionScript 2.0 :: Get The Levels Of Volume (peak Levels) Of Multiple Sound?

Jan 9, 2005

I believe that my question here is a little hard, or maybe impossible. But here it goes:

How can I, in Flash, get the levels of volume (peak levels) of multiple sound frequencys from an audio file, so that flash would recognize them?

View 1 Replies

ActionScript 2.0 :: Get The Levels Of Volume Of Multiple Sound Frequencys From An Audio File?

Jan 9, 2005

How can I, in Flash, get the levels of volume (peak levels) of multiple sound frequencys from an audio file, so that flash would recognize them?

View 1 Replies

ActionScript 3.0 :: Simple Volume Slider That Controls The Master Volume Of The Entire Swf?

Oct 6, 2009

does anyone have an example of a simple volume slider that controls the master volume of the entire swf?

View 1 Replies

Flash :: Volume Slider - Volume Doesn't Change Until Mouse Over?

Nov 21, 2009

I've created a small music player with a sliding volume control. I'm having trouble with the volume. Though it does control volume properly, if I set the initial volume to less than 100%, the volume always starts at 100% until I move my mouse over the player. At that point, the volume changes to whatever the initial volume is set to.Is this a flash bug, or am I missing something? Here is the affected code (code for other buttons/functions omitted for brevity):

var song_initvolume:Number = 100;
slider_1._x = groove_1._x + song_initvolume;
playSong(0,song_play);[code]....

I'd like to be able to set the volume at say 50%, but the above mentioned behavior happens each time.

View 2 Replies

Flash :: Reverse Sound Volume Math For Volume Slider?

Feb 1, 2010

I'm building a video player and am kinda stuck at the volume slider part. It's a YouTube style vertical slider, meaning if the slider is in the top position volume should be 100% and if the slider is dragged to the bottom position sound should be 0. Currently it's doing the opposite of what I want :(

Dragging the slider down will make the sound louder, while dragging up lowers it.

Here is my code below dealing with the volume slider.

[Code]....

The (-4) is an offset value so when you drag it all the way to turn it off, it's 0 and not 4. I need to reverse this somehow, so the traces above will swap... going down will make userVolume = 4 and going up will make it 30.

View 4 Replies

Actionscript 3 :: Volume Controls - Volume On Or Off Through The Games?

Apr 12, 2012

I've got a serious of games which in turn load off a main main swf.I have mute and unmute buttons on the main menu and the same buttons in each game.When I unload/load a game I want the volume to stay as it is so they player doesn't have to keep turning the volume off. AudioOff is the button shown when the volume is off and AudioOn is the button shown when the volume is on.The code I've got now keeps the volume on or off through the games but the buttons aren't showing up correct with this code..

if (SoundVolume.volume == 1)
{
AudioOn.visible = false;[code].....

View 2 Replies

ActionScript 2.0 :: Volume Slides But No Volume Change?

Sep 10, 2011

I converted the slider bar and slider button to buttons. Then, I made the slider button into a movie clip.

Here is the code I placed while slider button was a button:

Code:
on (press) {
startDrag(this, false, left, top, right, bottom);
}

[Code]....

It seems right to me but I don't know. The movie button slides down the slider bar but it just doesn't affect the volume. Going to try to attach my FLA to offer better insight. Just tried to upload it and no matter if it's FLA or zipped FLA, it says it failed.

View 1 Replies

CS3 : Too Many FLVs Loading?

Jan 22, 2010

I have one .swf that references several FLVs in a separate folder. That .swf is embedded several times on one webpage and each one references a different video.My only problem is that they all load when the page loads. I would like the first video to load automatically (not play automatically, just load) and the rest to only load when they are clicked.I have been trying to control the buffering with JavaScript where the .swf are embedded but have been unsuccessful.I have also fooled around with the buffer time parameter of the FLVPlayback component and still no luck.

View 3 Replies

ActionScript 1/2 :: FLVs Will Not Play From CD On XP

May 7, 2010

I have a Flash CS3/AS2 project containing swfs with FLVs. When I Publish the "START.fla" which pulls all the files together, I tell Flash to create a "Projector" for Mac and an "EXE" for Windows. On my (OS X) desktop this Projector thing works perfectly...swfs open from a menu in my GUI, the swfs reference flvs and the flvs play. The swfs are in the same folder as their flvs.

If I put this whole folder full of files over to the WinXP box (via shared folder), double click on the EXE - no flvs will appear. Everything "leading up to" an flv works - but where there should be a video there is none. Moving on I burn the project onto a CD. When I open the CD on the Mac and find the Projector - I double click and it still works great. Everything flawless.

I put that same CD into the WinXP (SP3) box, find the EXE and double click. As I expected - no improvement, the GUI opens,the swfs can be launched from the menu, but no flvs appear. I get the swf that references the flv - but no flv. I even waited extra time thinking it would eventually happen. No. Why it should work on Mac and not on XP? Where should I look for the glitch?

View 1 Replies

IDE :: CuePoints Work In Some FLVs, Not Others?

Mar 12, 2009

I am having an issue with setting CuePoints in a FLV that is not natively FLV. My code works on files that were exported directly from AfterEffects to .FLV. However, some of the video files I am working with are originally .MOV files. When I pass them through either Adobe or Flash Media Encoder, the CuePoints are not recognized. It seems very strange.

Here is the code, although the code works perfectly with native FLVs, so I don't think that is the problem. I'll put it on here just in case.

Code:
myFLVPlayBack.onRollOver = function () {
playHover.gotoAndPlay(2);
}

[Code].....

View 1 Replies

ActionScript 2.0 :: Flash 8 - How To Play FLVs One After Another

Apr 3, 2009

How to play flv's from Action Script2 one after another? Let's say I have 3 clips .flv. And I want to play them one after another.
In case I'm writing this:
myFLVPlybk.contentPath = "1.flv";
myFLVPlybk.contentPath = "2.flv";
myFLVPlybk.contentPath = "3.flv";
Only the last clip is playing actually. How can I implement "one after another"?

View 1 Replies

ActionScript 3.0 :: Play Two FLVs Continuously One After The Other?

Apr 23, 2009

i need to play two FLVs continuously one after the other - you might think it's an easy task, but every time i try to do that there is this annoying gap between the videos that flickers, and it's have to be seamless.the ON_COMPLETE event worked poorly, so im sampling the playheadTime of the first FLV and test it for it's end, minus a certain offset value.. but the lag is still there.i ever rewrote the FLVPlayback component to my own NetStream object extending, hoping it will take less run-time memory consuming but noting...and the thing is,the lag sometimes happens, and sometimes don't..when trying to sample the gap it brings me different values every time, but there is no way to correct it,because changing the playheadTime causing a random, few milliseconds lag itself, and we are back to square one..

View 3 Replies

Implement Closed Captioning Into FLVs?

Feb 29, 2008

implement closed captioning into my FLVs. I have successfully set up the FLVplayback component, and the FLVplaybackCaptioning component to work. That's not the issue. The issue is, once I have my swf, flv, and xml files (needed to successfully use CC in a FLV), I need to insert that .swf into my captivate project.

It appears to insert/import OK, but once I publish the project, the swf does not appear, and in fact the FLV icon sits on the slide rapidly blinking. Neither the video plays, nor can I even see the playback component/closed caption component (swf) that holds the FLV.

All paths are relative, so the only things I can think of that may be causing the issue are:

a)Captivate doesn't support CS3 FLVPlayback or
FLVPlaybackCaptioning components

b)Since Captivate allows importing of FLV files directly, running the FLV through the component's swf is a problem

c)The hierarchy of files needed for the Closed Captioning FLV (xml, flv, swf), interfere with compiling the new Captivate .swf
upon publishing I've also been told that the FLV captioning component only works in Actionscript 3.0 which runs on Adobe Virtual Machine 2.Captivate publishes .swf files using Actionscript 2.0 which runs on Adobe Virtual Machine 1. Therefore, what I need to do will not work.

View 4 Replies

ActionScript 3.0 :: Get First Of Several External FLVs To Play?

Dec 14, 2009

I have five videos that play on command when you click one of five buttons.  I want to make two enhancements to this script and I need an expert's help (because clearly I'm clueless!).

#1 - Even though I have the vidPlayer (aka flvPlayback component) setting set to "true" for autoplay, the area where the videos are set to play remains blank until clicking on one of the buttons. How can I get the first video to truly "autoplay"?

#2 - I would like to have the videos play in sequential order when the last video is finished, then stop after the last (fifth) video has played.  How can I get them to play back-to-back?[code]...

View 5 Replies

ActionScript 3.0 :: Play FLVs In Sequence Without A Gap Between?

Jul 22, 2010

I have single FLV file which is quite big. I want to encrypt it and decrypt but it takes too long. My best idea was to split video into smaller videos using third party software and apply my encrypting and decrypting functions to each one separately. Unfortunately I have a problem with gaps between loaded FLV files. Video has to be smooth without any pauses.

View 0 Replies

ActionScript 2.0 :: Getting Flvs To Play Incrementally?

Jan 2, 2007

I am having trouble getting my flvs to play incrementally. I can only get it to play the last flv in my array.

Code:
_root.stop();
//
vidList = new Array("item_overview_ae476x264768K.flv",

[Code]....

View 4 Replies

ActionScript 2.0 :: How To Load Multiple Flvs

Dec 20, 2007

I have 3 videos to load into a single flv component. I want to be able to load these movies randomly. How would I go about doing that? I have no idea how to start

View 1 Replies

ActionScript 2.0 :: Resize Flvs In Flash?

Apr 23, 2008

I'm adding a "view large" capability to my video player, however I have noticed that if I straightforward code

on press. got twice as big,

the color, tone , sharpness is greater than if I..

I'm using flash tween I don't know if there is a better tweener out there?

View 7 Replies

ActionScript 2.0 :: Loadin Up A Bunch Of FLVs

May 2, 2008

I'm tasked with creating a site that runs full-screen video in the background at all time. I have it set up in XML in "batches" of 10-second clips that correspond to navigation sections. Currently the video just selects a random clip out of that batch once the current video has stopped playing, so it gets a random chain of videos.Of course, when it gets onto the crappy server, my framerate plummets (first disappointment) and i get a little pause in between clips (second disappointment). What I'd like to do is start loading the videos once you get to the site and hope that they're cached by the time they come up. My first thought is to put those batches into shuffled arrays rather than pulling them randomly at load, so I can at least have a predictable order.

View 4 Replies

ActionScript 3.0 :: Play FLVs Simultaneously Within Swf?

Mar 14, 2012

I am creating a flash "video jockey" station. I have 9 videos that are different parts of a song. Each video is loaded upon the loading of the swf with a volume of 0 . When the buttons given are pressed, they unmute and expose the video. I have it set to a 36 second loop. I have coded in a rewind for each video. When I export it for html, the rewind and play no longer matches up. I feel like there may be a simpler way to code what I am doing, and a way to say that all videos should match up based on their location within their 36 second play time. I have included the actionscript3 I have written for two of the videos. Imagine this with 9 total videos and background music all having the same rewind function.

stop();
import fl.video.*;
var pb:FLVPlayback = new FLVPlayback();
pb.source="videoOne_2.flv";

[Code]....

View 6 Replies

ActionScript 3.0 :: Pre-Caching Multiple FLVs At Once Possible?

Mar 11, 2009

Any input on precaching multiple flv's at once to make sure they all play properly at once? Fairly small filesizes/resolutions/compression all around. I'm open to ideas. I plan on using a preloader to go from 0 to 100 as the videos precache.

View 1 Replies

ActionScript 3.0 :: Can't Play FLVs In Full Screen?

Dec 8, 2008

I have a presentation that runs fine when its being playednormally, but when I try to get it to go into full screen mode witha button click it goes black and won't load the videos.Somehow in the past I was able to see the errors, but now Ican't get the same error to pop up.

View 1 Replies

Using Buttons To Launch Flvs As Defined In An Array?

Jun 3, 2009

a lot of the details and actionscript for my project were dealt with in another thread[URL].. what I would like to do is use buttons to jump between videos that are being fed to flvplayback, I have the actionscript skills of a rural victorian coal miner, fortunately I have the drive and bloody mindedness of a rural victorian coal miner so hopefully these things should balance out.
 
the action scrip I have scrawled for my button so far is as follows...
 
function introductionHandler(evt:MouseEvent):void{  // load given movie  videoIndex = 0;}introduction_btn.addEventListener(MouseEvent.CLICK,introductionHandler );

View 2 Replies

Actionscript :: Adding Cue Points To A List Of Flvs?

Jun 4, 2009

I have a list of flvs that are selectable with buttons and I would like to add cue points to the individual videos to trigger other events and I'm afraid my skills are lacking here.How do I target an flv in a list to add cue points and how do I target these cue points to trigger movie clips?

View 3 Replies

ActionScript 3.0 :: BytesLoaded Preloader Not Accurate For FLVs

Nov 8, 2009

After wrestling this flash flv slideshow for the last few days, I finally have it running smoothly locally. The problem is that on a server it has serious issues. I see a blank screen where the flv should be... I assume it's still loading or buffering. That's a problem as is, but when it's in this state, nothing else works on the site (flash site-one swf). If you wait for sometimes 10 minutes the flv finally shows and the site works great. All of this obviously depends on the connection.

So I understand that this could be caused by the size of the 10 flvs. I'm using the FLVplayback component by the way. So that's fine for now, but I just want a preloader at the beginning to only go to frame 2 after the intro flv has been loaded. I thought this would be simple using bytesTotal and bytesLoaded. I was wrong. Below is the code I'm using. When you view the page the preloader seems to work, but after it runs - you are directed to the second frame... showing the "skip intro" button (which doesn't exist on the 1st frame)... but the flv doesn't show. It's actually still loading... 5-10 minutes later it shows up and the site works fine. My preloader isn't showing the progress of the flv load.

You can see what I'm talking about by viewing my project... if you're on a connection like mine you won't be seeing much: [URL]

Does anyone know of a preloader specifically for FLVs... maybe one that reads the buffer progress?

[Code].....

View 5 Replies

ActionScript 3.0 :: Play Multiple FLVs At The Same Time?

Apr 19, 2010

play a number of FLV files at the same time on one SWF? Basically I have a brief to create a video banner with a number of FLVs of people playing at the same time but starting at different points in the videos. My concerns are with loading times, memory consumption and the starting of each FLV at a different point and looping it.

View 1 Replies

ActionScript 1/2 :: Preloading Large FLVs Inside Of A Swf

Jul 30, 2010

I have a client that I have developed a trailer for their project. Its a swf and at certain keyframes large videos play, the my listener tells the time line to continue on  its path, and eventually hits a new large video.
 
These videos are not playing very well for the client, when they start typically they stutter.
 
Client is mad now and I need a solution. I am using actionscript 2.0 . How can I have each flv loadup all the way before it starts playing so it'd be smooth. I was hoping there would be a plugin or something I could buy that would show a loading bar and then have it go.

View 20 Replies

Media Server :: Recorded FLVs Manipulation?

Sep 4, 2010

I'm creating a Flex application that enables users to communicate in a kind of video chat room. I only allow to live streams at any given moment. I'm using FMS to record the videos in FLVs. What I need to do is post process those videos and create a single video with all that happened in the video room. That means that I need to combine 2 videos, reduce the size of one of them so it appears over the other one. In other words one video will use the whole space an the other will appear at the upper left corner (over the other video,).
 
I need a server side solution for this. I created another post here and someone suggest a screen capture solution. That would work perfectly, but since this appliction will be used for several people and any time, I want the process to be automaticaly not manual. So, I'm thinking I can do it with FFMPEG, but I need a way to identify in which order I need to compose the videos. Something like adding a time stamp to each FLV in FMS (when they are recorded). How can I add custom metadata to the FLV?

View 1 Replies

Professional :: Play Many Flvs Using Player Control?

Apr 25, 2011

I have a folder of sales training lessons (flvs) and I want to play each one of them by clicking a button and to have each one use a common playback control. When I us the follwing code I get a "1120: access of undefined property error".
 
stop();
function playAud1(evt:MouseEvent):void { player.source = "audio/The_Profession_Called_Selling.flv";}seg1_btn.addEventListener(MouseEvent.CLICK, playAud1);

[Code]....

View 1 Replies







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