How to deal with FLV with missing meta data?

I have and will get flvs in the future with missing meta
data.
I think for the most part the meta data that is missig is the
file length.
The exact files that are not working on our server are
working on some other companies FMS.
They must have some workaround actionscript on the server or
configuration that is making it work.
I'd like to know that workaround or that configuration
change. That would be the ideal fix.
I already know how to fix the FLV after I download it but I
wanted to know if there is another way to deal with this problem.
One were I can leave the FLVs alone.
Is there some serverside actionscript that would tell FMS the
length of the movie or change the configuration of fms to deal with
this somehow.
Any ideas?

If you are using the same database and referencing two tables then you dont need special configuration for it. You use single jdbc adapter. In ESR you create two statment structure one for each table. This is one option. The second option is use join statment and write query and in this case one statment data structure.
Please go through the help sap link for the jdbc document structure.
http://help.sap.com/SAPHELP_NW04s/helpdata/EN/2e/96fd3f2d14e869e10000000a155106/content.htm
The second option can be done using the below structure.
<StatementName>
<anyName action=u201D SQL_QUERYu201D >
<access>SQL-String with optional placeholder(s)</access>
<key>
  <placeholder1>value1</placeholder1>
  <placeholder2>value2<placeholder2>
</key>
</anyName > 
</StatementName>

Similar Messages

  • [JPA] Exception Description: Missing meta data

    I'm getting the following error message trying to compile a simple EE App that
    contains a single Entity Class.
    Exception Description: Missing meta data for class [java.lang.Integer].
    Ensure the class is not being excluded from your persistence unit by a
    <exclude-unlisted-classes>true</exclude-unlisted-classes> setting.
    If this is the case, you will need to include the class directly by adding a
    <class>[java.lang.Integer]</class> entry for your persistence-unit.That class contains a private Map<Long, Integer> list and I'm using SJSAS 9 and NetBeans 5.5.
    Thanks in advance,
    Stefano

    I'm also experiencing this problem.
    I'm pretty sure the cause of this is your "Map<Long, Integer>" and my "List<Integer>".
    Doesn't GlassFish implement this JPA specification?
    I see the post is been unreplied for a month: Please, somebody help us!
    Tks,
    Raul Oliver

  • How to create a .flv with only audio?

    So what I'm looking to do is have sound play on my landing
    page...the problem is, I used .fla file and it won't play until the
    entire thing is loaded. I know how to get progressive play with a
    flash video file, but I don't know the best way the convert an mp3
    file in to video...
    What I'm looking to do is simply have sound start playing as
    soon as they land on the page, I don't want them to have to wait
    for the whole thing to finish loading first...anyone who knows the
    simplest way to accomplish this?
    Sorry if it's a simple question, I was going to shell out
    some money for 'flash for dummies' or something similar, but since
    I generally don't work with flash and just want to do this one
    thing I'd thought I'd check on here first ;)
    Thanks

    To do what you want, my approach is to create a small (160 X
    120) movie
    consisting of a single black frame in AfterEffects or
    QuickTime Pro and add
    the MP3 file as a sound track. With the movie completed,
    import it into the
    Flash Video Encoder to create the FLV. Then, in Flash, play
    the movie using
    the FLVPlayback component. The player can even be placed off
    the stage so
    that the black frame is never seen. Set the ContentPath of
    the player to an
    external file, the one you created earlier.
    Since the file had only a single black frame, the video track
    will
    contribute very little to the size of the FLV; it will be
    mostly audio.

  • Search Issue with OCR Files and Meta data

    We have setup SharePoint 2013 on windows 2012 server. It is have cumulative update until August. Its version is 15.0.4535.1000. 
    I have created two site content type of document type. Both content type have 4 site column which are common in them. Both have two site column separate in each. I configure search service application, which is also working very good and also don't have any
    kind of error. I have added this two content type in one document library which have lot of sub-folders
    All Files are OCR pdf which is done by meta data
    Now the issue is that when I search anything from search center, sometimes I will get result with data from site columns and sometime i will not get data but just link to file and Name of the file. Wired thing is that columns are common and they crawling Full
    and Incremental also properly.
    Below is the screen for my search where you can see that there is no summary. How can I bring summary
    So what can be the issue for this. 

    Hi,
    For metadata, which metadata are you not seeing? Are they custom properties within the PDF, and have you checked if you have crawled properties matching these?
    I know there's issue with last modified on PDF's (http://sharepointfieldnotes.blogspot.no/2013/05/understanding-and-getting-sharepoint.html) 
    Thanks,
    Mikael Svenson
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • Missing Meta data in Gallery JSON file

    I have bought a GEOtagger device and I am using GPS2Aperture to get the meta data into my Aperture library. But when you export the pictures to a Web Gallery Album the meta data is not exported. I found out it is not MobileMe too blame. When you look at the JSON file that is created by the Aperture export function you will see that the meta data is missing! The JSON file is located at: iDisk (iDisk > Web > Sites > _gallery > yourgalleryname), you'll see a list of folders each containing the photos in that particular gallery. And within each folder, there's a file called exif.json, which is a type of JavaScript that holds the EXIF information.
    I looked on the Internet to see if other users have this problem but it seems I am the only one This automatically raises the question: Is it just me or is noby using GeoTags?
    Anybody else has this problem?
    Message was edited by: kwarts

    I am having the same problem whereby Aperture sometimes exports the EXIF information and sometimes it doesn't. The photos are geotagged, and Aperture shows this information. But, sometimes it appears with the info command in a Gallery and sometimes not.
    I've got to check more closely, but it did appear in a gallery for which I allowed downloading. But, it did not appear in a gallery for which I did not allow downloading. I'm not sure, yet, if this is what does it.

  • How to deal empty field with jsp:setProperty ...

    Ive come across a bug in what I've done so far, not sure if its because of my approach...
    I sucessfully store a value entered in a text field in a bean without any problems, and navigate back to the page where the value re-appears (via html, not relying on the browser). The problem is, if I edit that field to be blank, resubmit, then navigate back, the old value returns.
    As far as I can tell, this is due to my jsp interpreting the input as null (ie. no input) and not changing the tag. IE sends the parameter as myPage.jsp?para1=&para2=some+value as it should (where para1 is the input in question).
    I use the 'parameter="*"' usage of jsp:setProperty - is that a problem? Does this usage of setProperty not allow for setting values back to "" ? If so, how can i overcome this problem without losing the benefits of using <jsp:setProperty name="myBean" property="*">, that is, you can store all property values in javaBean in one go, instead of repeatly using <jsp:setProperty name="myBean" property="myProperty" value="myValue"> for each property.

    hi,
    first clearly tell u' r problem and then only any one can help u.
    we are not unable to understand u'r query. it's like a Composition.
    Bala
    Message was edited by:
    art84

  • Moving LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?

    I moved LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?
    The meta data for each image is missing.
    I have over 2,000 images. I don't want to go back through each image and add meta data.
    Is there some way to move everything?

    No, do not re-import your images. I assume you can see the thumbnails in the library module, just cannot access the full images, right? If this is the case there should be an exclamation mark in the top right corner of every one of your pictures and you only have to tell LR where the images are now.
    Click the exclamation mark of one of the images and a dialog window should pop-up, telling you that LR cannot find the file, but with an option to locate it. Press "Locate" and navigate to the folder on your new HD where the file is. If in the new external HD you kept the same folder structure that you had on the internal disk, LR will be able to find all your images and re-link them to the database without further intervention.

  • Exporting Versions to image with meta data

    Hey folks, I'm looking to find an Aperture Plugin that will export processed images (versions) with all its associated meta data in XML format.
    I intend to use this exported data in a custom application - I've seen export plugins to Picasa, and others, but so far they just seem to handle the images alone.
    Can anyone suggest a location to where I might find such a beast? (or is anyone in development of this? - I'm very surprised it isn't included as a built-in feature.
    Thanks in advance,
    Ted

    Has anyone had success with Ubermind's Aperture to FileMaker?
    I've had it work once or twice, but usually, despite rigorously following their apparently simple instructions, Aperture refuses to recognize the database.
    Would be pleased to know if there's something they haven't been clear about in their instructions.
    Regards,
    Brent

  • Meta-Data are missing for table

    Dear ALL ,
    I am trying to call "HR_READ_INFOTYPE" from a Java program using rfc and I got this error:
    " Meta data equal to null is not allowed for field INFTY_TAB with type TABLE in meta data instance TABLES "
    the required table INFTY_TAB is used as a generic table in the function module. I tried to use PA0008 but it seems it is not possible to use it through  RFC call.  How can I avoid this exception?
    Thanks in advance.
    Mehdi.

    Hi,
    This function by default is not remote enabled. Loot at BAPI to access/modify infotype data?
    Regards,
    Jarek

  • How can I transfer the meta data to the Oracle OLAP Object?

    When I finished in building a simple DataWare house demo in the warehouse Builder, I got meta data. But it seems that those doesn't present in the "<Database>" - "OLAP" - "Dimension" where the Sample "SH" resides.I just want to export those metadata to the SQL script, but failing to import the script to the Database. How can I transfer my demo's meta data to the OLAP Object? It is the last step to finish the whole process and I can't solve the problem.
    I'll appreciate any one who can help me.

    Hello,
    To enter/move the metadata for dimensions and facts to the OLAP catalog, you need to perform the following actions:
    1) Create a business area in the OWB business tree holding the dimensions and facts you want in OLAP
    2) Perform a metadata export, using the bridge (not to file!)
    3) This will launch a wizard that will guide you through this process, follow the instructions carefully
    4) Upon completion you will see metadata added into the OLAP catalog
    We will be releasing a new version for this, which will be running on 9.2.0.2 database that allows you to use all the new 9i Release 2 OLAP features. This will create Analytic Workspaces from Warehouse Builder and should be released late this year (around end of November).
    Hope this helps,
    Jean-Pierre

  • Used Relocate Masters to new g-drive. Lost Aperature Library and meta data

    how i crashed aperature
    1.56 aperature
    all updates current
    tiger 10.4.11
    all updates current
    Goal was to move Aperature Library from MBP to g-drive.
    what i did:
    1. "Relocate Master" to g-drive. Success. Aperature still viewed all Files with all Meta Data normally.
    2. Collapsed "Library" in Projects Panel. Did not delete Projects. Did not delete any Photos.
    3. Preferences > Image Management > set new Aperature Library on g-drive.
    4. Uploaded new photos from a Canon and viewed them successfully.
    5. Ejected g-drive correctly.
    what Aperature is not doing now:
    1. no Projects show up.
    2. no Referenced Photos show up.
    3. no Vaults show up. Note: the Vault was originally on MBP, but I foolishly did not set one up on g-drive before moving. I also have a back up Vault on a different g-drive that is, unfortunately, not up to date with all current photos before move.
    4. Aperature Library on g-drive is there but can not open any files in it. [note: item 3 above]
    5. Image files listed in g-drive but won't open in Aperature but do open in Preview or Gimp, etc.
    6. Aperature does not show any Vaults nor does it access Referenced Files.
    *Can you help ?*
    *I guess these would be the questions:*
    1. How can I get the pics from the g-drive back into an Aperature Library with all the previous Meta Data attached to each Version?
    2. How do I get the Aperature Library - I put on the g-drive - to open in Aperature?
    3. If #1 is impossible - I guess I set up a Vault on the g-drive and move what I have from the back up Vault mentioned above.
    *Thanks for any advice !!!*

    If I an not mistaken, I may have read through your pdf's quite a while ago. I am still trying to digest them and then apply them to my needs. If I had known that small projects may be faster and easier to manage than larger ones I would have done my imports quite differently. I chose to use Aperture in the first place to organize and add information to photos. I archive old photos. In particularly from 350th Fighter Group, WWII in the Mediterranean. So one "Project" of mine is =/-5000 images in the form of TIFF scans. I imported all of these into 1 project. Then I started applying metadata and keywwords like crazy. This allowed me to start to sort the photos into categories and find multiple version of the same image. I started making stacks of all the multiples. Then with smart albums and smart web sites I was able to create what might now be smaller projects. Since I gather information from others by sharing these photos on a website, You are able to see the smart websites here.
    http://web.me.com/vizcarraguitars/350thFighter_Group_Blog/350th_FG_Blog/350th_FGBlog.html
    One cool thing is that various images reside in multiple smart webs based on common keyword. But now that I have all this organization, it seems it is time to put all my originals in a similar order via Aperture.
    By the way, my files are reference files unless I make the mistake of importing them without leaving them in there original location.
    I am thinking of starting over with blue folders. But I can't seem to get my head around it.

  • Problem writing meta data changes in xmp in spite of enabled settings

    Dear Adobe Community
    After struggling with this for two full days and one night, you are my last hope before I give up and migrate to Aperture instead.
    I am having problems with Lightroom 5 writing meta data changes into xmp and including development settings in JPEG, inspite of having ticked all three boxed in catalog settings.
    In spite of having checked all boxes, Lightroom refused to actually perform the actions. I allowed the save action to take a lot longer than the saving indicator showed was needed, but regardless of this no edits made in the photo would be visible outside Lightroom. I also tried unticking and ticking and restarting my compute.
    Therefore, I uninstalled the program and the reinstalled it again (the trial version both times). I added about 5000 images to Lightroom (i.e. referenced). After having made a couple of changes for one photo in development settings, I tried closing the program. However, then this message was then displayed:
    I left the program open and running for about 5-5 hours, then tried closing the program, but the message still came up so I closed the program and restarted the computer. I tried making changes to another photo, saving and then closing and the same message comes up. The program also becomes unresponsive, and of course still no meta data has been saved to the photo, i.e. when opening it outside Lightroom, the edits of the photos is not shown.
    What do do? I would greatly appreciate any insights, since I have now completely hit the wall.
    Oh yes, that´s right:
    What version of Lightroom? Include the minor version number (e.g., Lighroom 4 with the 4.1 update).
    Lightroom 5.3
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.)
    I installed the program two days ago and then for the second time today.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac".
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36
    What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    JPEG
    If you are getting error message(s), what is the full text of the error message(s)?
    Please see screen dumps above
    What were you doing when the problem occurred?
    Trying to save metadata + trying to open images that it seemed I had saved meta data to
    Has this ever worked before?
    No
    What other software are you running?
    For some time Chrome, Firefox, Itunes. Then I closed all other software.
    Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    4 GB 1333 MHz DDR3
    Has this ever worked before?  If so, do you recall any changes you made to Lightroom, such as adding Plug-ins, presets, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers, or installing/uninstalling any programs?
    No, the problems have been there all the time.

    AnnaK wrote:
    Hi Rob
    I think you succeeded in partly convincing me. : ) I think I will go for a non-destrucitve program like LR when I am back in Sweden, but will opt for a destructive one for now.  Unfortuntately, I have an Olypmus- so judging from your comment NX2 might not be for me.
    Hi AnnaK (see below).
    AnnaK wrote:
    My old snaps are JPEG, but I recently upgraded to an Olympus e-pl5 and will notw (edited by RC) start shooting RAW.
    Note: I edited your statement: I assume you meant now instead of not.
    If you start shooting raw, then you're gonna need a raw processor, regardless of what the next step in the process will be. And there are none better for this purpose than Lightroom, in my opinion. As has been said, you can export those back to Lightroom as jpeg then delete the raws, if storage is a major issue, or convert to Lossy DNG. Both of those options assume you're willing to adopt a non-destructive workflow, from there on out anyway (not an absolute requirement, but probably makes the most sense). It's generally a bad idea to edit a jpeg then resave it as a jpeg, because quality gets progressively worse every time you do that. Still, it's what I (and everybody else) did for years before Lightroom, and if you want to adopt such a workflow then yeah: you'll need a destructive editor that you like (or as I said, you can continue to use Lightroom in that fashion, by exporting new jpegs and deleting originals - really? that's how you want to go???). Reminder: NX2 works great on jpegs, and so is still very much a candidate in my mind - my biggest reservation in recommending it is uncertainty of it's future (it's kinda in limbo right now).
    AnnaK wrote:
    Rob Cole wrote:
    There is a plugin which will automatically delete originals upon export, but relying on plugins makes for additional complication too.
    Which plugin is this?
    Exportant (the option is invisible by default, but can be made visible by editing a text config file). To be clear: I do not recommend using Exportant for this purpose until after you've got everything else setup and functioning, and even then it would be worth reconsidering.
    AnnaK wrote:
    Rob Cole wrote:
    What I do is auto-publish to all consumption destinations after each round of edits, but that takes more space.
    How do you do this?
    Via Publish Services.
    PS - I also use features in 'Publish Service Assistant' and 'Change Manager' plugins (for complete automation), but most people just select publish collections and/or sets and click 'Publish' - if you only have a few collections/services it's convenient enough.
    AnnaK wrote:
    Would you happen to have any tips on which plugins I may want to use together with Photoshop Elements?
    No - sorry, maybe somebody else does.
    Did I get 'em all?
    Rob

  • Can you create meta-data templates in Lightroom?

    At the moment, I'm using a workaround whereby I add a photo with some of the meta-data to an album then I sync meta-data. But it's a bit of a hassle and I know you can do it in Elements.

    You need to look in the application support folder.
    Go into LR's Preferences , Presets tab, Location section, click Show Lightroom Presets Folder.
    That opens Finder/Explorer. Open the folder "Lightroom" and look for "Metadata presets". You can copy this folder, or individual files, to the same place on the other computer.
    John

  • How to deal with relation

    Hi
    I am trying to import two beans(TestBean and HelperBean)into my Web Dynpro project to create a model. These beans are dealing with a List(ArrayList). This List is considered as a Relation. I am facing problem in handling this relation.
    I am having both the TestBean and HelperBean in the same package. Below is the code of TestBean. This bean is in turn calling HelperBean ,which is returning a List.
    I am getting an error while creating model -
    <b>[Error]: There are one or more relations unresolved. Importing the model without resolvoing the relations might result in erratic output.</b>
    <u><b>Code For TestBean</b></u>
    public class TestBean implements Serializable{
         private List customerList= null;
         HelperBean helper = new HelperBean();
              public void execute(){
              try{
                                            customerList = (ArrayList)helper.getCustomerList();
                   catch(Exception ex){
                        ex.printStackTrace();
          * @return
         public List getCustomerList() {
              return customerList;
          * @param list
         public void setCustomerList(List list) {
              customerList = list;
    I am new to Web Dynpro and don't know how to deal with relation.Please inform if there is some solution.
    regards,
    Sujit

    Sujit,
    Not every bean becomes model class during import. So your HelperBean is irrelevant here. But you miss other bean, namely Customer bean. You must add it as model class during import, then select problematic 0..n relation and resolve it to model class Customer.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • How to deal with the depth testing of Iterator Patch?

    Recently I use Iterator Path to make my effect. I met some problem. I couldn't deal with the Sprite depth testing. I found it useless to set depth testing of the Sprite Patch. And also I don't know how to deal with the layer of the subpatch in Iterator.

    rp0428 wrote:
    All you can do is remove any reference to it:
    myGame = null;If that was the last reference then it will be eligible for garbage collection and it MAY be collected.And note that there's rarely a good reason to do this. In most cases, simply letting things go out of scope when the method that uses them ends is sufficient. About the only time you need to explicitly set something to null like this is, for example, if you're implementing a collection class and you want to remove an entry.

Maybe you are looking for