ActionScript 3.0 :: Handling The FLV Metadata?

Jul 27, 2009

I am trying to get metadate from my NetStream object and do things depending on what is going on. here is what I have, but I get an error I don't know what it means.
 
var customClient:Object = new Object();
customClient.onMetaData = metaDataHandler;
function metaDataHandler(infoObject:Object):void {

[code]....

The error I get is:Error #2044: Unhandled AsyncErrorEvent:.text=Error #2095: flash.net.NetStream was unable to invoke callback onMetaData. error=TypeError: Error #1010: A term is undefined and has no properties.
at AMG_ASP_ICS_072709_fla::MainTimeline/frame1()

View 6 Replies


Similar Posts:


ActionScript 3.0 :: FLVPlayback And Metadata?

Sep 20, 2008

I don't know why, I don't know how, but for some reason setting the FLVPlayback.bufferTime property to anything past its default value of 0.1 will (more often than not) make it so the .flv metadata does not ever make it to the video player. Granted, this may also have to do with my slow connection, but I know I am not the only one who has had this problem hose of you who have made players with custom seek-bars know the lack of metadata is can be a problem because the FLVPlayback.totalTime property is set directly from the"duration" property of the FLVPlayback.metadata objecty suspicion as to why this is not a more widespread issue is due to the "one video per player" nature of players on websites. I don't believe that players often reuse the net connection of the same FLVPlayback control to load one video after another (however, I could be wrong, this is all assumption on my part anyways).1) The FLVPlayback's net connection is reused (that is, you call the load() or play() method several times during the lifetime of the videoplayer.

2) You notice that occasionally meta information is never received when you increase the buffer time to a value above the default.3) Your seek-bar does respond or you get a run-time error when you try to seek (most likely because totalTime property NaN and the playheadPercentage property relies on this value)The simple solution (or so I am led to believe ): set the buffer time back to the default value before every call to the new connection. In other words, make sure that the the FLVPlayback.bufferTime property is set to 0.1 before calling the load() or play() method for a new video. This will ensure that the metadata is properly received by the component for playhead calculations.

Code:
//assume we have an existing FLVPlayback component
myFLVplayback:FLVPlayback = this.flvPlayer as FLVPlayback;

[code].....

View 9 Replies

ActionScript 3.0 :: ID3 MetaData Streaming MP3?

Jan 28, 2009

I've been trying very diligently to recieve id3 metadata from a streaming mp3. I have it streaming and it works great, but I need to grab the duration in the metadata.here's the jist of my code,

id3_ns = new NetStream(connection);
id3_ns.addEventListener(NetStatusEvent.NET_STATUS,
netStatusHandler);[code]....

The only other thing I can think of trying is see if my mp3 is screwed-up, but I don't think it is because I can see the
metadata in the properties of the file.

View 1 Replies

Add Metadata For Searching To FLA Documents?

May 29, 2009

In Flash CS3 when you did Modify/Document it allowed you to type in a document Title and Description which were metadata searchable by internet search engines. According to the book "Brilliant Flash CS4" this is still possible in CS4, but I think they have removed the option, and the book is wrong. add metadata for searching to FLA documents or is this now gone?

View 1 Replies

ActionScript 3.0 :: Metadata In SWF Files?

Apr 6, 2010

I´m playing around with SWF files exported from indesign CS4. I wonder if there is a way to read any metadata from those files. Or is there any? I have not found any AS3 method to trace metadata like time/date or even some unique ID...something that I could use later to specify that file.

View 4 Replies

Professional :: Edit A FLA's Metadata?

Nov 1, 2011

For the longest time, I've been tearing my hair out trying to figure out why my CS4 FLAs were getting larger every time I did a Save and Compact. I finally tracked it down to the @#$% metadata. Every time you save an FLA, it appends a useles chunk of metadata to it, that looks something like this:
 
<rdf:li rdf:parseType="Resource">
<stEvt:action>saved</stEvt:action>
<stEvt:instanceID>xmp.iid:BD2F8041D0ACE01185F1A1E26A912C41</stEvt:ins tanceID>

[Code]....
 
This can be viewed in Flash by going to File -> File Info... -> Raw Data.
 
On frequently-updated files, this junk can easily add dozens or hundreds of K to the size of an FLA. So my question is this: Is it possible to edit an FLA's metadata?

View 1 Replies

Flash :: Extract MetaData From An FLV?

Sep 21, 2010

What software is available for extracting metadata from an FLV? I'm testing an flv streaming module for apache (mod_flvx) and need to extract keyframe info from an flv for debugging purposes. I was only able to find FLV MetaData Viewer, but its dated, from 2006, and doesn't install properly on Win7. [URL] Edit: I'm open to any method of extraction, either app or library.

View 1 Replies

Actionscript :: AS3 - How To Set VideoPlayer's Metadata

Mar 6, 2011

I've set a custom client for a FLVPlayback's netStream, to attach my own functions (onXMPData, onMetaData) to parse the various info myself. However, i'd still like to pass the meta data back to the VideoPlayer. How do I do this? I tried dispatching a METADATA_RECEIVED event with the metadata object (tried dispatching from the client, the netstream, the video player, the flvplayback..), but it does not work.

View 1 Replies

IDE :: Using Metadata To Create Listeners?

Oct 20, 2009

I think this is in the wrong forum... sorry! Should be AS3) I am trying to dynamically create listeners using metadata from a list of instance names in an array. Here is my code:

[Code]...

View 1 Replies

ActionScript 3.0 :: Embed Metadata From Variables?

Jan 27, 2011

I have a AS3/CS5 project in which I am dynamically loading in a font whose location is passed in via XML.

I want to then embed the font per below:

Code:
//font location string passed via xml - "/fonts/randomfont.ttf"
var fontLocation = xml.navigation.font.@fontLocation
[Embed(source=fontLocation, fontFamily="font1", embedAsCFF="false",

[Code]....

it works fine. Are you not able to use variables as metadata in the embed tag? Is there a work around for this?

View 7 Replies

ActionScript 3.0 :: How To Access Image Metadata

Feb 13, 2009

An image, like a jpeg, has a bunch of metadata stored in it.The "IPTC Core" metadata usually includes the photographers name,address, title, description, etc.Is there any way to access this information using AS3 so that, say, captions for images in a flash gallery could be generated automatically?

View 1 Replies

ActionScript 1/2 :: Play A Video If Metadata Is Not Available?

Jan 21, 2010

is it possible to play a video if metadata is not available with the particular video file.

View 1 Replies

ActionScript 3.0 :: Getting FLV Embedded Cue Points From Metadata?

Feb 10, 2010

I would like to read in an FLV's cue point names and times and load them into an array which would have the form: [[cueP0, 0.0], [cueP1, 3.2], [cueP2, 6.8], ...]. I wou ld like to populate this array *before* the flv plays through for the first time, so I need to do this when the flv's metadata is first read in.With rom some of the posts in this forum, I have figured out a way to retrieve the cue point names and times (see the following code), but I am unable to "grab" these variables to populate an array with them.

//the function called when flv first loads
var cuePointNames:Array  //an array I created just to see if I can populate it with cue point names from metadata

[code].....

View 2 Replies

ActionScript 3.0 :: Add Metadata To Live Stream

Apr 14, 2010

I'm having some trouble finding out how you can add metadata to a live stream. I'm streaming the webcam over fms and recording it in main.asc. So far so good. I have 2 applications. One that sends data and one that recieves data. The functionality is more or less like this example. The article says: "Note: If you record the video on the server side (a functionality of FMIS), the  injected events are lso being triggered by the recorded file." That is what I want, but I have no idea how to make it happen. The problem is that I can't find any good examles for as3 and I have never looked into as2 (still new to flash in general )

View 1 Replies

ActionScript 3.0 :: Read XMP Metadata From A Jpeg?

May 17, 2010

This seems like it should be a no-brainer, but I can't find any classes to do this ?? I can find classes to read song titles from MP3 files, I want to do similar with jpeg image files. In photoshop and lightroom you can set up titles and captions (and copyright info) in the metadata. When you save a jpeg this gets embedded in the file. How to read this info and parse it and use it once you have loaded it into a BitMapData? I am Flash/AS3.0 code only no IDE

View 1 Replies

ActionScript 3.0 :: Which Is The Equivalent Metadata Tag But For Flash

Mar 7, 2011

I wondered what would be the equivalent of metadata tag used in flex or flash  builder, but for flash or fla .. For example to use with [Injectors]Greetings!

View 1 Replies

Actionscript :: Inject Metadata Into A F4v File?

Jun 27, 2009

I was wondering how do you inject metadata into an f4v file with quepoints? I've been reading somewhere that it's either during encoding or a custom actionscript that embeds when the file runs.

View 1 Replies

Actionscript 3 :: Air - Using XMPCore To Get Metadata Of A File?

Mar 13, 2011

Is there a simple example to read/write metadata of e.g. a local .jpg? XMPCore ActionScript Reference

Unfortunately I was not able to apply the instructions from adobe.

View 1 Replies

Actionscript 3 :: MetaData Of PNG File Format?

Feb 27, 2012

I tried to convert the PNG file into bytes wit the code below

var enc:Base64Encoder = new Base64Encoder();
enc.encodeBytes(bytes);
var base64data:String = enc.drain();
trace("base64data : "+base64data);
trace("end of base64data ");

But what i get is a chunk of characters like this

[Code]...

View 1 Replies

ActionScript 3.0 :: BulkLoader FLV Metadata Error ?

Jun 2, 2010

I'm having a particularly frustrating issue with the BulkLoader API [url] that I thought perhaps someone here might be able to help resolve. What I'm trying to do, is to capture the metadata from a loaded .flv (through Bulkloader) so that I can check its duration. In all my efforts to facilitate this, Bulkloader either misfires once the video has loaded and/or returns null. For the sake of preventing redundancy, here is what I've tried/checked so far...

-I've pulled the metadata of my video(s) through a simple custom net connection... so it is there, and I can grab the duration this way. However, in this particular case, I need the data from BulkLoader.

-I've encoded/re-encoded the video(s), and have also injected custom data. Still no luck.

-I've changed the loading parameter "pausedAtStart" to true, as suggested, and have used netStream.seek() to jump to later frames or back to the first.

Needless to say, this is a very frustrating issue that I just can't seem to find a way around. Here is a link to my source files w/Bulkloader library: [url].

Here is a look at the code:

ActionScript Code:

View 2 Replies

ActionScript 3.0 :: Duration Of External F4v Without Metadata?

Jun 20, 2011

I can find the duration of an external video to be played in my flash presentation?I am loading it to stage using netConnection/netStream.I have found information about the "time" property which tells me at what point the playhead is, but how can I get the total playback time?

View 1 Replies

ActionScript 3.0 :: Set A Root For Embed Metadata?

Oct 13, 2011

I just downloaded the starling API which is the 2D API running on the new Stage3D.

I have run into this issue in other libraries too.

The download package has a folder structure like this

Code:
root
- samples
- starling

[Code]....

So i've set my class path to be root/starling/src.

Now in src, starling has a package of starling/events and inside of that SomeClass.as.

In SomeClass.as there is an embed with a path of "media/blah/blah/somepic.png".

But this fails in the compiler because the embed is looking relative to the class file..

way to change the way the compiler looks for embed assets so that it runs "out of box"???

View 3 Replies

ActionScript 3.0 :: Video MetaData Not Firing?

Oct 19, 2009

I am trying to load a video (~ 1 hour long). Everything works fine except that thonMetaData is never firing.

ActionScript Code:
var customClient:Object = new Object();
customClient.onMetaData = onMetaData;

[code].....

View 2 Replies

Media Server :: MetaData Of Recorded Streams ?

Feb 2, 2010

I have a problem with recorded stream: The MetaData its partialy correct.Most of the informations are correct, but the 2 most important information for me width and height for the video are always 320 x 240 for any recorded stream althow they are published at different WxH.I tried to get my head around this but cant seem to figure out were the problem is.FMLE its used to publish the stream useing H.264 / MP3 codecs.Here is the server side code used to record the stream:[code]....

View 9 Replies

ActionScript 3.0 :: Metadata Not Read Properly On One Server?

Aug 11, 2010

I have an extremely simple video player swf (actually copied from the snippet in adobe help) that progressively downloads and plays an flv. I added a line to display the bytesTotal. When I use a url in the code that points to a flash video on my server, the bytesTotal metadata is not being read or displayed properly (in Safari it displays it as 4294967295 - the highest possible 32-but number, and in FireFox it displays it as the same as the bytesLoaded). However, if I change the url in the code to point to an flv on another domain, it displays the bytesTotal correctly. So, apparently it has something to do with my server. I tried changing the mime types in my .htaccess file to:

AddType flv-application/octet-stream .flv
AddType video/x-flv .flv
AddHandler flv-stream .flv

View 1 Replies

F4V Video File Duration Metadata Is Wrong

Oct 21, 2010

I am using Flash Media Server 3 hosted by Influxis.I use to upload flash videos (flv) to view from our company website, which uses Flowplayer.I got a new video which is F4V, but this video is little wierd, It plays well but the duration shows as 3:00:00 (3 hours) which is actually 11minutes 30 seconds.

[Code]...

View 1 Replies

Flex :: Retrieve Swf Metadata Within Actionscript Of Project?

Sep 14, 2009

I know that it is possible to add swf metadata to the compile command as a command option, but I can't find any documentation on how to access these metadata within the actionscript during runtime. We're trying to add a version number to the swf during compile time and then somewhere in our app we would retrieve it during runtime, here is the command example to add the description metadata.

mxmlc -description "version 1.2.3"

I know the swf metadata is used by search engines and other utilities to gather information about the SWF file, but surely you should be able to retrieve them in the actionscript during runtime?

View 1 Replies

Flex :: Error - Metadata Requires An Associated Definition

Oct 5, 2009

I'm trying to embed a font in Flex and the code I'm using looks the same as the example, but throws an error. This is the code I've written:

[Embed(source="data/posca_mad_thrasherz/posca_mad_thrasherz.ttf",
fontName = "fontGraffiti",
fontWeight = "bold",
mimeType="application/x-font")];
private var funFont:Class;

But I get the error, "Metadata requires an associated definition." I can't seem to get rid of it.

View 1 Replies

Flex :: Display Very Detailed Metadata About A File?

Oct 17, 2009

I have a situation where a simple query against a table is returning incorrect values in Flex, but not in other GUI front-ends to SQLite.

select title from ttl where ttl.ttl = 140 // ttl is also the column name of the PK column

is returning the title that belongs to the row whose PK = 1400.

ttl.ttl is defined as int datatype.

Again, the problem manifests itself only in Flex, not in other GUI front-ends to SQLite, which are returning the correct title value.

View 1 Replies

Actionscript 3 - Reading Embedded Metadata In Flex?

Jan 3, 2010

I saw that you can embed meta-data into images very much like you can in mp3s, here.

Can someone point me to a tutorial of how to embed and read this sort of information w/ photoshop and flex together? I really wouldn't know where to start... Tried googling but I'm not sure I have the right keywords down.

View 3 Replies







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