Customize the format of track number by tearing unknown CDs in WMP11/12?

Hello

With the rising and audio audiobooks and podcasts, it's a bit painful to see how oriented music WMP is yet. He is not alone, because I guess that, car players do not handle audio books or even the other. A "go back 60 seconds" button in WMP would be really useful for audio books (and a car drive)-but anyway, which is only tangentially related to my questions.

When I rip an audio CD book, WMP rarely knows what about the CD is - because for some reason any metabase WMP use only seems to know music CDs - why?  WMP gives the track of the names of files such as Mp3/Track1.Wma and Track12.Wma/Mp3 and so on. Now, when I read these on a car radio or a Walkman, tracks play out of order because they play in the order alpha;  in this scheme, Track12.Mp3 comes BEFORE track2.Mp3.

So, the gist of my question is: is there some way to WMP (WMP11 or WMP12) use of two track names numbers so that the only figure end titles with names like "track02.mp3" upward - I can do it manually - but BOY, it becomes tedious!

My broader question, is Ms. intends to provide better support for audio book in WMP?

Thank you!
Alan T

Hi Alan,

You can view this issue in Windows Expert Community for Windows Media Player: http://experts.windows.com/frms/windows_entertainment_and_connected_home/f/135.aspx

Thank you.

Tags: Windows

Similar Questions

  • Customize the Format of text, drop-down lists

    Hey all,.

    I have problems of customization of the top botton label of a water drop down. I can customize cell converters labels, but the top label is not affected and is always Times New Roman... Any ideas what I'm missing here?

    Here is a screenshot:

    Here's my CellRenderer customized for the drop down:

    public class CustomDropDownCellRenderer extends DropDownCellRenderer
        {
            public function CustomDropDownCellRenderer()
            {
                super();
            }
    
            override protected function init():void{
    
                var format:TextFormat=new TextFormat();
                format.font="font_helveticaNeue";
                format.size=16;
                format.color=0x000000;
    
                super.init();
    
                setTextFormatForState(format, SkinStates.DISABLED);
                setTextFormatForState(format, SkinStates.UP);
                setTextFormatForState(format, SkinStates.DOWN);
                setTextFormatForState(format, SkinStates.SELECTED);
                setTextFormatForState(format, SkinStates.DISABLED_SELECTED);
                this.label.label_txt.embedFonts=true;
            }
        }
    

    Here's where I put the drop down skin:

    brushDropDown=new DropDown();           brushDropDown.setListSkin(CustomDropDownCellRenderer);
    brushDropDown.setButtonSkin(CustomDropDownButtonSkin);          brushDropDown.addEventListener(Event.SELECT, brushDropDownEventHandler);
    brushDropDown.dataProvider=brushShapes;
    

    I thought I might have to customize the DropDownButtonSkin, but this class does not have a label...

    Any help would be appreciated.

    Hey,.

    I've done some research more and similarly to another thread involving the selector, the own only cut the way to do it is by creating a class sup from the drop-down list. However, this one is kind of weird. Once again, with assistance from flash builder, I could see the protected class drop-down list properties and the objective here is the purpose of __button. now the weird part is that its type is a DropDownButton. they took that as an accessible API since the new update. but I managed to make some changes anyway.

    so the solution, create a void called CustomDropDown class that extends the class from the drop-down list. After that, in the constuctor, use the this.__button.getTextFormatForState () method to manipulate the textformat of the button. Here is an example:

    ListTests.as:

    package{   import flash.display.Sprite;  import flash.display.StageAlign;  import flash.display.StageScaleMode;
    
      import qnx.ui.data.DataProvider;  import qnx.ui.listClasses.DropDown;   import qnx.ui.listClasses.List;
    
      [SWF(width="1024",height="600",backgroundColor="#E8E8E8",frameRate="30")] public class ListTests extends Sprite {     private var myList:CustomDropDown;       private var myDataProvider:DataProvider;      private var myArray:Array;
    
          public function ListTests()       {         super();
    
              // support autoOrients            stage.align = StageAlign.TOP_LEFT;            stage.scaleMode = StageScaleMode.NO_SCALE;
    
              myList = new CustomDropDown();           myArray = new Array();
    
              myArray.push({label: "Thomas Luddington"});           myArray.push({label: "Master Maruyn"});           myArray.push({label: "Master Gardyner"});         myArray.push({label: "Captain Vaughan"});         myArray.push({label: "Master Kendall"});          myArray.push({label: "Master Prideox"});          myArray.push({label: "Robert Holecroft"});            myArray.push({label: "Rise Courtenay"});          myArray.push({label: "Master Hugh Rogers"});          myArray.push({label: "Thomas Foxe"});         myArray.push({label: "Edward Nugen"});            myArray.push({label: "Darby Glande"});            myArray.push({label: "Edward Kelle"});            myArray.push({label: "Iohn Gostigo"});            myArray.push({label: "Erasmus Clefs"});           myArray.push({label: "Edward Ketcheman"});            myArray.push({label: "Iohn Linsey"});         myArray.push({label: "Thomas Rottenbury"});           myArray.push({label: "Roger Deane"});         myArray.push({label: "Iohn Harris"});
    
              myDataProvider = new DataProvider(myArray);
    
              myList.dataProvider = myDataProvider;
    
              myList.setPosition(10,10);            myList.width = 300;
    
              addChild(myList);
    
          } }}
    

    CustomDropDown.as:

    package{   import qnx.ui.listClasses.DropDown;   import qnx.ui.skins.SkinStates;
    
      public class CustomDropDown extends DropDown {     public function CustomDropDown()      {         super();
    
              this.__button.getTextFormatForState(SkinStates.UP).font = "Comic Sans MS";            this.__button.getTextFormatForState(SkinStates.SELECTED).font = "Comic Sans MS";          this.__button.getTextFormatForState(SkinStates.DOWN).font = "Comic Sans MS";          this.__button.getTextFormatForState(SkinStates.DOWN_SELECTED).font = "Comic Sans MS";                  } }}
    

    And Yes, clearly I'm a fan of Comic-who isn't?

    Yet once, it is going to work identical to the drop-down list but instead allows you to set your own font. in fact, you can create a new method which is what I did in the above code, so you can change the font on the fly without having to make five different subclasses just to change the textformat! hope that helps. Good luck!

  • Display the format US phone number - best practices

    JDeveloper 12.1.3

    -Telephone table has field VARCHAR2 with phone numbers. All records have exactly 10 numbers (characters) length

    -In the user interface, I want to show number xxx-xxx-xxxx, that is to say with af:outputText or similar device

    -observe that I am looking for display, and no to entry/edit phone number

    -in search of best practices

    What I did but am not satisfied:

    -In the t 3 has created a transitional attributes with the default SQL string. For example:

    Phone1To3: substr (Phones.Phone, 1, 3)

    Phone4To6: substr (Phones.Phone, 4, 3)

    Phone7To10: substr (Phones.Phone, 7, 4)

    Then in file jsff (the table component):

    <af:outputText value="#{row.Phone1To3}-#{row.Phone4To6}-#{row.Phone7To10}" shortDesc="#{bindings.Phones.hints.Phone.tooltip}" id="ot2222"/>
    

    Another way (better, easier)?

    In my view, that the best practice is to do your own converter in this case you will not need transitional attributes as you did. After doing a converter, you can add this converter inside outputText inputText. .. to display the required format

    To find out how a converter, you can check this url

    Sameh Nassar: Create custom converter

  • change the formatting of a number

    Hey,.

    work CS4 javascript with numbers with many digits behind the decimal point is not easy.

    But I can't find how something can change that...

    ex: 12,248481545454 should be 12.25...

    Help...

    var number = 12.248481545454;
    number.toFixed (2);

  • the formatting of char to number in sql loader control file

    I tried to load a huge csv Excel file into oracle with sql loader database. But a column contains numbers of year as '2014', ' 2015 ". In the control file, I have defined as:

    column_name decimal (38) external "TO_NUMBER (: column_name, ' 9999').

    It awlays say: ORA-01722 invalid number format. I changed the format of different number. All this has not worked. Please help me on this.

    1. the data of table column type is number (38.0)

    2. data csv file looks like this: color is the number of year.

    04/03/15, D_2-15, 10953562, 11116, 27144, 03/03/15,2015

    04/03/15, P_1-58, 1143088, 5262, 12994, 03/03/15,2015

    04/03/15, Q_1-31_Distinct_WWE, 7576633, 22352, 52975, 03/03/15,2015

    Thanks in advance.

    We can not help you unless you provide a sample of documents failed. The sample you provided loads without any problems:

    SQL > CREATE TABLE MY_TABLE)
    2 COLONNE_1 DATE,
    3 COLUMN_2 VARCHAR2 (255 BYTE).
    COLUMN_3 VARCHAR2 (255 BYTE) 4.
    COLUMN_4 VARCHAR2 (255 BYTE) 5.
    6 COLUMN_5 VARCHAR2 (255 BYTE).
    7 COLONNE_6 DATE,
    8 BUSINESS_YR NUMBER(*,0)
    9                      )
    10.

    Table created.

    SQL > home
    Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

    C:\app\xxx\product\11.2.0\dbhome_2\BIN>type c:\temp\xx.ctl
    DOWNLOAD THE DATA
    CHARACTERSET US7ASCII

    INFILE *.
    TRUNCATE
    IN THE TABLE MY_TABLE
    FIELDS ENDED BY ',' POSSIBLY FRAMED BY "" "
    TRAILING NULLCOLS
    (
    COLONNE_1 DATE "MM-DD-AA.
    COLUMN_2 CHAR (255),
    COLUMN_3 CHAR (255),
    COLUMN_4 CHAR (255) NULLIF COLUMN_4 = BLANKS,
    COLUMN_5 CHAR (255) NULLIF COLUMN_5 = BLANKS,
    COLONNE_6 DATE "MM-DD-YY."
    BUSINESS_YR EXTERNAL INTEGER (38)
    )
    BEGINDATA
    03/20/15,1P-11,1111.22,,,03/22/15, 2014
    21/03/15, M_XXX-4, 5607817, 0, 0, 03-9/22/15, 2014
    22/03/15, M_DDD-2, 54990, 0, 0, 03-8/22/15, 2014
    23/03/15, R_1-46, 5297481, 24, 24, 03/22/15, 2014
    16/03/15, X_1 - 48 a, 8547274, 13474, 13474, 15/03/15, 2015
    03/17/15,1T-15-dental,2118.12,,,03/15/15, 2015
    18/03/15, 1 S - 1S, 555, 15/03/15, 2015
    19/03/15, P_NNN-7, 7455342, 10941, 10941, 03/15/15, 2015
    C:\app\xxx\product\11.2.0\dbhome_2\BIN>sqlldr control=c:\temp\xx.ctl log=c:\temp\xx.log
    Username:Scott
    Password:

    SQL * Loader: release 11.2.0.3.0 - Production on Sun Apr 5 06:28:06 2015

    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

    Commit the point reached - the number of logical records 7
    Commit the point reached - the number of logical records 8

    C:\app\xxx\product\11.2.0\dbhome_2\BIN>exit

    SQL > column column_2 format a15
    SQL > column column_3 format a10
    SQL > column column_4 format a8
    SQL > column column_5 format a8
    SQL > select * from my_table
    2.

    COLUMN_1, COLUMN_2, COLUMN_3, COLUMN_4 COLUMN_5 COLONNE_6 BUSINESS_YR
    --------- --------------- ---------- -------- -------- --------- -----------
    MARCH 20, 15 1 P - 11 1111.22 2014 22 MARCH 15
    21 MARCH 15 M_XXX-9-4 5607817 0 0 22 MARCH 15 2014
    22 MARCH 15 M_DDD-8-2 54990 0 0 22 MARCH 15 2014
    23 MARCH 15 R_1-46 5297481 24 24 22 MARCH 15 2014
    16 March 15 X_1-48 has 8547274 13474 13474 15 March 15 2015
    March 17, 15 1 t 15-dental 2118.12 15 March 15 2015
    1 S - 1 S 18 MARCH 15 555 2015 15 MARCH 15
    MARCH 19, 15 P_NNN-7 7455342 10941 10941 15 MARCH 15 2015

    SY.

  • A user needs administrative rights on their computers to change the formats of date under the sign of the region and Lanaguage?

    Customize the format of long date in DD/MM/YYYY under control panel > region and language > Formats > more settings > Date > long date is available for a user with administrator privileges, but is available for a non-administrative user?

    Since posting this question, I was able to test this scenario with the help of my computer SCIENCE Department.  It seems that all our portable business have a configuration of standard domain without administrator privileges by default account.  I turned on my laptop users and was able to change the long date in DD/MM/YYYY format proving you don't need administrator privileges to change the long date format.

  • How to format a column number displayed when drilled down in the dimension

    I have a question:

    For example, I defined a drill on track: year/month/day. I then create a report with the first column in the year. When a user clicks on the column of the year, he bore down to display the year, month, etc. So far so good.

    Say that the month is a number of type double: 1 for January, 2 for the Fed, etc.

    Now, the displayed month is 1,00, 2,00, etc.. Same question when uncovered. The chart legend / label this issue also.

    I can format the year for not only no decimals in tab Format of data when the report is created. Question: How can I format the month? I don't have a chance to make the change in Data Format because it is a column displayed automatically through zoom.

    I could format the month in Business Admin tool or the presentation layer. But I'm looking for solutions BI answers / dashboard.

    Thanks in advance for your help.

    You can set a default value to the system-wide formatting for this column. Add the column to a request format her if necessary, and then in the tab press 'Format of column', 'Save'-> "default" systems for 'Time'. Month' "(or whatever your column is called).

    Just be aware that it will be applicable throughout the entire catalog!

    See you soon,.
    C.

  • How can I change the format of a cell of length to a number?

    I am trying to convert the time spent on work in sessions, because that's how the group I am consulted wants my time reporting. Numbers of calculate minutes for me to format duration... for example, it will calculate time spent 11:47 - 12:57 am than 70 minutes. Now, I need to convert the 70 of the format of duration to the number format, so that I can do other calculations. Whenever I create a new cell that refers to the cell that contains the 70 minutes, the duration of formatting is also present in the new cell and returns to the formatting when I try to change it. It is a simple correction in Excel, but apparently not in number (which I want to use my iPad and iPhone whenever I'm at work. Thanks for any help.

    Hi need help too.

    Formula in C2

    = DUR2MINUTES (B2)

    Who is treated as a number in other calculations.

    Kind regards

    Ian.

  • How to reorder the files of music by track number, not alphabetically.

    Hi - anyone would be able to tell me how to organize my music files in an ascendant see the track number in a folder - it is automatically their reorganization alphabetically when I pull them out from the CD?

    In the categories where you will find things like 'artist' and "alblum", there is a small column with a ' # ' (pound sign) in it.  Click on it once to arange music composed by track number if these data are to share information from music files, click a second time to reverse the order in which he command organizes the slopes.  If music files have no information in this column, you can go into each file, right-click on it and select 'Properties', then click on the 'Détails' tab, down to athletics and click this box, enter the track number and click "apply" or "ok".  You should be able to sort your music by track number files now.

    If the file is a .wav file, editable Athletics will be unavailable for you to change, .mp3 files however has the ability to be modified as described above.

  • Please tell me what is the format of the serial number on the sleeve should be 24 characters get, so I can download my Photoshop Elements program

    Please tell me what is the format of the serial number on the sleeve should be 24 characters get, so I can download my Photoshop Elements program

    DUS/A.PEPE13.0.WIN.GEN.MUL.ALL

    You can download the demo version of the software through the page linked below and then use your current serial number to activate it.

    Don't forget to follow the steps described in the Note: very important Instructions in the section on the pages of this site download and have cookies turned on in your browser, otherwise the download will not work correctly.

    Photoshop/Premiere Elements 8: http://prodesigntools.com/direct-download-links-for-lightroom-3-and-photoshop-elements-8.h tml

    Photoshop/Premiere Elements 9: http://prodesigntools.com/photoshop-elements-9-premiere-elements-9-direct-download-links.h tml

    Photoshop/Premiere Elements 10: l http://prodesigntools.com/photoshop-elements-10-direct-download-links-pse-premiere-pre.htm

    Photoshop/Premiere Elements 11: l http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm         
    Photoshop/Premiere Elements 12: http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html

    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • Format for a number field in af:query problem. Is this a Bug of the ADF?

    Hi, OTN,.

    Requirement: Format DepartmentId in query Panel

    I created a view of criteria of the Employees (HR diagram) table. I have four items in the view criteria called EmployeeId, DepartmentId, Firstname, LastName and all elements including the posting as selectively requiredproperty. Attribute DepartmentId have Format Type of the property UI tips = number and Format = * 0000 * and Auto submit = true.
    But in the user interface, I'm not able to search the af:Query Panel. It works fine without setting the property UI tips Format and Type of format *.

    Step 1: Type 123 in the DepartmentId field
    Step 2: Click on the search button
    Error: Please provide a value for at least one of the specified areas
    Error message: http://www.freeimagehosting.net/24d51

    Please see the link for downloading the sample application below

    http://formatissue.googlecode.com/svn/trunk/FormatTest/FormatTest.zip
    http://formatissue.googlecode.com/svn/trunk/FormatTest (SVN version)

    Note:

    JDev Version: 11.1.1.5.0
    I use BC ADF and ADF Faces components

    All of the recommendations fully appreciated

    Thank you
    Jean-Marc Mithra

    Published by: Fanny Mithra November 23, 2011 16:51

    Published by: Fanny Mithra November 23, 2011 17:21

    Has filed a bug, bug # copied to the end of this thread - edited previous comment, the problem occurs even on release after 11.1.1.5.0.

    Published by: Jobinesh on December 2, 2011 10:38

  • How to get the number in the format "999,999,999.000" in oracle

    Hi friends,
    How can I get the number entered in the format '999,999,999.000 '...
    for example, if my number has 1900, it should give 1,900.000
    If my number is 10000, then it should give me 10,000.000 like this in sql
    is there a function available for this?

    pls help

    Thank you

    Hello

    Check below hope it solves your problem.

    SQL> SELECT TRIM(TO_CHAR(1900, '999,999,999,999,999.99')) FROM DUAL;
    
    TRIM(TO_CHAR(1900,'999,999,999
    ------------------------------
    1,900.00
    SQL> SELECT TRIM(TO_CHAR(10000, '999,999,999,999,999.99')) FROM DUAL;
    
    TRIM(TO_CHAR(10000,'999,999,99
    ------------------------------
    10,000.00
    
    SQL> 
    

    Concerning
    Ameya

  • [REQUEST] Automatically display the number with the format mask

    Hi Expert,

    I use Jdeveloper 11.1.1.6.0.

    I have a problem to display the input text that automatically uses the format mask user input, as for example the entered user 10000 then the field will automatically display of 10,000

    Is this possible to do?


    I already find but I just had to format mask that the user must input 10 000 not automatically display in format.


    Please your advice, really appreciate your help.


    Thank you

    I already find but I just had to format mask that the user must input 10 000 not automatically display in format.

    Can you describe your use case a little more?

    The format is applied only when the focus is moved out of the field.

    You want to display the groups directly separator when the user inserts the value in the field?

    In this case, you will need to use javascript, and format the entry after each character. This technique is described in the blog of Frank https://blogs.oracle.com/jdevotnharvest/entry/get_social_security_numbers_right

    Timo

  • Synchronization of images with the track number of music in first Pro CC

    My experience with Premiere Pro is still limited to the basic edition. I was recently asked to help a friend to edit a music video. I have done it before in Final Cot X Pro but decided to move because of the integration of Adobe CC.

    The issue I'm facing is that all the footage that was shot are delivered for me to 23.976 fps, but with audio that plays faster. The audio after importing is during playback to 29.97 FPS and play it at normal speed.

    The solution I found so far is to slow down every clip to 80% so that it matches the original audio track. It's not ideal, I discovered while editing, and it would be better to have each clip rendered in its original state of 29.97 FPS.

    After some research more, I discovered that it is possible to perform a new made each clip speed original in After Effects and even apply the interpolation. Then import all back into Premiere Pro.

    My question is if the road that I'm following here is correct.

    Thank you!

    by reducing speed in the timeline, I think he's doing the same thing by forcing the film. the difference is by changing it in the tray before you start, you can change all clips at once. Make sure you just set the fps of the fps final output sequence, does not not in the FPS has changed clips.  You can also click with the right button on the images in the timeline and choose the frame mix, but I think it ends up doing the same thing you use the export option. the difference on the timeline is that you see the frame blend when editing. AE is extremely slow and may not look any better, so when you're on deadline, forget about it.  so first I think that the framework blend on vs off is your only real option to change the behavior of the slow-mo.

    slow mo thing is nice for music videos, but yes, for best results the camera must be accelerated with the song on the set. While post both are slowed down back, replacing the song / audio with the original song at a normal speed. 23.976 or 29.97 are both acceptable in NTSC land usa.  23.976 has received much attention as the 'film look' because it has more motion blur, while a 29.97, a video filter. Here are some numbers that I found somewhere and kept. so if the final rendering of fps is known, can choose the correct shooting for on fps set with matching sped up or slowed down the music.  values in italics would end up with time-lapse images, while the values in bold would be used for the slo-motion effect. I haven't used these, but the numbers look right. He could have shot during 29.97 (30) fps and it slowed to 23.976 in post to get the 80% slow-mo.

    For a NTSC / US, using a base of following times of 24 p, for frame rates, adjust the speed of the song at:

    12 fps: make the song last x 1,956 more stretching to 51.1% speed

    18 fps: make the last song 1.333 x more stretching 75.0% speed

    20 fps: make the last song 1,226 x more stretching to 81.6% speed

    22 fps: make the last song 1.067 x more stretching to 93.7% of the speed

    26 fps: do the last song 0,907 x as long as normal; play 110.25% speed

    30 frames per second: make the last song 0.800 x as long as normal; play 125% speed

    32 fps: do the last song 0.747 x as long as normal; play 133.87% speed

    36 fps: do the last song 0.672 x as long as normal; play 148.81% speed

    48 fps: do the last song 0.498 x as long as normal; play 200,80% speed

    60 frames per second: make the last song x 0.400 as long as normal; play at 250.00% speed

    For a NTSC / US, using a base of following times of 30 p for frame rates, adjust the speed of the song at:

    12 fps: make song longer than 2.445 x stretching 40,91% speed

    18 fps: make the last x 1.667 song more stretching to 60,00% speed

    20 fps: make the last song 1,533 x more stretching 65,23% speed

    22 fps: make the last song 1.333 x more stretching 75,01% speed

    24 frames per second: make the last song 1,250 x as long as normal; play at 80.00% speed

    26 fps: do the last song 1.134 x as long as normal; play at 88.22% speed

    32 fps: do the last song 0,933 x as long as normal; play 107.14% speed

    36 fps: do the last song 0.840 x as long as normal; play 119,05% speed

    48 fps: do the last song 0.622 x as long as normal; play at 160.73% speed

    60 frames per second: make the last x 0.500 song as long as normal; play 200.00% speed

  • Any way to customize the output of tag_eventfromdate to view a different date format?

    The {tag_eventfromdate} and {tag_eventtodate} out of the dates in the format DD-MMM-AA is not-very-nice. Is it possible to adjust the output format to something more human of the environment as 'November 22, 2014?

    In the live platform - only with javascript at the moment.

Maybe you are looking for

  • How to check what extension program / crashes my iMac?

    I finally got my iMac fixed enough that it starts up fine, but I'm still having a problem with the iMac crashing after start-up. I mentioned that after you install a printer, it crashed when I hit print on demand, the iMac has crashed (Gardner up, co

  • I do need to update Firefox if I run Waterfor?

    I run Waterfox (just updated). When I look at plugins, modules, etc., the site says that Firefox is not updated. I do need to update Firefox as well as Waterfox?

  • NDC PE 2950

    Nobody knows what are the NDC supported for a 2950? I noticed that the Ethernet Gigabit Broadcom NetXtreme BCM5720 here

  • Windows 7 missing, broken right click Desktop icons

    We had a strange problem only recently. 1/4 machines in our build to the company are all suddenly lose their icons on the desktop, the ability to right click or anything like that drag on the desktop. However if I navigate to the location of the prof

  • T400 Locked to Vodafone?

    Hello I work for a company that uses Lenovo for all our laptops and we just took delivery of 3 new T400 2765 - 21G Type. These units have a Vodafone SIM and a trial for 30 days to technology mobile broadband (3G, GPRS) Vodafone. Our company uses T -