From d4a55dfb148bd3b1c34888746df5f72a89d9aa2e Mon Sep 17 00:00:00 2001 From: Jose Maria Garcia-Valdecasas Bernal Date: Thu, 18 Mar 2004 12:34:05 +0000 Subject: Updated some links and explained how to add sound to video files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4402 a1c6a512-1295-4272-9138-f99709370657 --- www/docs/rvf.t | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) (limited to 'www/docs/rvf.t') diff --git a/www/docs/rvf.t b/www/docs/rvf.t index fdc790bcdd..25258e4240 100644 --- a/www/docs/rvf.t +++ b/www/docs/rvf.t @@ -6,6 +6,10 @@ This is a simple tutorial (or, at least, as simply put as possible) on how to convert your video files to RVF (Rockbox Video File), to be played on the Archos Recorder / FM Recorder / V2 line. +

Other option is to get the GUI Video Conversion Tool from John Wunder, which + can be downloaded from + http://home.ripway.com/2004-2/66978/RockVideoRelease.zip +

See also Fabian Merki's msi-rvf-gallery, a Java program for building RVF movies out of individual JPEGs. @@ -22,7 +26,7 @@ the Archos Recorder / FM Recorder / V2 line.

  • Download the tools required here: http://joerg.hohensohn.bei.t-online.de/archos/doom/source.zip +href="http://joerg.hohensohn.bei.t-online.de/archos/video/">http://joerg.hohensohn.bei.t-online.de/archos/video/ Unzip to a PATH, such as C:\RVF, that is easily remembered.
  • Press START on your taskbar, choose RUN and type in the box (minus @@ -59,6 +63,49 @@ href="http://joerg.hohensohn.bei.t-online.de/archos/doom/source.zip">http://joer done, a long list will appear on your DOS screen and you will be back at the command prompt again. +
  • Next step is adding sound to your video file. Run the tool avi2wav using the format: +
    +        avi2wav [input.avi] [output.wav]
    +
    + For example, if your original file is called "filename" then you'd put in the following: +
    +        avi2wav filename.avi filename.wav
    +
    + + OPTIONAL: You can name the output differently. + +
  • The extracted audio file must be in mp3 format, so you have to convert the WAV file into MP3. + One option is using the LAME codec. You can download the win32 binary from http://mitiok.cjb.net + One format used with LAME (good quality/size) is: +
    +         lame --preset standard [input.wav] [output.mp3]
    +
    + For example, if your audio file is called "filename" then you'd put in the following: +
    +         lame --preset standard filename.wav filename.mp3
    +
    + + OPTIONL: You can name the output differently. Also, you can use other wav to mp3 tool, or even use + other options in the lame command. The --preset standard will give you a VBR file, so if you want a + CBR file, just change the preset to --preset cbr [kbps], where [kbps] is the Constant Bit Rate desired. + +
  • Now we have to merge the sound with the video, so run the rvf_mux tool found + in the packet you've downloaded, using the format: +
    +        rvf_mux [option] [videoinput.rvf] [audioinput.mp3] [output.rvf]
    +
    + For example, if your video file from step 6 is called "filename.rvf" and the audio file from step 7 + is called "filename.wav" then you'd put in the following: +
    +        rvf_mux filename.rvf filename.mp3 filename_av.rvf
    +
    + + NOTE: You can use any name for the output file, but it's recomended that the name is not the same name + used in the input video file. + You can change the frames per second of Rockbox playback using the -play_fps [fps] option. The default + value is 67.0 fps. +
  • Copy the .rvf output to your jukebox, load up a recent daily build and plugins, and kick back and watch the movie! -- cgit v1.2.3