1.2.30 • Published 7 months ago

@nottimtam/file-converter-core v1.2.30

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@nottimtam/file-converter-core

Core file conversion modules for @nottimtam/file-converter.

Installation

npm i @nottimtam/file-converter @nottimtam/file-converter-core

Usage

See file-converter for general implementation instructions. To implement these modules, add them to the modules array of your FileConverter constructor:

import FileConverter from "@nottimtam/file-converter";
import CoreModules from "@nottimtam/file-converter-core";

const fileConverter = new FileConverter({
	modules: [...CoreModules],
});

Modules

You can use all the modules:

import CoreModules from "@nottimtam/file-converter-core";

Or just the groups you need:

import {
	ImageModules,
	DocumentModules,
	VideoModules,
	AudioModules,
} from "@nottimtam/file-converter-core";

Do not use both CoreModules and a sub-group at the same time, or conflict errors will be thrown.

NOTE: To use the audio/video modules, you will need to have ffmpeg installed to the system your application is running on.

For a Dockerfile, you can add the line:

RUN apt-get update && apt-get install -y \
    ffmpeg \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*

If you do not want to use AudioModules or VideoModules, manually import the module groups you would like to use instead of using CoreModules

ImageModules

  • JPEGToPNG image/jpeg to image/png
  • JPEGToWebP image/jpeg to image/webp
  • JPEGToGIF image/jpeg to image/gif
  • JPEGToAVIF image/jpeg to image/avif
  • JPEGToTIFF image/jpeg to image/tiff
  • PNGToJPEG image/png to image/jpeg
  • PNGToWebP image/png to image/webp
  • PNGToGIF image/png to image/gif
  • PNGToAVIF image/png to image/avif
  • PNGToTIFF image/png to image/tiff
  • WebPToPNG image/webp to image/png
  • WebPToJPEG image/webp to image/jpeg
  • WebPToGIF image/webp to image/gif
  • WebPToAVIF image/webp to image/avif
  • WebPToTIFF image/webp to image/tiff
  • GIFToPNG image/gif to image/png
  • GIFToWebP image/gif to image/webp
  • GIFToJPEG image/gif to image/jpeg
  • GIFToAVIF image/gif to image/avif
  • GIFToTIFF image/gif to image/tiff
  • AVIFToPNG image/avif to image/png
  • AVIFToWebP image/avif to image/webp
  • AVIFToGIF image/avif to image/gif
  • AVIFToJPEG image/avif to image/jpeg
  • AVIFToTIFF image/avif to image/tiff
  • TIFFToPNG image/tiff to image/png
  • TIFFToWebP image/tiff to image/webp
  • TIFFToGIF image/tiff to image/gif
  • TIFFToAVIF image/tiff to image/avif
  • TIFFToJPEG image/tiff to image/jpeg

DocumentModules

  • ImageToPDF image/jpeg, image/png to application/pdf
  • PDFToTXT application/pdf to text/plain
  • PDFToHTML application/pdf to text/html
  • PDFToDOCX application/pdf to application/vnd.openxmlformats-officedocument.wordprocessingml.document
  • TXTToPDF text/plain to application/pdf
  • TXTToDOCX text/plain to application/vnd.openxmlformats-officedocument.wordprocessingml.document
  • TXTToHTML text/plain to text/html
  • HTMLToTXT text/html to text/plain
  • DOCXToTXT application/vnd.openxmlformats-officedocument.wordprocessingml.document to text/plain
  • DOCXToHTML application/vnd.openxmlformats-officedocument.wordprocessingml.document to text/html

AudioModules

  • AudioToMP3 audio/x-wav, audio/x-flac, audio/ogg, audio/x-aiff to audio/mpeg
  • AudioToWAV audio/mpeg, audio/x-flac, audio/ogg, audio/x-aiff to audio/x-wav
  • AudioToFLAC audio/x-wav, audio/mpeg, audio/ogg, audio/x-aiff to audio/x-flac
  • AudioToOGG audio/x-wav, audio/x-flac, audio/mpeg, audio/x-aiff to audio/ogg
  • AudioToAIFF audio/x-wav, audio/x-flac, audio/ogg, audio/mpeg to audio/x-aiff

VideoModules

  • VideoToMP4 video/x-msvideo, video/x-matroska, video/quicktime, video/webm, video/mpeg, video/3gpp to video/mp4
  • VideoToAVI video/mp4, video/x-matroska, video/quicktime, video/webm, video/mpeg, video/3gpp to video/x-msvideo
  • VideoToMOV video/x-msvideo, video/x-matroska, video/mp4, video/webm, video/mpeg, video/3gpp to video/quicktime
  • VideoToWEBM video/x-msvideo, video/x-matroska, video/quicktime, video/mp4, video/mpeg, video/3gpp to video/webm
  • VideoTo3GP video/x-msvideo, video/x-matroska, video/quicktime, video/webm, video/mpeg, video/mp4 to video/3gpp

1.2.17

7 months ago

1.2.18

7 months ago

1.2.19

7 months ago

1.2.20

7 months ago

1.2.23

7 months ago

1.2.24

7 months ago

1.2.21

7 months ago

1.2.22

7 months ago

1.2.27

7 months ago

1.2.28

7 months ago

1.2.25

7 months ago

1.2.26

7 months ago

1.2.29

7 months ago

1.2.30

7 months ago

1.2.8

7 months ago

1.2.7

7 months ago

1.2.9

7 months ago

1.2.12

7 months ago

1.2.13

7 months ago

1.2.10

7 months ago

1.2.11

7 months ago

1.2.16

7 months ago

1.2.14

7 months ago

1.2.15

7 months ago

1.2.6

7 months ago

1.2.5

7 months ago

1.2.4

7 months ago

1.2.3

7 months ago

1.2.2

7 months ago

1.2.1

7 months ago

1.2.0

8 months ago

1.1.5

8 months ago

1.1.371

8 months ago

1.1.34

8 months ago

1.1.33

8 months ago

1.1.32

8 months ago

1.1.38

8 months ago

1.1.37

8 months ago

1.1.35

8 months ago

1.1.31

8 months ago

1.1.3

8 months ago

1.1.22

8 months ago

1.1.21

8 months ago

1.1.2

8 months ago

1.0.12

8 months ago

1.0.11

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago