HD 720 sense pèrdua
ffmpeg -i input.mp4 -vf scale=1280:720 -preset slow -crf 18 output.mp4Convertir de vob a mp4
ffmpeg -i your_VOB_file.VOB -c:v copy -c:a copy output.mp4Convertir so
ffmpeg -i grease_rizzo.ogg -vn -ar 44100 -ac 2 -b:a 192k grease_rizzo.mp3FONT: Convert audio files to mp3
Explanation of the used arguments in this example:
-i- input file-vn- Disable video, to make sure no video (including album cover image) is included if the source would be a video file-ar- Set the audio sampling frequency. For output streams it is set by default to the frequency of the corresponding input stream. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options.-ac- Set the number of audio channels. For output streams it is set by default to the number of input audio channels. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demixer options. So used here to make sure it is stereo (2 channels)-b:a- Converts the audio bitrate to be exact 192kbit per second