Questions tagged [file-conversion]

Use this tag for questions about conversion from one file format to another. If applicable, use a more specific tag like [image-conversion], [video-conversion] or [pdf-conversion].

This tag applies to any kind of conversion from one file format to another. However, certain types of file should use a more specific tag:

780 questions
0
votes
1 answer

How to convert MS Word to PDF in the web browser

I've seen others ask this but I think my requirement is the most strict yet: I need to programmatically convert MS Word .DOC (Office 2003 or earlier) or .DOCX (Office 2007 or later) files into PDF files. This needs to happen on an ad-hoc basis over…
Peter
  • 423
  • 5
  • 15
0
votes
1 answer

command to convert CSV file *with header row* to Excel or ODS spreadsheet

What conventional tool for shell scripting allows me to convert a .csv file with a header row into LibreOffice .ods format? Things I've tried, that ignored my headers: soffice --headless --convert-to ods GPW.99.csv unoconv -f ods -o dir…
Marcos
  • 4,796
  • 5
  • 40
  • 64
0
votes
1 answer

Website uploads converting of word and image files to html or pdf on the fly

A client has given me the task of creating a site with the ability to convert their file uploads into html or pdf for storage on the web server. I want them to be able to upload (.doc, .tiff, .jpg, etc) and have it convert these files on the fly,…
0
votes
1 answer

How to Open a 5 File (.5) with Photoshop CS5

I recently made a certificate in Photoshop CS6 and for some odd reason the file was saved as: certificate (file type: .5) Is there a ways that I can convert this file to a format that I can use in Photoshop? When I try to open the file using…
Seth Urquhart
  • 599
  • 5
  • 13
  • 26
0
votes
1 answer

Convert recorded movie to GIF on iOS SDK

I'm building an iOS app which requires me to allow the users to record a 15sec clip (with UIImagePickerController for example) and then convert it into an animated GIF. How could I achieve this? Is there any library/framework available for such…
pmerino
  • 5,900
  • 11
  • 57
  • 76
0
votes
1 answer

A-Law wave file conversion source code

I need to translate A-Law companded files to regular un-companded PCM. Is there any source code out there I can look at?
TomJeffries
  • 558
  • 1
  • 8
  • 25
0
votes
1 answer

Converting pptx file to html with links working

I have a pptx file, complete with working links which i would now like to convert to html. The idea really is to convert the pptx file into a website. I am using Power Point 2010. I got some tips on how to do this conversion @…
user179056
  • 604
  • 19
  • 36
0
votes
2 answers

Encode a JPEG File

I have a file of bytes that represent a .jpeg image. However, when I try to open the image, I get an error that indicates my file is of incorrect format. I'm a little thrown off by this as the bytes in the file look like they should work. In what…
NSchulze
  • 179
  • 1
  • 5
  • 19
0
votes
1 answer

Convert MP3 bitrate from a stream into another stream with ffmpeg

Using ffmpeg, I would like to know if it's possible to convert mp3 bitrate as data chunks are received? That means I would send slowly chunks to ffmpeg so that it outputs a mp3 with another bitrate. So in very-pseudo-code, it looks like it: MP3…
Léon Pelletier
  • 2,701
  • 2
  • 40
  • 67
0
votes
1 answer

Convert pptx into html view using docx4j

Can anyone help me in converting a pptx into html view using docx4j.jar. Though I have gone through a lot of related questions already asked in this forum but none helped me. Please give me a brief conversion process(just name the related classes…
prateek
  • 440
  • 4
  • 12
0
votes
2 answers

.pes file creator

I am looking into starting my own brand of clothing. I have the sample material and a logo but the embroider has asked me to provide a PES file for her to use with her Brother Embroidery Machine. I have looked into changing my .jpg or my .png file…
Glen Robson
  • 908
  • 2
  • 19
  • 42
0
votes
2 answers

how to convert .txt to XML

I would like to make a java code that takes this .txt and outputs it as .xml . XML file should be fellow pattern e.g Text file: DATA rtr Deme_MS_GDA_DRGH R_2LOAM_OML13 R_OML13_OLMUA LINE R_LG_OML13_2LOAM _LINETYP_20 0.500 0.250 0.000 …
0
votes
1 answer

.OBN Format: Edit and Reconvert Back

I have OBN formatted binary files. To convert it to a text based file, I use a command in unix like- dd if=FileName.OBN of=Output.txt ibs=1169 obs=1169 cbs=1169 conv=ascii Where - if : is input file of : is output file ibs: input block…
Sajal Dutta
  • 18,272
  • 11
  • 52
  • 74
0
votes
1 answer

How to export rendered pages in jenkins such as the console output with the html markup intact?

The console output (or build log) as visible on the site, contains html markup (mainly from the ansi color plugin), which I intend to export as part of the email notification via email-ext (either as content or attachment). Are there any existing…
prusswan
  • 6,853
  • 4
  • 40
  • 61
0
votes
1 answer

Why my Html to Excel conversion slows down using VBA over time when looping through files?

I need to convert html files to excel from time to time. There are approximately 9000 html files that has tables on it. I find it useful to convert them using excel 2007 vba, and made a macro to do the job, I have taken into account a bug of excel…