Posts Tagged ‘camv’
21
lug

Well,

a usefully thing (for me) that convert real media files like CAMV, RM, SMIL in iPod compatible video (AVI mpeg4).

It’s a multithread windows executable easy to use.

It merge RM and CAMV in AVI file and after convert the AVI in Mpeg4 for iPod compatible video in 320×240.

Rcam

you can download it here.

    - Requires Framework .net 2.0+. It’s a C# application.
    - Unzip all and click Rcam.exe. Mantain mencoder.exe and ffmpeg.exe in the same path of your executable.

If you prefer unix version of rm camv converter, read this old article.

WARNING! It’s a beta version 000000.000001 ! There are a lot of bugs… but it works!

it’s all.

Rif: albertopasca.it

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , , , , , , , , , , , ,

23
lug

Real player usa due file per visualizzare il video in questo formato.
Il file .camv contiene l’xml con le informazioni utili al video e l’altro (rm) contiene l’audio.

real player


Ecco come convertire entrambi, unendoli in un filmato .AVI in linux shell.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

convert()
{
   echo Analyzing $FOLDER...
   mencoder -audiofile $FOLDER/*.rm $FOLDER/*.camv -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac pcm -o /dev/null
   mencoder -audiofile $FOLDER/*.rm $FOLDER/*.camv -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 -oac pcm -o $FOLDER.avi
}

LST=`ls -1 .`
for FOLDER in $LST;
do
    convert
done

in realtà può essere fatto anche su Windows.
E’ scaricabile da sourceforge: http://sourceforge.net/projects/mewig/.

[ref -> albertopasca.it]

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , , ,

Switch to our mobile site