active questions tagged file-conversion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:55:19Z http://stackoverflow.com/feeds/tag/file-conversion http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887889/file-conversion-ods-to-xls 0 File conversion (.ods to .xls) meenakshi 2009-12-11T08:00:42Z 2009-12-11T12:52:45Z <p>I have to convert a file from <code>.ods</code> format to <code>.xls</code> format.</p> <p>I select an <code>.ods</code> file using <code>openfiledialog()</code>, then get the file like <code>emp.ods</code>.</p> <p>Now I want to copy this file to another location in <code>.xls</code> file format, to change the extension, like filename in <code>savefiledialog()</code>.</p> <p>How can I set a Save-As type such as <code>Microsoft Excel 97-2003 worksheet</code> in VB.NET?</p> http://stackoverflow.com/questions/1687635/pdf-conversion-service 1 PDF conversion service TheImdal 2009-11-06T13:36:33Z 2009-12-03T14:28:59Z <p>I need to develop a service able to convert MS Office and Open Office documents to PDF. And the PDF`s also need to be commentable when opened in ADOBE Reader.</p> <p>I have used a piece of software from www.neevia.com. And it does the conversion, but is not able to make the PDF´s commentable and is therefore useless in my scenario.</p> <p>Ideally I would like a piece of software that is monitoring a directory, and when a file is commited to that directory, the software detects this, fetches the file, converts it, and puts it in another directory. This way I can programmatically put the file I want converted in the IN folder and monitor the OUT folder to fetch the file when converted.</p> <p>So do anyone know a piece of software capable of converting MS Office and Open Office files to commentable PDF`s?</p> http://stackoverflow.com/questions/1511665/converting-pdf-to-images 0 Converting PDF to images? Jeremy 2009-10-02T20:34:15Z 2009-11-26T05:49:38Z <p>I need to import PDF documents into <a href="http://en.wikipedia.org/wiki/Microsoft%5FOneNote" rel="nofollow">Microsoft OneNote</a>, which means converting the PDF file to an image. Is there a descent <strong>free</strong> library I can use from .NET to convert the PDF file to a BMP/PNG/JPEG file? Maybe an open source project?</p> http://stackoverflow.com/questions/1588833/when-using-ffmpeg-to-convert-from-wmv-files-to-flv-files-i-find-that-either-th 1 When using ffmpeg to convert from .wmv files to .flv files, I find that either the quality is too low or the bps is too high. I am working on a Ubuntu Linux installation. Any suggestions? [closed] yirmi 2009-10-19T14:00:22Z 2009-11-03T15:31:29Z <p>When using ffmpeg to convert from .wmv files to .flv files, I find that either the quality is too low or the bps is too high. I am working on a Ubuntu Linux installation. Any suggestions?<br /><br /> The bps must be within 500k<br /><br /> Command line line for high quality:<br /><br /> ffmpeg -i '$raw_video_path' -ab 64 -ar 44100 -b 300k -r 30 -s 720x480 -sameq $temp_flv<br /><br /> This produces a very high quality, but 10 times the allowed bps<br /><br /> Command line for low quality:<br /><br /> ffmpeg -i '$raw_video_path' -copyts -ar 44100 -s 320x240 $temp_flv<br /><br /> This produces too poor a quality with 90% of the the allowed bps<br /><br /></p> http://stackoverflow.com/questions/1581617/how-to-select-a-file-automatically 0 How to select a file automatically? Gopal 2009-10-17T07:01:04Z 2009-10-17T08:08:42Z <p>Using VB6</p> <p>Now I am using a Browse button in my software to select the text file, then it is converted in to mdb (access). I don’t want to select the text file. </p> <p>Once I installed my software in any system, the text file should automatically select in a specified path. Then the text file automatically converts into mdb. Once converted in to mdb then </p> <p>Vb Code for converting text to mdb.</p> <pre><code>Dim db As Database, tbl As TableDef Set db = DBEngine.OpenDatabase(App.Path &amp; "\History.mdb") Set tbl = db.CreateTableDef("Temp") tbl.Connect = "Text;database=" &amp; App.Path &amp; "/ConvTemp/" tbl.SourceTableName = strOutput &amp; ".txt" db.TableDefs.Append tbl db.Execute "Select Temp.ID, Temp.IDTerminal, Temp.Reader, Temp.Date, Temp.Time, Temp.Cardnumber into " &amp; strOutput &amp; " from Temp" db.TableDefs.Delete ("Temp") db.Close MsgBox strOutput sql2 = "insert into events select * from " &amp; strOutput &amp; "" If rs.State = 1 Then rs.Close rs.Open sql2, Cn, adOpenStatic, adLockOptimistic Set tbl = Nothing Set db = Nothing </code></pre> <p>Above code is working for text to mdb conversion. But I need to convert the text file automatically without using browse button.</p> <p>For Example</p> <p>MDB Name is – History.mdb and table name is – event.mdb</p> <p>I set a path like this “C:\NewFolder” In my software</p> <p>In the above folder, the text file will appear with different names. May be per day text file will appear 10 to 20 text files with new different names. I cannot able to give the text file name also. I have to give only the extension like (*.txt). </p> <p>Once I installed my software, the Software should select the text file from c:\NewFolder, then it automatically converts in to mdb, after converted the text file the text file should delete automatically. </p> <p>Expected Output</p> <pre><code>Once I installed my software in any system, the software should select the text file from the specified folder, then the text file convert into mdb. Once converted, the text files automatically delete from the specified path. </code></pre> <p>For converting text to mdb am having the code, for automatically selecting the text file I need a sample code or idea’s</p> <p>Am new to VB6, Can any one give some idea how to do this. Or can any post a sample code for automatically selection of text file.</p> <p>Please.</p> http://stackoverflow.com/questions/1564153/convert-odt-doc-ods-files-to-txt-files 1 Convert .odt .doc .ods files to .txt files Akhtar 2009-10-14T03:53:29Z 2009-10-14T17:14:29Z <p>Hello </p> <p>I want to convert all the .odt .doc. .xls .pdf files to .txt files I want to convert these files to text files using shell script or perl script</p> http://stackoverflow.com/questions/1556407/how-can-i-read-convert-sas-govt-data-files-on-a-mac 1 How can I read/convert SAS Gov't Data files on a MAC? MikeN 2009-10-12T19:24:01Z 2009-10-13T09:35:17Z <p>There are gov't data files: <a href="http://www.cdc.gov/EpiInfo/" rel="nofollow">http://www.cdc.gov/EpiInfo/</a></p> <p>Available in this weird SAS format. How can I convert them into XML/CSV, something much simpler that can be read by scripts/etc.???</p> http://stackoverflow.com/questions/915750/wav-mp3-conversion-on-web-server 2 WAV / MP3 Conversion On Web Server goombaloon 2009-05-27T13:37:28Z 2009-08-12T23:00:03Z <p>I'm looking to convert uploaded WAV files to MP3 on my shared hosting server (ASP.NET / C#) and am curious if anyone else has tackled this before.</p> <p>I've seen a few open source C# libraries for performing audio conversion (AumpLib, for example), but in most cases it looks like people are using them on desktop applications.</p> <p>Are there any good open source C# libraries / technologies for this scenario? Any feedback or advice would be greatly appreciated.</p> http://stackoverflow.com/questions/1256953/there-is-any-free-dbf-file-converter 1 There is any free DBF file converter? Jader Dias 2009-08-10T20:13:08Z 2009-08-10T20:34:00Z <p>I have only found trial versions of these converters. Does anyone know a free one? Any of the following target formats will do:</p> <p>CSV, MDB, SQL, XLS</p> http://stackoverflow.com/questions/1234452/convert-line-esri-shape-shp-file-into-nodes-and-links 1 Convert Line ESRI Shape SHP file into nodes and links dassouki 2009-08-05T16:53:10Z 2009-08-05T17:08:53Z <p>Is there a way to convert a linear shape file into a csv file of the following format:</p> <pre><code>Node_1, Node_2, attribute_1, ...., attribute_x 1 2 "hello" 567845.334 </code></pre> <p>I have looked at <a href="http://gdal.org" rel="nofollow">GDAL/OGR2OGR</a> and <a href="http://postgis.refractions.net" rel="nofollow">PostGIS</a> and i don't think either converts the data to the format I want.</p> <p>I don't mind writing a script to do it, if i'm guided in the right direction.</p> http://stackoverflow.com/questions/1176651/obn-format-edit-and-reconvert-back 1 .OBN Format: Edit and Reconvert Back ZiG 2009-07-24T09:41:38Z 2009-07-24T10:22:38Z <p>I have OBN formatted binary files. To convert it to a text based file, I use a command in unix like- </p> <pre><code>dd if=FileName.OBN of=Output.txt ibs=1169 obs=1169 cbs=1169 conv=ascii </code></pre> <p>Where - </p> <pre><code>if : is input file of : is output file ibs: input block size obs: output block size cbs: new line insert at block size conv: convert to </code></pre> <p>After I edit, how do I convert it back to the original format without breaking the format?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1101615/how-do-you-use-any2mobi-command-line-tool-part-of-calibre-to-make-mobi-files-fr 0 How do you use any2mobi command line tool (part of Calibre) to make mobi files from HTML? Paul Chernoch 2009-07-09T02:52:26Z 2009-07-09T03:04:37Z <p>I am on MAC OS X 10.5.5. I installed Calibre, a tool for converting e-book files from one format to another. It has a GUI as well as command line tools. I am trying to run the command line tool "any2mobi" to convert HTML files to MOBI pocket format or Kindle AZW format, with a TOC.</p> <p>I get the error "-bash: any2mobi: command not found". Clearly, any2mobi is not in my path. Where is it? I tried searching but came up empty.</p> <p>I installed version 0.6.0b6 of Calibre.</p> http://stackoverflow.com/questions/1043768/quickly-convert-rtf-doc-files-to-markdown-syntax-with-php 0 Quickly Convert (.rtf|.doc) Files to Markdown Syntax with PHP Jonathan Sampson 2009-06-25T13:00:33Z 2009-06-25T16:43:26Z <p>I've been manually converting articles into Markdown syntax for a few days now, and it's getting rather tedious. Some of these are 3 or 4 pages, italics and other emphasized text throughout. Is there a faster way to convert (.rtf|.doc) files to clean Markdown Syntax that I can take advantage of?</p> http://stackoverflow.com/questions/982234/are-there-any-decent-resources-to-learn-how-to-work-with-video-files-and-or-file 0 Are there any decent resources to learn how to work with video files and/or file conversion? mannish 2009-06-11T16:42:04Z 2009-06-11T17:16:17Z <p>I've been digging around for a good conversion utility to rip some .mkv files I have to other formats (specifically .avi so I can burn to a DVD). I figure this would be a good opportunity for me to get hands-on experience doing this kind of thing.</p> <p>I'm a .NET developer (C#), so I'm keen on finding resources focused on that technology stack if at all possible, but I'm open to learning other options.</p> <p>Can anyone point me in the right direction (links, books, etc.) to help me get started figuring out how to work with various video/audio file formats?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/646085/download-and-change-the-extension-of-a-file-generated-with-jsp 1 Download and change the extension of a file generated with JSP fmsf 2009-03-14T15:22:39Z 2009-03-30T15:08:03Z <p>I am generating a csv (comma separated value) file with Java Server Pages (JSP). The URL shows "<code>my_generated_csv.jsp</code>".</p> <p>What I want to do is simple: The user clicks "<code>Generate</code>" which downloads the generated <code>CSV</code> file. I'd like to generate it with the JSP. Do I need to rethink my approach?</p> <h3>Edit:</h3> <p>The following code works to make the file downloadable, but the extension remains the same. Does anyone know how to change it?</p> <pre><code>&lt;% response.setContentType("text/csv"); %&gt; </code></pre> http://stackoverflow.com/questions/176764/converting-ooo-macros-to-excel-macros 1 Converting OOo macros to Excel macros Chris Charabaruk 2008-10-07T00:07:34Z 2009-03-13T15:17:36Z <p>I have an OpenDocument spreadsheet with macros in StarBasic/OOoBasic that I want to convert into an Excel spreadsheet, with the StarBasic macros translated to VBA. While OpenOffice.org claims to have the ability to translate VBA macros to StarBasic and back, my attempts to have OOo convert these original StarBasic macros to VBA have all failed.</p> <p>Is there any guaranteed way to get these macros moved to VBA and Excel, without completely rewriting them? It seems that OOo will only turn StarBasic macros to VBA if they originated in that form.</p> http://stackoverflow.com/questions/278082/openoffice-spreadsheet-import-into-hsqldb 0 OpenOffice spreadsheet import into HSQLDB melling 2008-11-10T15:03:45Z 2009-03-12T16:58:30Z <p>OpenOffice ships with HSQLDB. Is it possible to easily import the contents of an OO spreadsheet into the built in database? An added nice to have would be to include the formatting of the cell contents. ie. colors, line feeds, etc.</p> <p>This question has gone unanswered so I'm offering a bounty. Please provide the code to the solution.</p> <p>The provided link does work, and no coding is required. To summarize:</p> <ol> <li>Create and register an Open Office DB.<br> 1.1 Looks like you can register any DB for which you have a JDBC driver. (ie. MySql,Postgres)</li> <li>Create column headings in row 1.</li> <li>Select data and copy it to the clipboard.<br> 3.1 Limited selection to only the desired rows because OO crashed when I selected all rows.</li> <li>Go to the Table (Tables pane) view of the database.</li> <li>Right-click and paste your data.</li> <li>Follow the instructions provided my the wizard that opens.</li> </ol> http://stackoverflow.com/questions/559583/sox-question 0 sox question adda 2009-02-18T02:04:02Z 2009-02-18T02:39:51Z <p>how do you convert a mp3wav (a compressed wav in mp3 form) to uncompressed wav (PCM) using sox?</p> <p>mp3wav sample files can be downloaded here: <a href="http://www.clayloomis.com/simsong.html" rel="nofollow">http://www.clayloomis.com/simsong.html</a></p> http://stackoverflow.com/questions/142523/dbc-csv 0 .dbc --> .csv short 2008-09-26T23:52:41Z 2009-02-07T19:02:58Z <p>I have a little utility that converts .dbc files to .csv files, trouble is, somewhere in the conversion some data is lost/destroyed/whatever. I input a.dbc into converter, it produces a.csv. I delete a.dbc,and then run a.csv back through the converter, and I come back with a "slightly" different .dbc file then I had started with.</p> <p>Does anyone know any better way of converting these files? Without loss of information..</p> <p>I open both files in HexCMP (compares two hex files, show's you the differences) and the differences are totally random through out the file. </p> http://stackoverflow.com/questions/141052/ms-paint-command-line-switches 2 MS Paint command line switches steve_mtl 2008-09-26T18:11:40Z 2009-01-29T17:44:56Z <p>I have been looking for documentation related to interacting with MSPaint from the command line. I have only found references to /p, /pt and /wia, but no guidance as to how to use them and their limitations.</p> <p>I am trying to send some graphics files to the printer and when I drop the file on my printer driver I get a different print output than if I call paint from the command line. I am using the UDC print driver to convert graphics, and I am using paint to send my graphics file to the printer driver in order for my file to convert. </p> <p>Any ideas? </p> http://stackoverflow.com/questions/340931/any-good-tool-or-library-for-recursive-convert-any-files-to-tiff-images 0 Any good tool or library for recursive convert ANY files to tiff / images? Dennis Cheung 2008-12-04T15:15:19Z 2009-01-08T22:28:35Z <p>We have to convert EVERYTHING to images for archiving purpose. DOC, HTML, email, ZIP, PDF, TXT and any document you can read/view on computer. In addition, it must recursive convent on all embed attachment and files in zip.</p> <p>I know ImgMaker only. Is it the best or I can have something better? My boss ask me to search that are there any alternative other then ImgMaker.</p> <p>Any open source or profit suggestion are welcome.</p> http://stackoverflow.com/questions/387130/which-is-the-best-import-export-latex-tool 2 Which is the best import / export LaTeX tool? Fredriku73 2008-12-22T19:43:29Z 2008-12-22T20:07:05Z <p>Working in academia publishing CS/math, you sooner or later find yourself trying to publish in a journal that will only accept .doc/.rtf. This means tedious, boring hours of translating line after line, especially equations, from LaTeX to an inferior format. Over the years I have tried a number of export tools for LaTeX, but none, at least of the free ones, that I have been very satisfied with. I'd like this page to collect and monitor the best import/export tools for LaTeX, to .doc/.rtf, or to other useful (e.g. HTML, MATHML) formats.</p> <p>Thus, what is your one favorite import or export LaTeX tool?</p> http://stackoverflow.com/questions/299235/convert-xhtml-to-word-ml 3 Convert XHTML to Word ML Mary 2008-11-18T16:16:13Z 2008-12-09T20:11:23Z <p>What is the best way to convert word HTML to word XML? I cannot buy a tool so need something preferably XSLT which is free and works suitably with basic formatting like paragraphs, lists, bold and italic.</p>