Converting from .acsm to epub using ADE 3

I have updated to ADE 3 and have had nothing but problems. The latest problem is When trying to convert an ascm file from Kobo, the Digital Editions does not launch to convert to an epub.  I wish I could go back to my old version of ADE but no luck.

It doesn't change the original file - it creates a new file in the new format. Check where your file destination is set to in the Audio Converter screen.
PB

Similar Messages

  • Converting from WAV to MP3 using Creative MediaSou

    I am trying to convert from WAV to MP3 using Creative Media Source Version 3.30.35. The program says it is converting the file to MP3 but when it has finished and I examine the properties it still says the file format is WAV. Can anyone shed any light on this, thanks?

    It doesn't change the original file - it creates a new file in the new format. Check where your file destination is set to in the Audio Converter screen.
    PB

  • Going from Pages to EPUB using InDesign?

    Is there a guide for going from a Pages document to EPUB using InDesign? The target is a book that is over 105K words for 425 pages.
    I am an absolute beginner with InDesign and I was hoping to more finely control the outcome of EPUB generation by using InDesign rather than outputting from Pages using Export to EPUB. Unfortunately, ID isn't quite as intuitive as I had hoped it would be and I've run up against the wall.
    Do I load each chapter as a separate document and then collect them as a book file? Or can the book be loaded as one document? I've been trying as one document, but I can't it to appear in the main editing window. (It shows up fine in the story editing, but that gets tedious very quickly.)
    Last, while ID creates EPUB files, can it generate a MOBI or AZW file for the Amazon Kindle? I found no references for in concerning ID in the documentation, but thought I'd ask anyway.

    Thanks, Steve!
    I've already been hand-building the CSS & EPUB files. I was just hoping that InDesign would make it easier. Clearly, that's not the case.
    Apple's Pages does a very good job generating an EPUB which only requires a minimal amount of tweaking to the CSS to give it a final polish and further adjustments for e-readers other than an iOS device. Generating the MOBI/AZW for Kindle requires a bunch of jumping through hoops to prepare, which was what I was hoping to avoid.
    A few days to release, I have plenty of time get get the ebooks ready.
    A good heads up for any competent programmers out there—of which I am not—there is a huge market of self-publishing authors in need of a program that can take a RTF, Word or Pages formatted document and smoothly turn it into an EPUB or AZW file.

  • How to convert from bool to PMString Using InDesign SDK

    Hi,
         Do anyone know how to convert a datatype of boolean to PMString in indesign SDK.
    with thanks,
    Sheela

    I asked for the convertion of datatype. For eg: bool to String
    I rectified my problem in converting an integer to String using SDK.

  • Cannot convert from excel to adobe (using acrobat 8 standard)

    Document will begin conversion and then just get stuck forever in an unending loop.  When I cancel the program (excel) get a prompt that says that Acrobat was unable to complet PDF process!!!  Help!!!

    Open the file in Excel. Then go to the FILE menu and select print. Chose the Adobe PDF printer and see if you get a PDF -- all of the other Acrobat processes depend on this printing process. If not, report what error messages you get. I suspect that you have deactivated AcroTray.exe that is a required part of the conversion part. If you like to test the latter, use the print-to-file option in the printer dialog, then open the file in Distiller to complete the process. The latter should either give you a PDF or a mess of error messages telling you why not.

  • Rendering while converting from DVD using MPEG Streamclip or Cinematize

    Is there anyway to make rendered .mov file, while converting from DVD to .mov, using MPEG Streamclip or Cinematize for final cut pro?
    Thanks.

    Are you asking if there's a way to export from mpegstreamclip so you don't need to render when you edit with the file in fcp?  If so, yes...  (sorry couldn't resist).
    What format is your sequence in fcp (make the timeline active and hit command(apple)-zero?   Note the pixel dimensions, frame rate and compressor settings and set the quicktime options in mpegstreamclip export dialog to match them.  You should be good to go.
    Also, you might do some searching here.  Pretty sure someone posted a link to a tutorial on how to do this,

  • Conversion from xml to csv using xsl

    hi i am converting from xml to csv using xsl i am getting the extra junk character(space) in the csv file.below i written the xml file and xsl file
    xml file
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <?xml-stylesheet type="text/xsl"?>
    <DOCUMENTS>
         <FILE>
         <DOCUMENT>
              <BUSINESS>finance</BUSINESS>
              <PROGRAM>CM</PROGRAM>
              <PROJECT>Testing Area</PROJECT>
              <NAME>121940~1.doc</NAME>
              <TEXT>SQL</TEXT>
              <LINK>http://www.sql.org/</LINK>
         </DOCUMENT>
         <DOCUMENT>
              <BUSINESS>finance</BUSINESS>
              <PROGRAM>CM</PROGRAM>
              <PROJECT>Testing Area</PROJECT>
              <NAME>121940~1.doc</NAME>
              <TEXT>Information</TEXT>
              <LINK>http://google.com/</LINK>
         </DOCUMENT>
         <DOCUMENT>
              <BUSINESS>finance</BUSINESS>
              <PROGRAM>CM</PROGRAM>
              <PROJECT>Testing Area</PROJECT>
              <NAME>121940~1.doc</NAME>
              <TEXT>Configuration</TEXT>
              <LINK>http://msdn.microsoft.com/</LINK>
         </DOCUMENT>
         </FILE>
    </DOCUMENTS>
    xsl file
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="text" indent="yes"/>
    <xsl:template match="DOCUMENTS">
    <xsl:text>Business,Program,Project,DocumentName,Textforlink,Hyperlink</xsl:text>
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="FILE">
    <xsl:value-of select="DOCUMENT/BUSINESS"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="DOCUMENT/PROGRAM"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="DOCUMENT/PROJECT"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="DOCUMENT/NAME"/>
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="DOCUMENT">
    <xsl:value-of select="','"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="TEXT"/>
    <xsl:value-of select="','"/>
    <xsl:value-of select="LINK"/>
    </xsl:template>
    </xsl:stylesheet>
    for converting to csv i am using java program.
    please go through it.

    <xsl:value-of select="','"/>That's not the correct way to output a literal comma. Just write the comma directly, or use xsl:text. And don't put in those line breaks either. You can reduce the rule for FILE to something like this:
    xsl:template match="FILE">
    <xsl:value-of select="DOCUMENT/BUSINESS"/>, <xsl:value-of select="DOCUMENT/PROGRAM"/>, <xsl:value-of select="DOCUMENT/PROJECT"/>, <xsl:value-of select="DOCUMENT/NAME"/>
    <xsl:apply-templates/>
    </xsl:template>

  • I was informed i need to purchase standard 11 or standard 12 (?) in order to make word files converted from pdf editable. how do i do this?

    i was informed i need to purchase standard 11 or standard 12 from adobe in order to make files converted from pdf to word using the recently bought and installed adobe pdf exporter file. how/where do i do this?

    Currently the Acrobat version is "XI" (no "12").
    With Acrobat XI installed:
    "File - Save As Other"  --- from here you pick the supported file format for the export.
    If a PDF has content that is the output of a scanner then that output (as is the case for All scanners' output) is a picture of text and not real text.
    During an export all that can be processed is the picture. As a picture of text is not text it is understandable why Word (or other word processors) cannot edit the content.
    So, for such, prior to export run Acrobat's OCR and save.
    The export will be of the OCR content.
    Do expect to do clean of the text, spelling, punctuation, layout etc.
    This may be minor. This may be major. But, there will be some.
    Adobe as some online subscription services that can take a "proper" PDF (NOT all are eh) and export to supported file formats.
    Two are "ExportPDF" and "PDF Pack".
    Be well...

  • Does Microsoft support disks which have been converted from MBR to GPT with third-party tools?

    Before opening a ticket with Microsoft to get the official response, does Microsoft support disks which have been converted from MBR to GPT with third-party tools?
    We have various disks on Windows Server 2008 R2 fileserver cluster that are all MBR with various mount points added to overcome the 2TB limitation on MBR disks.  Due to the time involved in physically moving the 30Tb+ of data to GPT disks, I would
    like to investigate the option of a lossless conversion tool. Does anybody have any experience of these in production environments that could comment?
    Any advice and details of experiences would be really appreciated!
    CRM Advisor

    Hi,
    Besed on my research, Microsoft supports a fileserver cluster if the disks have been converted from MBR to GPT using a third-party tool.
    For more detailed information, please refer to the links below:
    Convert MBR to GPT
    https://social.technet.microsoft.com/Forums/en-US/3007346f-cf7b-4089-9628-36d394da8240/convert-mbr-to-gpt
    Change a Master Boot Record Disk into a GUID Partition Table Disk
    http://technet.microsoft.com/en-us/library/cc725671.aspx
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Oracle9i How to convert from undo tables to rollback segments

    Hi,
    Anyone try before converting from UNDO management to using rollback segment....What are the procedures for the conversion...
    Thank You...

    Hi,
    Follow these steps to convert from Auto UNDO to Rollback Segs....
    1. With the database opened, create a rollback tablespace and then create some rollback segments and bring them online like this
    CREATE ROLLBACK SEGMENT RBS1 TABLESPACE RBS;
    ALTER ROLLBACK SEGMENT RBS1 ONLINE;
    2. Then edit the PFILE and modify these parameters
    Add: ROLLBACK_SEGMENTS=(RBS1,RBS2,RBS3....)
    Comment: UNDO_MANAGEMENT=AUTO and UNDO_TABLESPACE=UNDOTBS or whatever name you have for your UNDO tablespace.
    3. Shutdown the database gracefully(normal).
    4. Startup pfile=<Pfile path>
    5. Sync these new parameter changes to the SPFILE by recreating the SPFILE.
    6. Take a full level 0 backup of your database as the structure has changed.
    The next time you start the database, it will use the SPFILE which is same as the PFILE.
    Regards.

  • How do i convert my music and pics over from windows to mac using a external hard drive.

    New mac user.  How do i convert my files from windows to mac using external hard drive.  I am using a Seagate freeagent go flex.

    leave as is and add NTFS driver to write to the drive / migrate maybe / reading NTFS drives isn't always perfect, some times external drive case has trouble mounting or staying mounted and suffers slow copy speed after awhile or with large files which is why I suggest Paragon NTFS for Mac OS X.

  • How to use .joboptions file while converting from Word to PDF

    Hi,
    I'm pretty new to Acrobat. I'm using Acrobat XI. I need to convert a word document to a PDF file which conforms to certain requirements described by a given .joboptions file. The .joboptions file can be opened by distiller, but as far as I know distiller is not invovled in the conversion (Word to PDF) process. So how can I make sure the converted PDF file meets the requirement described by the .joboptions file?

    Distiller is used when converting from Word to PDF, if you do it via the Acrobat panel, not the Adobe PDF printer or Word's internal Export to PDF command. If you've loaded your joboptions file in Distiller (via Settings - Add Adobe PDF Settings), then you will see it in the drop-down of Conversion Settings when you click the Preferences button in the Acrobat panel in Word.
    After you've selected your job options profile click the Create PDF button, and the file will be converted using the selected options.

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • Convert list item attachment from docx to pdf using Word Automation Services

    I have been trying to convert List Item attachments from docx to pdf using word automation services, it works in a normal document library but when I use the list attachment it throws a null reference error.
    var settings = new ConversionJobSettings();
    settings.OutputFormat = Microsoft.Office.Word.Server.Conversions.SaveFormat.PDF;
    var conversion = new ConversionJob("Word Automation Services", settings);
    conversion.UserToken = SPContext.Current.Site.UserToken;
    var wordFile = SPContext.Current.Site.RootWeb.Url + "/" + wordForm.Url;
    var pdfFile = wordFile.Replace(".docx", ".pdf");
    conversion.AddFile(wordFile, pdfFile);
    conversion.Start();
    Using reflector I was able to see my problem lies in Microsoft.Office.Word.Server.FolderIterator.cs where it uses SPFile.Item which returns NULL
    internal void CheckSingleItem(SPFile inputFile, SPFile outputFile)
    Microsoft.Office.Word.Server.Log.TraceTag(0x67337931, Microsoft.Office.Word.Server.Log.Category.ObjectModel, Microsoft.Office.Word.Server.Log.Level.Verbose, "OM: FolderIterator start a single item: source='{0}'; dest='{1}'", new object[] { inputFile.Url, outputFile.Url });
    Stopwatch stopwatch = Microsoft.Office.Word.Server.Log.StartPerfStopwatch();
    try
    this.CheckInputFile(inputFile.Item);
    this.CheckOutputFile(outputFile.Url);
    Is there any way to get around this?

    Hi Qfroth,
    According to your description, my understanding is that when you use word automation service to convert Word to PDF for list item attachment, it throws the null reference error.
    I suggest you can create an event receiver and convert the word to memory stream like below:
    private byte[] ConvertWordToPDF(SPFile spFile, SPUserToken usrToken)
    byte[] result = null;
    try
    using (Stream read = spFile.OpenBinaryStream())
    using (MemoryStream write = new MemoryStream())
    // Initialise Word Automation Service
    SyncConverter sc = new SyncConverter(WORD_AUTOMATION_SERVICE);
    sc.UserToken = usrToken;
    sc.Settings.UpdateFields = true;
    sc.Settings.OutputFormat = SaveFormat.PDF;
    // Convert to PDF
    ConversionItemInfo info = sc.Convert(read, write);
    if (info.Succeeded)
    result = write.ToArray();
    catch (Exception ex)
    // Do your error management here.
    return result;
    Here is a detailed code demo for your reference:
    Word to PDF Conversion using Word Automation Service
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How can I convert from Modbus raw data to engineering units using a formula?

    Within Lookout, I have several Modbus numerical input types that do not have a linear corespondence to the Engineering values they represent.  How can I display these values accurately using a formula to convert from the raw data to an engineering value?

    I don't quite understand your reply.  I'm using Lookout 6.0.2, logged in as Administrator, in Edit Mode.  The Modbus object is named RTU06_SAV.  The Active member is 30002 with an alias of SAVfmSMT_RSL.
    Following your instructions, I opened Object Explorer and right-clicked on RTU06_SAV. 
    This opened a menu containing:  Refresh, Cut, Copy, Rename, Delete, Edit connections..., Edit Data Member Configuration, Configure Network Security and Properties.
    I assumed that I should select Edit Data Member Configuration, but maybe I'm wrong. 
    Within Data Member Configuration I can set up Linear Scaling between Raw data and Engineering data.  I know how to do that, but what I need to know is how to convert Raw data to Engineering data using a formula representing a non-linear transformation (such as a converion to a logarithmic value or perhaps a formula derived by fitting the formula to a curve on a calibration chart).
    Once I have this my Engineering data can be represented on a control panel as both a numeric value AND as a correctly reading Gauge.  It can also be properly represented on a HyperTrend graph.
    What do you suggest?

Maybe you are looking for

  • Is it possible to boot or Time Machine restore from an external Thunderbolt disk drive?

    (There are several questions - search for "?".) I purchased a Seagate Backup Plus for Mac Desktop Drive 3 TByte with default USB 3.0 interface, and also acquired the Seagate Thunderbolt Adapter for Backup Plus Desktop Drives and Thunderbolt cable. I

  • Flash Professional CC. Interactive map. Mistake.

    Help me correct mistake in it please. Error 1172 Definition could not be found. http://rghost.ru/59743234

  • Intresting query!!! may be for me...

    Hello Friends Please can you help me with your query for the following table SQL for Oracle 10g table containing following data Table 1 slNo Project issueno date 1 Prj1 issue11 2000-1-19 - project 1 added 2 Prj1 issue12 2001-2-11 3 Prj1 issue13 2002-

  • Java API for adding new User in OID

    I am search documentation for sample code to add a new User to the OID via Java API, I could not find any. Is it not possible to do so? if it is, can someone point me to the right location. Thanks

  • COLOR - INDD vs PS

    Hi. I am importing a tiff file from photoshop into indesign. I made the background color (on the tiff from photoshop)the same as the background set in indesign so I wouldn't have to do a clipping path. The colors look slightly different. Is this beca