Scripts posted recently tagged to convert in Kelpi

1- 4 of 4.

bash script to convert ASF/ASX to MP3 using mplayer and lame

to bash asx asf mp3 convert lame mplayer by anonymous

#!/bin/bash
# Bram Borggreve (c) 2008. GPL Licensed
# Script to convert ASX to MP3. Needs mplayer & lame binaries

# Check if we received a parameter

PHP Convert XML to Array

to php xml array convert by anonymous

function xml2array($object) {
	$return = NULL;
	if(is_array($object)) {
		foreach($object as $key => $value) $return[$key] = xml2array($value);
	} else {

Convert a bunch of RST files to PDF

to rst2pdf restructuredtext rst pdf convert python by mikel

#!/usr/bin/python
rst2latex = 'rst2latex.py -l es  \
--output-encoding=iso-8859-15 %(filename)s.txt %(filename)s.tex'
pdflatex = 'pdflatex %(filename)s.tex'
def main():

Convert asf file to mp3 in Ubuntu

to audio stream recording convert mplayer bash ubuntu lame by garaolaza

# First convert .asf to wav:
mplayer -ao pcm:file=destination.wav source.asf
# Then encode it to mp3
lame destination.wav
hits counter