Preserving Ranking after Changing file name in feed

We are in the process of updating some of our collection to high quality SD video (640 x 360) and adding an HD (12800 x 720), which requires us to point to new files in the current sd feed. It seems that by doing so, we are losing the ranking for that particular item even though we preserved the GUID.
Any ideas on how to preserve the rankings while we're going through the process of upgrading the quality of our videos?

As long as you retain the same GUID, the ranking will be preserved. If you submit different GUID to the server and then change it back to the old GUID however, as we don't keep history of GUIDs, your ranking will be lost.
Hope this helps
iTunes U Team

Similar Messages

  • How do I reconnect media after changing file name?

    The original file name is 1001.WAV I changed it to Take1 . How do I relocate the files? I use Pluraleyes to sync all my files.
    Cheers, Greg

    Change it back.  NEVER change file names in the Finder level if the media is in an FCP project.  Change it BEFORE you import it into FCP...or change the name IN FCP.  What you did was bad bad wrong wrong. Expecially since you already did things like sync it up with pluraleyes.
    Change it back.  Then change the name in FCP.

  • External table fails to view data after changing file name

    Hello,
    I have previously imported 122 external tables and was able to view their data without any problems.
    The names of these files have since changed. The names have a date in them.
    So I dropped the external tables from that database and recreated them with the new file names.
    I then went into OWB and dropped them from OWB.
    I reimported all of the tables without errors.
    I go to view the data and get an error that the file does not exists.
    The problem is that the file it is telling me does not exists, is the file I had been using last week. Not the new file.
    However, when I go and right click the external table and do a configure, the correct name is showing up under datafiles.
    It's almost as though when I dropped the external tables, not everything was cleaned up. For whatever reason, OWB is still using the old names.
    Dan

    Hi there... Wich OWB version are you using?
    If you've created this external tables using any other tool (ie: SQLPLUS, SQLDeveloper, Toad, SQLNavigator, etc), are you able to query this objects from one of these tools?
    If you've created this ET's using OWB, are you creating it as external tables or are you mapping it as source flat files?
    If you are using OWB to create it, there are a few configurations/properties you should change to have them running well.
    Please, post some more info.
    Thanks

  • Can't find some files after changing drive name

    I keep all my music files on an external drive, and my iTunes folder (and iTunes Music folder) on the internal drive. After changing the name of the external drive, a good number of files (not all, and probably not even most, but a lot) couldn't be found by iTunes.
    I'm suspecting that this problem results from having my files stored externally and separate from the internal default iTunes Music folder, but I'm hoping someone can give me some more details about this and hopefully help find a solution. Thanks.

    In the root of the filesystem there normally is a folder "lost+found", in which files with strange names are found. These are the files cvfsck has collected in the recovering of the filesystemnames. It is sometimes not possible to recover the original file name and location. So this is the only way for cvfsck to give them back.
    If you think the content of these files is allright, you can rename and relocate them.
    Regards
    Donald

  • How do I create an Lightroom HTML Gallery and preserve the - in the file name?

    How do I create an Lightroom HTML Gallery and preserve the - in the file name?
    The hyphen (-) is more search engine friendly, so I label all my photos using hyphens (-) to separate the keywords in the file name
    Here's a sample file name - it's for the "Guess Where Berkeley" flickr site
    guess-where-berkeley-serkes-xx-s-curve.jpg
    I created a Lightroom HTML Gallery and posted it to the following link.
    http://www.berkeleyhomes.com/tests/lightroom/lightroom-test-1/
    Though it looksl like the HML gallery shows the original file name in the web page, it looks like Adobe Lightroom modified each photo's file name by changing the - (hyphen) to an underscore (_)
    Originally
    guess-where-berkeley-serkes-xx-s-curve.jpg
    After Adobe created the HTML photo gallery the name became
    guess_where_berkeley_serkes_xx_s_curve.jpg
    Is there any way to preserve the – rather than the _ character
    Thank you!
    Ira Serkes

    InDesign's interactive PDF support is a small subset of what you can do in Acrobat Profesional.
    I think you probably want to create a button (or change an existing button) in Acrobat Pro that causes Acrobat to close the document -- that should be analagous to "exitting the CD." I assume your autorun file is opening the PDF in Adobe Reader? You have not included it and are not specific, so it is tough to say.
    I believe in Acrobat Javascript you can close the document with this.closeDoc(). You'll probaly need to ask on the Acrobat forums (possiby Acrobat Scripting) for more detail.

  • Change file name with oreilly servlet

    I am using oreilly servlet package and I want to change the file name to the file I am uploading, is this possible ?
    How ?
    Thanks.
    here I post the servlet code:
    package com.reducativa.sitio.servlets;
    * DemoParserUploadServlet.java
    * Example servlet to handle file uploads using MultipartParser for
    * decoding the incoming multipart/form-data stream
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.multipart.*;
    public class DemoParserUploadServlet extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    response.setContentType("text/plain");
    out.println("Demo Parser Upload Servlet");
    File dir = new File("f:/");
    if (! dir.isDirectory()) {
    throw new ServletException("Supplied uploadDir " + "f:/ " +
    " is invalid");
    try {
    MultipartParser mp = new MultipartParser(request, 10*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
    String name = part.getName();
    if (part.isParam()) {
    // it's a parameter part
    ParamPart paramPart = (ParamPart) part;
    String value = paramPart.getStringValue();
    out.println("param; name=" + name + ", value=" + value);
    else if (part.isFile()) {
    // it's a file part
    FilePart filePart = (FilePart) part;
    String fileName = filePart.getFileName();
    if (fileName != null) {
    // the part actually contained a file
    long size = filePart.writeTo(dir);
    out.println("file; name=" + name + "; filename=" + fileName +
    ", filePath=" + filePart.getFilePath() +
    ", content type=" + filePart.getContentType() +
    ", size=" + size);
    else {
    // the field did not contain a file
    out.println("file; name=" + name + "; EMPTY");
    out.flush();
    catch (IOException lEx) {
    this.getServletContext().log("error reading or saving file");
    }

    Hi there,
    I am facing the same problem that you have stated in your Feb 26, 2002 10:28 AM message regarding "change file name with oreilly servlet", I would like to change the file name to include a unique identifier upon upload, did you ever find a solution to your problem?
    Thanks!
    Todd
    [email protected]

  • Is it possible to change file name policy in the JRE cache folder?

    We are getting calls from our clients complaining of slowdowns in loading our Java applet. The reason is a virusscanner. If a virusscanner is in the middle, it can drastically slow down the download process, and therefore cause some high delay before the user can work on the our product as expected.
    On this csutomer's side, it may take up to 10 min (the first time it is ran) instead of 1 min. JRE 1.6 is in use.
    They dont want to exclude from antivirus scan all files from Sun\Java\Deployment\cache folder.
    Question:
    Is it possible to change file name policy in the JRE cache to make it less unique?
    Thanks,
    -Dima

    dgomel wrote:
    We are getting calls from our clients complaining of slowdowns in loading our Java applet. The reason is a virusscanner. If a virusscanner is in the middle, it can drastically slow down the download process, and therefore cause some high delay before the user can work on the our product as expected.
    On this csutomer's side, it may take up to 10 min (the first time it is ran) instead of 1 min. JRE 1.6 is in use.
    They dont want to exclude from antivirus scan all files from Sun\Java\Deployment\cache folder.
    Question:
    Is it possible to change file name policy in the JRE cache to make it less unique?
    I suggest you solve the real problem - big files.
    There are two scenarios
    1. Initial download
    2. Updates.
    The first takes as long as it takes. No way around it.
    The second means that you can't use one jar. Otherwise every single update requires downloading the entire application every time. Multiple jars means only the one that changed is downloaded.

  • ADE changes file names

    The book I downloaded has each chapter as a seperate .pdf, each with it's own unique filename. ADE has retitled every chapter (.pdf) to the name of the book. Now that all the chapters have the same name, I can't transfer them to my Kobo. How do I change titles or get ADE to stop changing file names?
    Thanks

    Dimitri,
              As usual, thanks for the simple but informative explanation!
              Jason
              "Dimitri Rakitine" <[email protected]> wrote in message news:[email protected]..
              > I think your theory is correct - java classes cannot contain '-' in
              > the name and 45 is ascii decimal for '-'. 46 is '.'.
              >
              > Jason Rosenberg <[email protected]> wrote:
              > > I have been working with using jspc.
              >
              > > I have noticed in a few cases it changes file names.
              >
              > > For instance, when I compile the file: '6-12adrworld_090700.jsp',
              > > it produces: '_6_45_12adrworld_090700.class'
              >
              > > Where does the '_45_' come from? I am trying to work with the
              > > theory that '-' becomes '_45_'....
              >
              > > Also, in another case, I noticed a '_46_' was inserted.
              >
              > > Any ideas? Is this documented anywhere?
              >
              > > Jason
              >
              >
              >
              > --
              > Dimitri
              

  • Changing file name and directory structure for use outside of iPhoto

    Hi,
    I was wondering if its possible to get iPhoto to name the files from my library to reflect the names that I've given the files in iPhoto. I'm thinking along the lines of iTunes, where its possible to chose in the preferences how the files are named, and there is some logical directory structure, such as "Artist/Album/01 - Track 1.mp3". These file names are updated to reflect any changes made in iTunes.
    I've heard the argument that I shouldn't ever want to do anything with the files themselves because iPhoto can do everything I would ever want to do, but I want to organize the files so that not all of my organizational work is lost if I decide to stop using iPhoto and transition to a different system. Any suggestions would be appreciated.
    Thanks,
    Adrian

    Adrian
    No it's not possible.
    You can rename the files before bringing them into iPhoto, you can rename them with the titles on Export (Use the File -> Export command, it gives you the option to use the title and filename) but when it's inside iPhoto you cannot rename the files.
    However, all is not entirely lost. Using Film Rolls (View -> Film Rolls) you can move pics between rolls, name rolls, create rolls and so on, as long as you do this in the iPhoto Window, and these changes will be reflected in the iPhoto Library Folder.
    If at some point you decide to chuck iPhoto then (if the new app won't read iPhoto database files) you can simply export each album you've created to a Folder (using the File -> Export command as I suggest above), this, along with exporting slideshows will preserve your organisational efforts.
    The iTunes database has a rather simple job to do: track a file and it's assorted metadata. iPhoto, on the other hand, tracks a file and it's assorted metadata, plus a Modified version, plus a thumbnail. If you consider what happens when you edit a pic, for instance - Copy Original, perform edit, save modified version, remove Original Thumbnail and then create new one - you can see it's a rather more complex job.
    Finally, the standard warning: It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss. Any changes you make must be made in the iPhoto Window.
    Need more info? by all means post again.
    Regards
    TD

  • RoboHelp changes file name to lowercase

    I am using RH X5.0.2 (running on Win XP SP2) to import HTML files as topics. The primary layout is Microsoft HTML Help.
    The original HTML file names are mixed case, but when the files are imported into RoboHelp, the file names are changed to all lowercase. For example, GL_Audit.htm is changed to gl_audit.htm. This is an issue because the topic title reflects the file name, and I need the topic title to retain the mixed case of the original files.
    After I import the file, I have to manually change the topic title. However, RoboHelp does not like it when the title has an underscore. If I change gl_audit to GL_Audit and click OK, the change is not saved. But if I change gl_audit to GLAudit and click Apply, and then change it to GL_Audit, the change is saved.
    I am using an existing project that was created by someone else a long time ago. Here are the steps that I am following:
    1. Right-click the destination folder, and then click Import.
    2. At the Import File screen, select the desired file, for example, GL_Audit.htm, and click Open. The file is imported as a topic.
    3. Right-click the topic, and click Properties. Note that the Topic Tile is gl_audit, and the file name is gl_audit.htm.
    4. In the Topic Title field, type GL_Audit, and click OK. Note that the Topic title is still gl_audit, and not GL_Audit.
    5. Open the Topic Properties screen again.
    6. In the Topic Title field, type GLAudit, and click Apply.
    7. In the Topic Title field, enter an underscore between the L and the A so that the topic title is GL_Audit.
    8. Click OK. Not that the topic title is saved as it was typed -- in mixed case.
    If I can get RH to import the files without changing the original case, it will not matter that it takes two steps to change the topic title name.
    Any suggestions would be greatly appreciated.
    Ashley

    Hi again
    Ashley, how are these HTML pages being created? I ask because I performed a small test. While the import process did indeed convert the file name to all lower case, it ignored the Topic Title. However, if I didn't have a Topic Title defined, it did create one that was all lower case.
    I'm thinking that whatever tool that was used to create the topics you are importing didn't properly configure a proper Title Tag.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Change File Name on Save

    Hi all,
    I have an action recorded that helps me to resize and rename an original image several times.  The action works perfectly, but I have to have the save step as manual so I can enter the correct save name for each file after the action resizes the image.  The save process is idential each time so I figure you must be able to 100% automate this.  So here is the scenario - hope someone can help.
    I have a heap of files open in Photoshop CS3
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '1500' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '400' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 3 characters of current file name and add '200' to end of current file name and save (this is what I want to automate)
    action - resize and save as (current action does this)
    delete last 4 characters of current file name and add '100' to end of current file name and save and close file (this is what I want to automate)
    run action again for all open files (this is what I want to automate)
    thanks in anticipation!   BD

    Here's a script for you:
    var count = 4;           // number of characters to remove
    var appendStr = '1500';  // string to append
    function main() {
      if (app.documents.length == 0) {
        return;
      var doc = app.activeDocument;
      var nm = doc.name;
      var base = nm;
      var ext = '';
      var m = nm.match(/(.*)(\.[^\.]+)/);
      if (m) {
        base = m[1];
        ext = m[2];
      if (base.length > count) {
        base = base.substring(0, base.length - count);
      var newName = base + appendStr + ext;
      doc.duplicate(newName);
    main();
    Save this to a file called "1500Dupe.jsx" or whatever.
    At the end of your first action, call this script. It will create a duplicate of the current document with last 4 characters replaced with '1500'.
    You will also need additional step in the action to save this to a file and close the duplicate document. It's simpler to do this in the action than it is in the script.
    You will need to create new jsx files for each of the other substitutions that you want to make. Just change the 'count' and 'appendStr' values as needed and save to new files.
    -X

  • Changing file name in a smart album?

    I have created several smart albums in iphoto 6, i am also in the process if updating my photos in iphoto by renaming them. My smart albums use the file name for their search criteria. But i have noticed several of my photos would be better in a different smart album i created, so i change their file names to something more relevent, but they stay in this original smart album, i would have thought they would automatically be romoved from this smart album???

    bege:
    Welcome to the Apple Discussions. If you change a photos title in a smart album or anywhere else its name should change in every instance it is in the library. Users have reported smart albums not updating unless the quit and relaunch iPhoto. Give that a try and see if the name is the same everywhere. It should. I don't remember what the fix was for that situation but you might do some searching for "smart album not updating" or something like that to see what you find.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB file backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Changing file name of .swf breaks everything.

    I have changed the "src=filname.swf" in the <embed> tag as well as the "name=filename" part of the <embed> tag however to no avail. The video still no longer plays after I rename the file. It was built in ActionScript3 I think. Does anyone know what is going on here?

    don't mess with the html file published by flash unless you know what you're doing or are prepared for a lot of debugging.
    it's fool-proof and easier to publish your html and swf files from flash and use the publish settings change the html file and/or swf file names.

  • Changing file names in the Information Pane

    Why doesn't changing the names of photographs in the Information Pane also change the name of the files in the iPhoto Library folder??
    If I import photos direct from my camera, the photos are stored with generic file names (like DSC_006) in the Original Folder and the Data folder in iPhoto Library folder. Once stored there, I understand that if you move, delete or "rename" any of those files "in the Finder" that iPhoto may not thereafter be able to see them.
    But I don't understand why if you change those file names in the Information Pane from within the iPhoto application, why the actual file names in the Original and Data folder aren't correspondingly changed.
    I would prefer to eliminate the generic file names and presently the only way that I can do that is to simply transfer the photos from the memory cards, change the file names and then import the files into iPhoto.
    This seems like an unnecessary step.
    Am I missing something here?

    If you want the capability of editing the original file names they you'll need to upgrade to a more professional application like iView MediaPro. Aperture doesn't let you change the original file names from within the application.
    If you need to the use file outside iPhoto with the same name as the Title in iPhoto then you can do just as PhillyPhan pointed out, export to the Desktop using the User Title option.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • HELP! Suddenly cannot change file names..

    Last night after a brief power cut I found, inevitably, I had lost a photoshop image I hadn't saved, but everything else seemed OK. To be sure I checked Disk Utility. The HD was OK but some odd issues appeared in permissions which I told to repair. This then said all OK.
    Whether my present problem is related to the power cut or repairing permissions I don't know, but -
    Now I cannot change file titles. If I click on an icon title to bring up the normally re-typeable title pane, and try, nothing happens. I'm stuck with the existing name. Is there a simple way of rectifying this?
    Guidance please........
    Intel iMac 24" 2.16Ghz 2GB   Mac OS X (10.4.10)   G4 OS9

    Ooops... I just did a Restart and the title function works OK again! But why did it lose its functionality last time?

Maybe you are looking for