Tagged Questions
3
votes
0answers
92 views
Batch conversion of Module files with XMP
I have the following script to convert a big bunch of .MOD and .XM files into Wave format:
#!/bin/bash
for f in ./XM.* ./MOD.*
do
xmp $f -d wav -o - | ffmpeg -i - -acodec libmp3lame -ab 320k ...
14
votes
5answers
8k views
Split pages in pdf
I have a scanned pdf file which has scanned two pages on one virtual page (page in pdf file).
The resolution is with good quality. The problem is I have to zoom when reading and drag from left to the ...