issue with ffmpeg

Rasia

New Member
i try to encode a file

here what i got

Code: Chapter #0.12: start 7259.835896, end 7621.864229Metadata:title : Chapter 13Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x400, 700 kb/s, 23.98 fps, 23.98 tbr, 48k tbn, 47.95 tbcMetadata:creation_time : 2008-09-01 03:14:24handler_name :Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, mono, s16, 82 kb/sMetadata:creation_time : 2008-09-01 03:14:24handler_name :Stream #0:2(eng): Subtitle: mov_text (text / 0x74786574)Metadata:creation_time : 2008-09-01 03:14:24handler_name :File for preset 'normal' not foundthe issue is
File for preset 'normal' not found


any one know a solution i try to google it but i didnt find a solution What is the command you are using ?
FFMPEG uses presets for quality try selecting a different preset or you can make a "normal" one

Code: http://ffmpeg.org/ffmpeg.html#toc-Preset-filesAlso what FFMPEG version are you running and are you using *nix if so you can list out the current prefixes
Code: $ cd /usr/share/avconv$ ls Last edited by shadow.prx; 18th Dec 2012 at 05:20 PM. @ shadow.prx first ty for reply

1* i am using centos 6 64bit

2* $ cd /usr/share/avconv
i dont have this fold i have
/usr/share/ffmpeg
and on it i have
# ls
ffprobe.xsd libvpx-360p.ffpreset libx264-ipod320.ffpreset
libvpx-1080p50_60.ffpreset libvpx-720p50_60.ffpreset libx264-ipod640.ffpreset
libvpx-1080p.ffpreset libvpx-720p.ffpreset

for version

Quote: ffmpeg]# ffmpeg -version
ffmpeg version 0.10.2
built on Mar 20 2012 04:34:50 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3)
configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --enable-shared --enable-runtime-cpudetect --enable-gpl --enable-version3 --enable-postproc --enable-avfilter --enable-pthreads --enable-x11grab --enable-vdpau --disable-avisynth --enable-frei0r --enable-libopencv --enable-libdc1394 --enable-libdirac --enable-libgsm --enable-libmp3lame --enable-libnut --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC' --disable-stripping
libavutil 51. 35.100 / 51. 35.100
libavcodec 53. 61.100 / 53. 61.100
libavformat 53. 32.100 / 53. 32.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100 Ok well i'm going to assume your command looks something like this:
Code: ffmpeg -i video.mpg -vcodec libx264 -vpre normal video.mp4All you need to do is change where it says normal to one of the pre-sets you listed out,
As an example to select the 720p pre-set the command would look like this:
Code: ffmpeg -i video.mpg -vcodec libx264 -vpre libvpx-720p video.mp4 man ty but tht nt the solution that i need

i need to create that normal preset file
 
Top