Hi Mike,Quote:
But where is the misunderstanding?
the misunderstanding was, that :
Quote:
I think the vlc player plugin is not a very common used one.
I use the riva flv encoder.
sounds like You use riva flv instead of vlc-player in the first sight. The second look of course set me on the right path after I had a look into the net to get to know what the <riva flv encoder> was. Well, well we're comming from different worlds - for shure
. The encoder doesn't help me that much because I don't like to run software in virtual boxes that much. And the gnome desktop doesn't serve windows-apps natively - up to now at least
Maybe I can help some of Your (linux-)users here in publishing the script to make the conversion under linux with the help of mencoder like this:
Code:
#!/bin/sh
########################################################################################################
# c/o jori gel 2011
# tool to encode avi to flv format
# call it like:
# avi2flv.sh /path/to/movie.avi
# the target will be placed into the source-directory
# same name different extention
# script needs mencoder to install under ubuntu:
# apt-get install mencoder
# originally laying in /scripts/VDR
# without any warranty (see at the bottom)
########################################################################################################
# take parameter
cVideoFile="$1"
# get the filename
cFileName=$(basename $cVideoFile .avi)
# get the pathname
cFilePath=$(dirname $cVideoFile)
# and start the job
mencoder -forceidx -of lavf -oac mp3lame -lameopts abr:br=56 -srate 22050 -ovc lavc -lavcopts codec=flv:vbitrate=250:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=360:240 -o "$cFilePath/$cFileName.flv" "$cVideoFile"
# put this to the end of the line to suppress the results
#>/dev/null 2>&1
# return
exit 0
########################################################################################################
#eo avi2flv.sh
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
This way - and thanx for Your help again - the whole thing works under both os-clients finally.I really enjoyed the talk to You, so may be we keep in contact. Eventually I could help You in one or the other case not being unexpirienced in coding php, perl and others . . .so long says jori