logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).

#126 10-06-2019 18:34:18

enicar
Membre
Lieu : pas ici
Distrib. : sid
Noyau : Linux 6.5.3
(G)UI : openbox
Inscription : 26-08-2010

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Anonyme a écrit :

juste le fameux


Bon, je vais modifier le script dans le post #122.
Comme ça celui-là sera bon.

Hors ligne

#127 10-06-2019 18:35:05

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

@Debian Alain

la correction :


#!/bin/bash

PATH=$PATH:/sbin:/usr/sbin

#### Anonyme ###############################################################################
# 22-03-2019
# Archlinux
# MPlayer SVN-r38101
# ffmpeg version n4.1.1
# lsdvd 0.17
# ogmtools v1.5 (dvdxchap)
# mkvtoolnix-cli 32.0.0-1 (mkvmerge)
# mencoder-38125-5
##############################################################################################

declare -a MPLAYER_IDENTIFY
declare -a LSDVD_X

menage () {
    rm -f "$FOLDER"/*.idx
    rm -f "$FOLDER"/*.sub
    rm -f "$FOLDER/$i-$TITLE+CHAPTERS.mkv"
}

mplayer_identify () {
    if [[  "${#MPLAYER_IDENTIFY[@]}" -eq 0 ]]; then
        mapfile MPLAYER_IDENTIFY < <(mplayer -vo null -ao null -frames 0 \
                -identify dvd://"$1" -dvd-device "$DEVICE"  2>/dev/null)
    fi
    echo -n "${MPLAYER_IDENTIFY[@]}"
}

awk_lang () {
    local ilang="$1"
    local olang="$2"
    awk "/language: $ilang/ && /format:/ \
       {printf \"-metadata:s:a:\"\$3\" language=$olang -metadata:s:a:\"\$3\" title=\"\$5\$6\" \"}"

}

awk_lpcm () {
    local ilang="$1"
    local olang="$2"
    awk "/language: $ilang/ && /format: lpcm/ \
       {printf \"-metadata:s:a:0 language=$olang -metadata:s:a:0 title=\"\$5\$6\" \"}"

}

lsdvd_x () {
    if [[ "${#LSDVD_X[@]}" -eq 0  ]]; then
        mapfile LSDVD_X < <(lsdvd -x "$DEVICE" -t "$1" 2> /dev/null)
    fi
    echo -n "${LSDVD_X[@]}"
}

## CONDITION : UN SEUL DVD-VIDÉO
COUNT_DEVICE=$(blkid /dev/sr* | \
            awk '{print $1}'  | \
            sed -e 's/://g'   | \
            awk '{x=x+NF}END{print x}')

if [[ "$COUNT_DEVICE" -eq "1" ]] ; then
    echo "Proceed..."
else
    echo "Aucun DVD-Vidéo ou 2 DVD-Vidéos/DVD-ROM ... dans différents lecteurs ?"
    exit 0
fi


DEVICE=$(blkid /dev/sr* | awk '{print $1}' | sed -e 's/://g')

## LABEL DU DVD-VIDÉO & NOMBRE TOTAL DE TITRES SUR CELUI-CI
TITLE=$(lsdvd "$DEVICE" | head -1 | awk '{print $3}')
TITLE_COUNT=$(lsdvd "$DEVICE" | grep -c ^'Title: ')


DIR=$(xdg-user-dir DESKTOP)
FOLDER="$DIR/$TITLE"


if [ ! -d "$FOLDER" ]; then
    echo "$FOLDER n'existe pas !"
    echo "Création Du Dossier $FOLDER"
    mkdir -p "$FOLDER"
fi

for (( i=1; i<=TITLE_COUNT; i++ ))
do
## METADATAS DIVERS [À COMPLETER AU CAS OÙ IL MANQUERAIT QUELQUES LANGUES]
## https://fr.wikipedia.org/wiki/Liste_des_codes_ISO_639-1
    FR=$(mplayer_identify "$i" | awk_lang fr fra)
    FR_LPCM=$(mplayer_identify "$i" | awk_lpcm fr fra)
    EN=$(mplayer_identify "$i" | awk_lang en en)
    EN_LPCM=$(mplayer_identify "$i" | awk_lpcm en en)
    DE=$(mplayer_identify "$i" | awk_lang de ger)
    DE_LPCM=$(mplayer_identify "$i" | awk_lpcm de ger)
    IT=$(mplayer_identify "$i" | awk_lang it ita)
    IT_LPCM=$(mplayer_identify "$i" | awk_lpcm it ita)
    ES=$(mplayer_identify "$i" |awk_lang es spa)
    ES_LPCM=$(mplayer_identify "$i" |awk_lpcm es spa)
    NL=$(mplayer_identify "$i" |awk_lang nl nld)
    NL_LPCM=$(mplayer_identify "$i" |awk_lpcm nl nld)
    HE=$(mplayer_identify "$i" |awk_lang he heb)
    HE_LPCM=$(mplayer_identify "$i" |awk_lpcm he heb)
    HU=$(mplayer_identify "$i" |awk_lang hu hun)
    HU_LPCM=$(mplayer_identify "$i" |awk_lpcm hu hun)
    PL=$(mplayer_identify "$i" |awk_lang pl pol)
    PL_LPCM=$(mplayer_identify "$i" |awk_lpcm pl pol)
    CS=$(mplayer_identify "$i" |awk_lang cs cze)
    CS_LPCM=$(mplayer_identify "$i" |awk_lpcm cs cze)
    JA=$(mplayer_identify "$i" |awk_lang ja jpn)
    JA_LPCM=$(mplayer_identify "$i" |awk_lpcm ja jpn)
    SV=$(mplayer_identify "$i" |awk_lang sv swe)
    SV_LPCM=$(mplayer_identify "$i" |awk_lpcm sv swe)
    UNKNOWN=$(mplayer_identify "$i" |awk_lang unknown und)
    UNKNOWN_LPCM=$(mplayer_identify "$i" |awk_lpcm unknown und)
    EMPTY_LANG=$(mplayer_identify "$i" |awk_lang ' aid:' und)
    EMPTY_LANG_LPCM=$(mplayer_identify "$i" |awk_lpcm ' aid:' und)


TAGS_ID_STREAMS="${FR}${EN}${DE}${IT}${ES}${NL}${HE}${HU}${PL}${CS}${JA}${SV}${UNKNOWN}${EMPTY_LANG}"
TAGS_ID_STREAMS_LPCM="${FR_LPCM}${EN_LPCM}${DE_LPCM}${IT_LPCM}${ES_LPCM}${NL_LPCM}${HE_LPCM}${HU_LPCM}${PL_LPCM}${CS_LPCM}${JA_LPCM}${SV_LPCM}${UNKNOWN_LPCM}${EMPTY_LANG_LPCM}"


## TITRES D'UNE DURÉE DE PLUS DE .... SECONDES [ ICI, 1200 SECONDES = 20 MINUTES]
LIMIT_TIME=$(mplayer_identify "$i" | grep ID_LENGTH | sed 's/.*=\([0-9]*\)/\1/' | sed "s/\\..*//")
B=1200

if [[ "$LIMIT_TIME" -gt "$B" ]]; then
    mplayer -identify -dvd-device "$DEVICE" dvd://"$i" \
        -nocache -dumpstream -dumpfile "$FOLDER/$i-$TITLE.vob"


## DISNEY A-R-C-C-O-S
#mplayer dvdnav://"$i" -dvd-device "$DEVICE" -dumpstream -dumpfile "$i-$TITLE.vob"



    COUNT_LPCM=$(lsdvd_x "$i" |grep 'lpcm' | awk '{print$8}' | \
                     awk '{x=x+NF}END{print x}')
    COUNT_AC3_DTS_MPEG1=$(lsdvd_x "$i" | grep 'ac3,\|dts,\|mpeg1,' | \
                              awk '{print$8}' |awk '{x=x+NF}END{print x}')
    MAP_ID_STREAMS=$(lsdvd_x "$i" |grep "Audio:" | \
                         sed -n -e 's/.*\(0x\)/\1/p' |sed -e 's/c/1c/g' | \
                         awk '/0x/{gsub (/^/,"-map i:")}1')
    MAP_ID_STREAMS_LPCM=$(lsdvd_x "$i" |grep 'lpcm' | \
                              sed -n -e 's/.*\(0x\)/\1/p' | sed -e 's/c/1c/g' | \
                              awk '/0x/{gsub (/^/,"-map i:")}1')
    SIDFR=$(lsdvd_x "$i" | grep "Subtitle:" | grep  "Language: fr" | \
                awk '{print$2}' | sed s'/.$//' | \
                awk 'BEGIN { RS="[^0-9]"; OFS=""; ORS=""; } {if(length($0)) {print ($0-1);}print RT}')
    COUNT_SID_FR=$(mplayer_identify "$i" | \
                       grep "subtitle ( sid ):" | grep "language: fr" | \
                       awk '{print$7}' | awk '{x=x+NF}END{print x}')

    RATIO=$(lsdvd_x "$i" | head -3 | grep "Aspect ratio:" | \
                awk '{print$11}' | sed '$ s/.$//' | sed 's/\//:/')


#CROP=$(ffmpeg -i "$FOLDER/$i-$TITLE.vob" -ss 60 -t 15 -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1)


    INFO_AC3_DTS_MPEG1=$(lsdvd_x "$i" |awk '/ac3,/  {printf ""$4","}'  | \
                             sed -e 's/,*$//g')
    INFO_LPCM=$(lsdvd_x "$i" |awk '/ac3,/  {printf ""$4","}' | \
                    sed -e 's/,*$//g')



## ENCODAGE
## GPU
## FILMS
## AC3 & DTS & MPEG1
## SOUS-TITRAGE(S) VF
if [[ "$COUNT_LPCM" -eq "0" ]] && \
    [[ "$COUNT_AC3_DTS_MPEG1" -ge "1" ]] && \
    [[ "$COUNT_SID_FR" -ge "1" ]]
then
    ffmpeg -hwaccel auto -c:v mpeg2_cuvid -i "$FOLDER/$i-$TITLE.vob" \
        -map 0:v -metadata title="$TITLE" \
        -c:v h264_nvenc -preset slow -profile:v high -level 4.2 \
        -loglevel repeat+verbose  ${MAP_ID_STREAMS} \
        -c:a copy $TAGS_ID_STREAMS -movflags +faststart -qmin 18 -qmax 23 \
        -filter:v hue=b=0.1:s=0.7,hqdn3d=1.5:1.5:4:4,unsharp=luma_msize_x=5:luma_msize_y=5:luma_amount=0.5,noise=c0s=2:c1s=2:c2s=2:c0f=a+t \
        -y "$FOLDER/$i-$TITLE.mkv"


    rm -f "$FOLDER/$i-$TITLE.vob"
    dvdxchap -t  "$i" "$DEVICE" > "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    mkvmerge "$FOLDER/$i-$TITLE.mkv" --chapters "$FOLDER/$i-$TITLE-CHAPTERS.txt"  \
              -o "$FOLDER/$i-$TITLE+CHAPTERS.mkv"

    rm -f "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    rm -f "$FOLDER/$i-$TITLE.mkv"

    for n in $SIDFR; do
        mencoder -dvd-device "$DEVICE" "dvd://$i" \
            -nosound -ovc copy -force-avi-aspect "$RATIO"  \
            -o /dev/null -ifo "/run/media/$USER/$TITLE/VIDEO_TS/VTS_01_0.IFO"  \
            -sid "$n" -vobsubout "$FOLDER/$i-vobsubs-fr" -vobsuboutindex "$n"
    done
    mkvmerge "$FOLDER/$i-$TITLE+CHAPTERS.mkv" -a fre --default-language fr \
            "$FOLDER"/*.idx \
            -o "$FOLDER/$i-$TITLE-[Language:$INFO_AC3_DTS_MPEG1]+SUBVF.mkv"


    menage



## ENCODAGE
## GPU
## CONCERTS LIVE
## LPCM (ON GARDE QUE LA PISTE LPCM)
## PAS DE SOUS-TITRAGE

elif [[ "$COUNT_LPCM" -ge "1" ]] && \
     [[ "$COUNT_AC3_DTS_MPEG1" -ge "0" ]] && \
     [[ "$COUNT_SID_FR" -eq "0" ]]
then
    ffmpeg -hwaccel auto -c:v mpeg2_cuvid -i "$FOLDER/$i-$TITLE.vob" \
        -map 0:v -metadata title="$TITLE" -c:v h264_nvenc -preset hq \
        -profile:v high -level 4.2 -loglevel repeat+verbose  \
        ${MAP_ID_STREAMS_LPCM} -acodec pcm_s16be $TAGS_ID_STREAMS_LPCM \
        -movflags +faststart -qmin 18 -qmax 23 -y "$FOLDER/$i-$TITLE.mkv"

    rm -f "$FOLDER/$i-$TITLE.vob"
    dvdxchap -t  "$i" "$DEVICE" > "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    mkvmerge "$FOLDER/$i-$TITLE.mkv" --chapters "$FOLDER/$i-$TITLE-CHAPTERS.txt" \
            -o "$FOLDER/$i-$TITLE-[Language:$INFO_LPCM].mkv"

    rm -f "$FOLDER/$i-$TITLE.mkv"
    rm -f "$FOLDER/$i-$TITLE-CHAPTERS.txt"



## ENCODAGE
## GPU
## CONCERTS LIVE
## LPCM (ON GARDE QUE LA PISTE LPCM)
## SOUS-TITRAGE(S) VF

elif [[ "$COUNT_LPCM" -ge "1" ]] && \
         [[ "$COUNT_AC3_DTS_MPEG1" -ge "0" ]] && \
         [[ "$COUNT_SID_FR" -ge "1" ]]
then
    # ffmpeg -hwaccel auto -c:v mpeg2_cuvid -i 1-SLEEPLESS_IN_SEATTLE.vob -map 0:v -metadata title=SLEEPLESS_IN_SEATTLE -c:v h264_nvenc -preset hq -profile:v high -level 4.2 -loglevel repeat+verbose -map i:0x80 -map i:0x81 -map i:0x82 -map i:0x83 -map i:0x84 -map i:0x85 -map i:0x86 -acodec copy -metadata:s:a:0 language=en -metadata:s:a:0 title=ac3(stereo) -metadata:s:a:1 language=fra -metadata:s:a:1 title=ac3(stereo) -metadata:s:a:2 language=ger -metadata:s:a:2 title=ac3(stereo) -metadata:s:a:3 language=ita -metadata:s:a:3 title=ac3(stereo) -metadata:s:a:4 language=spa -metadata:s:a:4 title=ac3(stereo) -metadata:s:a:5 language=en -metadata:s:a:5 title=ac3(stereo) -metadata:s:a:6 language=en -metadata:s:a:6 title=ac3(unknown)  -movflags +faststart -qmin 18 -qmax 23 -y 1-SLEEPLESS_IN_SEATTLE.mk
    ffmpeg -hwaccel cuvid -c:v mpeg2_cuvid -i "$FOLDER/$i-$TITLE.vob" \
           -map 0:v -metadata title="$TITLE" \
           -c:v h264_nvenc -preset hq -profile:v high -level 4.2 \
           -loglevel repeat+verbose  ${MAP_ID_STREAMS_LPCM} \
           -acodec pcm_s16be $TAGS_ID_STREAMS_LPCM -movflags +faststart \
           -qmin 18 -qmax 23 -y "$FOLDER/$i-$TITLE.mkv"

    rm -f "$FOLDER/$i-$TITLE.vob"

    dvdxchap -t  "$FOLDER/$i" "$DEVICE" > "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    mkvmerge "$FOLDER/$i-$TITLE.mkv" --chapters "$FOLDER/$i-$TITLE-CHAPTERS.txt" \
            -o "$FOLDER/$i-$TITLE+CHAPTERS.mkv"

    rm -f "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    rm -f "$FOLDER/$i-$TITLE.mkv"

    for n in $SIDFR; do
        mencoder -dvd-device "$DEVICE" dvd://"$i" \
                -nosound -ovc copy -force-avi-aspect "$RATIO" \
                -o /dev/null -ifo "/run/media/$USER/$TITLE/VIDEO_TS/VTS_01_0.IFO" \
                -sid "$n" -vobsubout "$FOLDER/$i-vobsubs-fr" -vobsuboutindex "$n"
    done

    mkvmerge "$FOLDER/$i-$TITLE+CHAPTERS.mkv" \
            -a fre --default-language fr "$FOLDER"/*.idx \
            -o "$FOLDER/$i-$TITLE-[Language:$INFO_LPCM]+SUBVF.mkv"


    menage

## LA PETITE MAISON DANS LA PRAIRIE
elif [[ "$COUNT_LPCM" -eq "0" ]] &&
         [[ "$COUNT_AC3_DTS_MPEG1" -ge "1" ]] &&
         [[ "$COUNT_SID_FR" -eq "0" ]]
then
    ffmpeg -hwaccel auto -c:v mpeg2_cuvid \
           -i "$FOLDER/$i-$TITLE.vob" -map 0:v -metadata title="$TITLE" \
           -c:v h264_nvenc -preset hq -profile:v high -level 4.2\
           -loglevel repeat+verbose ${MAP_ID_STREAMS} \
           -c:a copy ${TAGS_ID_STREAMS} -movflags +faststart \
           -qmin 18 -qmax 23 -y "$FOLDER/$i-$TITLE.mkv"

    rm -f "$FOLDER/$i-$TITLE.vob"

    dvdxchap -t  "$i" "$DEVICE" > "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    mkvmerge "$FOLDER/$i-$TITLE.mkv" \
             --chapters "$FOLDER/$i-$TITLE-CHAPTERS.txt" -o \
             "$FOLDER/$i-$TITLE-[Language:$INFO_AC3_DTS_MPEG1].mkv"

    rm -f "$FOLDER/$i-$TITLE-CHAPTERS.txt"
    rm -f "$FOLDER/$i-$TITLE.mkv"

fi
fi
done
 



EDIT : @enicar c'est fait wink


Terminal :


[patrick@PC1 Desktop]$ ./test
Proceed...
/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE n'existe pas !
Création Du Dossier /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE
MPlayer SVN-r38139 (C) 2000-2019 MPlayer Team
225 audio & 465 video codecs

Playing dvd://1.
ID_DVD_TITLES=3
ID_DVD_TITLE_1_CHAPTERS=28
ID_DVD_TITLE_1_ANGLES=1
ID_DVD_TITLE_2_CHAPTERS=2
ID_DVD_TITLE_2_ANGLES=1
ID_DVD_TITLE_3_CHAPTERS=2
ID_DVD_TITLE_3_ANGLES=1
ID_DVD_TITLE_1_LENGTH=6051.000
ID_DVD_TITLE_2_LENGTH=151.000
ID_DVD_TITLE_3_LENGTH=384.600
ID_DVD_DISC_ID=646F796347A5A97D1D9BBEF2E283BE7F
ID_DVD_VOLUME_ID=SLEEPLESS_IN_SEATTLE
There are 3 titles on this DVD.

ID_DVD_CURRENT_TITLE=1
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000160
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x00008ee0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x000162d5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002c5d00
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002c5e20
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x002d4180
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002d42a0
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (stereo) language: en aid: 128.

ID_AUDIO_ID=128
ID_AID_128_LANG=en
audio stream: 1 format: ac3 (stereo) language: fr aid: 129.

ID_AUDIO_ID=129
ID_AID_129_LANG=fr
audio stream: 2 format: ac3 (stereo) language: de aid: 130.

ID_AUDIO_ID=130
ID_AID_130_LANG=de
audio stream: 3 format: ac3 (stereo) language: it aid: 131.

ID_AUDIO_ID=131
ID_AID_131_LANG=it
audio stream: 4 format: ac3 (stereo) language: es aid: 132.

ID_AUDIO_ID=132
ID_AID_132_LANG=es
audio stream: 5 format: ac3 (stereo) language: en aid: 133.

ID_AUDIO_ID=133
ID_AID_133_LANG=en
audio stream: 6 format: ac3 (unknown) language: en aid: 134.

ID_AUDIO_ID=134
ID_AID_134_LANG=en
number of audio channels on disk: 7.
subtitle ( sid ): 0 language: en

ID_SUBTITLE_ID=0
ID_SID_0_LANG=en
subtitle ( sid ): 1 language: fr

ID_SUBTITLE_ID=1
ID_SID_1_LANG=fr
subtitle ( sid ): 2 language: de

ID_SUBTITLE_ID=2
ID_SID_2_LANG=de
subtitle ( sid ): 3 language: it

ID_SUBTITLE_ID=3
ID_SID_3_LANG=it
subtitle ( sid ): 4 language: es

ID_SUBTITLE_ID=4
ID_SID_4_LANG=es
subtitle ( sid ): 5 language: nl

ID_SUBTITLE_ID=5
ID_SID_5_LANG=nl
subtitle ( sid ): 6 language: ar

ID_SUBTITLE_ID=6
ID_SID_6_LANG=ar
subtitle ( sid ): 7 language: cs

ID_SUBTITLE_ID=7
ID_SID_7_LANG=cs
subtitle ( sid ): 8 language: da

ID_SUBTITLE_ID=8
ID_SID_8_LANG=da
subtitle ( sid ): 9 language: fi

ID_SUBTITLE_ID=9
ID_SID_9_LANG=fi
subtitle ( sid ): 10 language: el

ID_SUBTITLE_ID=10
ID_SID_10_LANG=el
subtitle ( sid ): 11 language: iw

ID_SUBTITLE_ID=11
ID_SID_11_LANG=iw
subtitle ( sid ): 12 language: hi

ID_SUBTITLE_ID=12
ID_SID_12_LANG=hi
subtitle ( sid ): 13 language: hu

ID_SUBTITLE_ID=13
ID_SID_13_LANG=hu
subtitle ( sid ): 14 language: is

ID_SUBTITLE_ID=14
ID_SID_14_LANG=is
subtitle ( sid ): 15 language: no

ID_SUBTITLE_ID=15
ID_SID_15_LANG=no
subtitle ( sid ): 16 language: pl

ID_SUBTITLE_ID=16
ID_SID_16_LANG=pl
subtitle ( sid ): 17 language: pt

ID_SUBTITLE_ID=17
ID_SID_17_LANG=pt
subtitle ( sid ): 18 language: sv

ID_SUBTITLE_ID=18
ID_SID_18_LANG=sv
subtitle ( sid ): 19 language: tr

ID_SUBTITLE_ID=19
ID_SID_19_LANG=tr
subtitle ( sid ): 20 language: fr

ID_SUBTITLE_ID=20
ID_SID_20_LANG=fr
subtitle ( sid ): 21 language: de

ID_SUBTITLE_ID=21
ID_SID_21_LANG=de
subtitle ( sid ): 22 language: it

ID_SUBTITLE_ID=22
ID_SID_22_LANG=it
subtitle ( sid ): 23 language: es

ID_SUBTITLE_ID=23
ID_SID_23_LANG=es
subtitle ( sid ): 24 language: nl

ID_SUBTITLE_ID=24
ID_SID_24_LANG=nl
number of subtitles on disk: 25

CHAPTERS: 00:00:00.000,00:05:17.560,00:12:17.080,00:14:25.280,00:21:32.560,00:23:40.360,00:25:24.400,00:28:44.440,00:30:10.880,00:32:52.800,00:38:08.080,00:39:56.480,00:41:15.640,00:43:04.640,00:49:02.840,00:51:11.280,00:52:45.440,00:56:47.560,01:01:27.320,01:09:41.200,01:11:49.680,01:17:42.400,01:22:25.400,01:24:14.880,01:26:26.520,01:27:59.120,01:29:44.080,01:31:58.720,
dump: 307662848 bytes written (~5.4%)


MPlayer interrupted by signal 2 in module: dumpstream
ID_SIGNAL=2
dump: 315367424 bytes written (~5.5%)
dump: 315367424 bytes written to '/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.vob'.
Core dumped ;)

Exiting... (End of file)
ID_EXIT=EOF
ffmpeg version n4.1.3 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 8.2.1 (GCC) 20181127
  configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-nvdec --enable-nvenc --enable-omx --enable-shared --enable-version3
  libavutil      56. 22.100 / 56. 22.100
  libavcodec     58. 35.100 / 58. 35.100
  libavformat    58. 20.100 / 58. 20.100
  libavdevice    58.  5.100 / 58.  5.100
  libavfilter     7. 40.101 /  7. 40.101
  libswscale      5.  3.100 /  5.  3.100
  libswresample   3.  3.100 /  3.  3.100
  libpostproc    55.  3.100 / 55.  3.100
[mpeg @ 0x5592e7b124c0] max_analyze_duration 5000000 reached at 5000000 microseconds st:0
Input #0, mpeg, from '/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.vob':
  Duration: 00:05:27.07, start: 0.208056, bitrate: 7713 kb/s
    Stream #0:0[0x1e0]: Video: mpeg2video (Main), 1 reference frame, yuv420p(tv, top first, left), 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
    Stream #0:1[0x86]: Audio: ac3, 48000 Hz, 3.0, fltp, 448 kb/s
    Stream #0:2[0x85]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:3[0x84]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:4[0x83]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:5[0x82]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:6[0x81]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:7[0x80]: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:8[0x33]: Subtitle: dvd_subtitle
    Stream #0:9[0x30]: Subtitle: dvd_subtitle
    Stream #0:10[0x32]: Subtitle: dvd_subtitle
    Stream #0:11[0x31]: Subtitle: dvd_subtitle
    Stream #0:12[0x2f]: Subtitle: dvd_subtitle
    Stream #0:13[0x2e]: Subtitle: dvd_subtitle
    Stream #0:14[0x2d]: Subtitle: dvd_subtitle
    Stream #0:15[0x2c]: Subtitle: dvd_subtitle
    Stream #0:16[0x2b]: Subtitle: dvd_subtitle
    Stream #0:17[0x2a]: Subtitle: dvd_subtitle
    Stream #0:18[0x29]: Subtitle: dvd_subtitle
    Stream #0:19[0x28]: Subtitle: dvd_subtitle
    Stream #0:20[0x27]: Subtitle: dvd_subtitle
    Stream #0:21[0x26]: Subtitle: dvd_subtitle
[mpeg2_cuvid @ 0x5592e7cb6180] Using auto hwaccel type cuda with new default device.
[mpeg2_cuvid @ 0x5592e7cb6180] CUVID capabilities for mpeg2_cuvid:
[mpeg2_cuvid @ 0x5592e7cb6180] 8 bit: supported: 1, min_width: 48, max_width: 4080, min_height: 16, max_height: 4080
[mpeg2_cuvid @ 0x5592e7cb6180] 10 bit: supported: 0, min_width: 0, max_width: 0, min_height: 0, max_height: 0
[mpeg2_cuvid @ 0x5592e7cb6180] 12 bit: supported: 0, min_width: 0, max_width: 0, min_height: 0, max_height: 0
Stream mapping:
  Stream #0:0 -> #0:0 (mpeg2video (mpeg2_cuvid) -> h264 (h264_nvenc))
  Stream #0:7 -> #0:1 (copy)
  Stream #0:6 -> #0:2 (copy)
  Stream #0:5 -> #0:3 (copy)
  Stream #0:4 -> #0:4 (copy)
  Stream #0:3 -> #0:5 (copy)
  Stream #0:2 -> #0:6 (copy)
  Stream #0:1 -> #0:7 (copy)
Press [q] to stop, [?] for help
[mpeg2_cuvid @ 0x5592e7cb6180] Formats: Original: cuda | HW: cuda | SW: nv12
[Parsed_hue_0 @ 0x5592e839b280] H_expr:(null) h_deg_expr:(null) s_expr:0.7 b_expr:0.1
[Parsed_hqdn3d_1 @ 0x5592e839be80] ls:1.500000 cs:1.500000 lt:4.000000 ct:4.000000
[graph 0 input from stream 0:0 @ 0x5592e839bc40] w:720 h:576 pixfmt:nv12 tb:1/90000 fr:25/1 sar:64/45 sws_param:flags=2
[auto_scaler_0 @ 0x5592e83a4b00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_hue_0 @ 0x5592e839b280] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_hue_0'
[auto_scaler_0 @ 0x5592e83a4b00] w:720 h:576 fmt:nv12 sar:64/45 -> w:720 h:576 fmt:yuv420p sar:64/45 flags:0x4
[Parsed_unsharp_2 @ 0x5592e839dc80] effect:sharpen type:luma msize_x:5 msize_y:5 amount:0.50
[Parsed_unsharp_2 @ 0x5592e839dc80] effect:none type:chroma msize_x:5 msize_y:5 amount:0.00
[h264_nvenc @ 0x5592e7edc6c0] Loaded Nvenc version 9.0
[h264_nvenc @ 0x5592e7edc6c0] Nvenc initialized successfully
[h264_nvenc @ 0x5592e7edc6c0] 1 CUDA capable devices found
[h264_nvenc @ 0x5592e7edc6c0] [ GPU #0 - < GeForce GTX 1050 Ti > has Compute SM 6.1 ]
[h264_nvenc @ 0x5592e7edc6c0] supports NVENC
Output #0, matroska, to '/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv':
  Metadata:
    title           : SLEEPLESS_IN_SEATTLE
    encoder         : Lavf58.20.100
    Stream #0:0: Video: h264 (h264_nvenc) (High), 1 reference frame (H264 / 0x34363248), yuv420p(left), 720x576 [SAR 64:45 DAR 16:9], q=18-23, 2000 kb/s, 25 fps, 1k tbn, 25 tbc
    Metadata:
      encoder         : Lavc58.35.100 h264_nvenc
    Side data:
      cpb: bitrate max/min/avg: 0/0/2000000 buffer size: 4000000 vbv_delay: -1
    Stream #0:1(en): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:2(fra): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:3(ger): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:4(ita): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:5(spa): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:6(en): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      title           : ac3(stereo)
    Stream #0:7(en): Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, 3.0, fltp, 448 kb/s
    Metadata:
      title           : ac3(unknown)
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:22 at pos:19288078 and DTS:35.5681s speed=4.19x    
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:23 at pos:19374094 and DTS:35.8081s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:24 at pos:19382286 and DTS:35.8081s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:25 at pos:19388430 and DTS:35.8081s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:26 at pos:19394574 and DTS:35.8081s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:27 at pos:23474190 and DTS:41.5281s speed=4.18x    
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:28 at pos:23478286 and DTS:41.5281s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:29 at pos:23482382 and DTS:41.5281s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:30 at pos:23486478 and DTS:41.5281s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:31 at pos:23490574 and DTS:41.5281s
[mpeg @ 0x5592e7b124c0] New subtitle stream 0:32 at pos:23494670 and DTS:41.5281s
No more output streams to write to, finishing.e=00:05:26.14 bitrate=3267.7kbits/s speed=4.17x    
frame= 8178 fps=104 q=22.0 Lsize=  131306kB time=00:05:27.24 bitrate=3287.0kbits/s speed=4.17x    
video:66879kB audio:63877kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.420482%
Input file #0 (/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.vob):
  Input stream #0:0 (video): 8178 packets read (241344836 bytes); 8178 frames decoded;
  Input stream #0:1 (audio): 10221 packets read (18314691 bytes);
  Input stream #0:2 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:3 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:4 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:5 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:6 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:7 (audio): 10221 packets read (7849155 bytes);
  Input stream #0:8 (subtitle): 0 packets read (0 bytes);
  Input stream #0:9 (subtitle): 0 packets read (0 bytes);
  Input stream #0:10 (subtitle): 0 packets read (0 bytes);
  Input stream #0:11 (subtitle): 0 packets read (0 bytes);
  Input stream #0:12 (subtitle): 0 packets read (0 bytes);
  Input stream #0:13 (subtitle): 0 packets read (0 bytes);
  Input stream #0:14 (subtitle): 0 packets read (0 bytes);
  Input stream #0:15 (subtitle): 0 packets read (0 bytes);
  Input stream #0:16 (subtitle): 0 packets read (0 bytes);
  Input stream #0:17 (subtitle): 0 packets read (0 bytes);
  Input stream #0:18 (subtitle): 0 packets read (0 bytes);
  Input stream #0:19 (subtitle): 0 packets read (0 bytes);
  Input stream #0:20 (subtitle): 0 packets read (0 bytes);
  Input stream #0:21 (subtitle): 0 packets read (0 bytes);
  Total: 79725 packets (306754457 bytes) demuxed
Output file #0 (/home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv):
  Output stream #0:0 (video): 8178 frames encoded; 8178 packets muxed (68484411 bytes);
  Output stream #0:1 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:2 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:3 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:4 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:5 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:6 (audio): 10221 packets muxed (7849155 bytes);
  Output stream #0:7 (audio): 10221 packets muxed (18314691 bytes);
  Total: 79725 packets (133894032 bytes) muxed
[AVIOContext @ 0x5592e7b51cc0] Statistics: 146 seeks, 634 writeouts
[h264_nvenc @ 0x5592e7edc6c0] Nvenc unloaded
[AVIOContext @ 0x5592e7b1b400] Statistics: 317681808 bytes read, 3 seeks
mkvmerge v34.0.0 ('Sight and Seen') 64-bit
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » : Utilisation du démultiplexeur pour le format « Matroska ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 0 : Utilisation du module de sortie pour le format « AVC/H.264 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 1 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 2 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 3 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 4 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 5 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 6 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE.mkv » piste 7 : Utilisation du module de sortie pour le format « AC-3 ».
Le fichier « /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » est ouvert en écriture.
Progression : 100%
Les entrées CUE (l'index) sont en cours d'écriture…
Le multiplexage a pris 1 seconde.
MEncoder SVN-r38139 (C) 2000-2019 MPlayer Team
225 audio & 465 video codecs
There are 3 titles on this DVD.
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000160
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x00008ee0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x000162d5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002c5d00
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002c5e20
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x002d4180
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002d42a0
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (stereo) language: en aid: 128.
audio stream: 1 format: ac3 (stereo) language: fr aid: 129.
audio stream: 2 format: ac3 (stereo) language: de aid: 130.
audio stream: 3 format: ac3 (stereo) language: it aid: 131.
audio stream: 4 format: ac3 (stereo) language: es aid: 132.
audio stream: 5 format: ac3 (stereo) language: en aid: 133.
audio stream: 6 format: ac3 (unknown) language: en aid: 134.
number of audio channels on disk: 7.
subtitle ( sid ): 0 language: en
subtitle ( sid ): 1 language: fr
subtitle ( sid ): 2 language: de
subtitle ( sid ): 3 language: it
subtitle ( sid ): 4 language: es
subtitle ( sid ): 5 language: nl
subtitle ( sid ): 6 language: ar
subtitle ( sid ): 7 language: cs
subtitle ( sid ): 8 language: da
subtitle ( sid ): 9 language: fi
subtitle ( sid ): 10 language: el
subtitle ( sid ): 11 language: iw
subtitle ( sid ): 12 language: hi
subtitle ( sid ): 13 language: hu
subtitle ( sid ): 14 language: is
subtitle ( sid ): 15 language: no
subtitle ( sid ): 16 language: pl
subtitle ( sid ): 17 language: pt
subtitle ( sid ): 18 language: sv
subtitle ( sid ): 19 language: tr
subtitle ( sid ): 20 language: fr
subtitle ( sid ): 21 language: de
subtitle ( sid ): 22 language: it
subtitle ( sid ): 23 language: es
subtitle ( sid ): 24 language: nl
number of subtitles on disk: 25

success: format: 2  data: 0x0 - 0x57cdf800
MPEG-PS file format detected.
VIDEO:  MPEG2  720x576  (aspect 3)  25.000 fps  9800.0 kbps (1225.0 kbyte/s)
[V] filefmt:2  fourcc:0x10000002  size:720x576  fps:25.000  ftime:=0.0400
videocodec: framecopy (720x576 24bpp fourcc=10000002)
Writing header...
ODML: vprp aspect is 16:9.
Writing header...
ODML: vprp aspect is 16:9.
Pos:1478.9s  36973f (24%) 3543.85fps Trem:   0min 4153mb  A-V:0.000 [5803:0]
ODML: Starting new RIFF chunk at 1023MB.
Pos:2997.1s  74928f (49%) 4808.93fps Trem:   0min 4149mb  A-V:0.000 [5728:0]
ODML: Starting new RIFF chunk at 2047MB.
Pos:4445.5s 111139f (73%) 1301.62fps Trem:   0min 4162mb  A-V:0.000 [5793:0]
ODML: Starting new RIFF chunk at 3071MB.
^CPos:5528.5s 138213f (91%) 808.93fps Trem:   0min 4160mb  A-V:0.000 [5772:0]
Writing index...
Writing header...
ODML: vprp aspect is 16:9.

Video stream: 5772.936 kbit/s  (721617 B/s)  size: 3989474095 bytes  5528.520 secs  138213 frames
MEncoder SVN-r38139 (C) 2000-2019 MPlayer Team
225 audio & 465 video codecs
There are 3 titles on this DVD.
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000160
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x00008ee0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x000162d5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002c5d00
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002c5e20
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x002d4180
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002d42a0
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (stereo) language: en aid: 128.
audio stream: 1 format: ac3 (stereo) language: fr aid: 129.
audio stream: 2 format: ac3 (stereo) language: de aid: 130.
audio stream: 3 format: ac3 (stereo) language: it aid: 131.
audio stream: 4 format: ac3 (stereo) language: es aid: 132.
audio stream: 5 format: ac3 (stereo) language: en aid: 133.
audio stream: 6 format: ac3 (unknown) language: en aid: 134.
number of audio channels on disk: 7.
subtitle ( sid ): 0 language: en
subtitle ( sid ): 1 language: fr
subtitle ( sid ): 2 language: de
subtitle ( sid ): 3 language: it
subtitle ( sid ): 4 language: es
subtitle ( sid ): 5 language: nl
subtitle ( sid ): 6 language: ar
subtitle ( sid ): 7 language: cs
subtitle ( sid ): 8 language: da
subtitle ( sid ): 9 language: fi
subtitle ( sid ): 10 language: el
subtitle ( sid ): 11 language: iw
subtitle ( sid ): 12 language: hi
subtitle ( sid ): 13 language: hu
subtitle ( sid ): 14 language: is
subtitle ( sid ): 15 language: no
subtitle ( sid ): 16 language: pl
subtitle ( sid ): 17 language: pt
subtitle ( sid ): 18 language: sv
subtitle ( sid ): 19 language: tr
subtitle ( sid ): 20 language: fr
subtitle ( sid ): 21 language: de
subtitle ( sid ): 22 language: it
subtitle ( sid ): 23 language: es
subtitle ( sid ): 24 language: nl
number of subtitles on disk: 25

success: format: 2  data: 0x0 - 0x57cdf800
MPEG-PS file format detected.
VIDEO:  MPEG2  720x576  (aspect 3)  25.000 fps  9800.0 kbps (1225.0 kbyte/s)
[V] filefmt:2  fourcc:0x10000002  size:720x576  fps:25.000  ftime:=0.0400
videocodec: framecopy (720x576 24bpp fourcc=10000002)
Writing header...
ODML: vprp aspect is 16:9.
Writing header...
ODML: vprp aspect is 16:9.
^CPos: 571.7s  14294f ( 9%) 7425.45fps Trem:   0min 4206mb  A-V:0.000 [6074:0]
Writing index...
Writing header...
ODML: vprp aspect is 16:9.

Video stream: 6073.797 kbit/s  (759224 B/s)  size: 434094275 bytes  571.760 secs  14294 frames
mkvmerge v34.0.0 ('Sight and Seen') 64-bit
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » : Utilisation du démultiplexeur pour le format « Matroska ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-vobsubs-fr.idx » : Utilisation du démultiplexeur pour le format « VobSub ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 0 : Utilisation du module de sortie pour le format « AVC/H.264 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 1 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 2 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 3 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 4 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 5 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 6 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE+CHAPTERS.mkv » piste 7 : Utilisation du module de sortie pour le format « AC-3 ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-vobsubs-fr.idx » piste 0 : Utilisation du module de sortie pour le format « VobSub ».
« /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-vobsubs-fr.idx » piste 1 : Utilisation du module de sortie pour le format « VobSub ».
Le fichier « /home/patrick/Desktop/SLEEPLESS_IN_SEATTLE/1-SLEEPLESS_IN_SEATTLE-[Language:en,fr,de,it,es,en,en]+SUBVF.mkv » est ouvert en écriture.
Progression : 100%
Les entrées CUE (l'index) sont en cours d'écriture…
Le multiplexage a pris 4 secondes.
[patrick@PC1 Desktop]$
 

Dernière modification par Anonyme (10-06-2019 18:44:42)

#128 10-06-2019 18:37:58

enicar
Membre
Lieu : pas ici
Distrib. : sid
Noyau : Linux 6.5.3
(G)UI : openbox
Inscription : 26-08-2010

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Anonyme a écrit :

EDIT : @enicar c'est fait wink


Sauf que tu t'es trompé, il fallait mettre awk_lpcm et pas awk_lang…

PS: Oui, je sais c'était mon erreur…

Dernière modification par enicar (10-06-2019 18:38:35)

Hors ligne

#129 10-06-2019 18:39:18

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

j'ai enregistré ton nouveau script :

au chargement du disque vlc se lance , je vois le film et :

./test


Proceed...
alain@Alain-PC:~/Téléchargements$
 


ls ~/Bureau



arduino-arduinoide.desktop  CONSTANTINE_DISC_1  molotov.AppImage  steam.desktop
 

Dernière modification par Debian Alain (10-06-2019 18:42:09)

Hors ligne

#130 10-06-2019 18:39:43

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

@enicar

Et oui big_smile

Dernière modification par Anonyme (10-06-2019 18:40:51)

#131 10-06-2019 18:42:02

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

@Debian Alain

pourquoi vlc ?

Dernière modification par Anonyme (10-06-2019 18:43:15)

#132 10-06-2019 18:46:15

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

En tout cas, un grand merci enicar wink

Dernière modification par Anonyme (10-06-2019 18:46:31)

#133 10-06-2019 18:48:15

enicar
Membre
Lieu : pas ici
Distrib. : sid
Noyau : Linux 6.5.3
(G)UI : openbox
Inscription : 26-08-2010

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Anonyme a écrit :

En tout cas, un grand merci enicar wink


Je t'en prie. Il faut que tu apprennes à coder en utilisant des fonctions
dans bash. Ce n'est pas si compliqué.

Hors ligne

#134 10-06-2019 18:49:47

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

j'ai suivi ton post , changé de disque :

./test


Proceed...
/home/alain/Bureau/TEARS_OF_THE_SUN n'existe pas !
Création Du Dossier /home/alain/Bureau/TEARS_OF_THE_SUN
 



avec le disque de  départ :

./test



Proceed...
/home/alain/Bureau/CONSTANTINE_DISC_1 n'existe pas !
Création Du Dossier /home/alain/Bureau/CONSTANTINE_DISC_1
 


ls ~/Bureau


arduino-arduinoide.desktop  CONSTANTINE_DISC_1  molotov.AppImage  steam.desktop

Dernière modification par Debian Alain (10-06-2019 18:55:53)

Hors ligne

#135 10-06-2019 18:53:13

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

enicar a écrit :

Anonyme a écrit :

En tout cas, un grand merci enicar wink


Je t'en prie. Il faut que tu apprennes à coder en utilisant des fonctions
dans bash. Ce n'est pas si compliqué.



J'ai déja commencé à regarder tout ça wink

#136 10-06-2019 18:54:40

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

@Debian Alain

et dans ce dossier :

/home/alain/Bureau/TEARS_OF_THE_SUN



tu vois des fichiers ?

#137 10-06-2019 18:59:59

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

non , pas de fichier .

Anonyme a écrit :


@Debian Alain

pourquoi vlc ?


gnome est réglé comme çà :

cd audio et dvd video : vlc

1560192448.png

Dernière modification par Debian Alain (10-06-2019 19:30:40)

Hors ligne

#138 10-06-2019 19:34:45

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

essaies dans un terminal, cette commande :


mplayer -identify -dvd-device /dev/sr0 dvd://01 -nocache -dumpstream -dumpfile test.vob
 



EDIT : j'ai un seul DVD qui me sort rien chez moi, c'est Vampire, vous avez dit Vampire. hmm

[patrick@PC1 Desktop]$ ./test
Proceed...
/home/patrick/Desktop/FRIGHT_NIGHT n'existe pas !
Création Du Dossier /home/patrick/Desktop/FRIGHT_NIGHT
[patrick@PC1 Desktop]$



Tu as essayé un autre dvd ?

Dernière modification par Anonyme (10-06-2019 19:45:52)

#139 10-06-2019 19:45:02

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

mplayer n'était pas installé .

je l'ai installé .

je lance ta commande .

c'est long .

tu voudra que je teste ton script  à nouveau ?

Dernière modification par Debian Alain (10-06-2019 19:47:21)

Hors ligne

#140 10-06-2019 19:47:16

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

smile

apt-get install mplayer ffmpeg lsdvd ogmtools mkvtoolnix mencoder util-linux

Dernière modification par Anonyme (10-06-2019 20:03:10)

#141 10-06-2019 19:52:30

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

sudo apt-get install --reinstall mplayer ffmpeg lsdvd ogmtools mkvtoolnix-cli mencoder blkid


Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances      
Lecture des informations d'état... Fait
E: Impossible de trouver le paquet mkvtoolnix-cli
E: Impossible de trouver le paquet blkid



apt-get install --reinstall mplayer ffmpeg lsdvd ogmtools mkvtoolnix mencoder util-linux

Dernière modification par Debian Alain (10-06-2019 20:03:26)

Hors ligne

#142 10-06-2019 19:53:20

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Debian Alain a écrit :

mplayer n'était pas installé .

je l'ai installé .

je lance ta commande .

c'est long .

tu voudra que je teste ton script  à nouveau ?



Oui. Pour ne pas que ça dure trop longtemps, tu rip un peu et tu fais un ctrl + c dans le terminal, la suite du travail devrait ce faire .

#143 10-06-2019 19:55:39

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Il te manque en effet des paquets. Bizarre pour blkid, il me semble que tu m'avais démontré qu'il était installé chez toi. hmm

#144 10-06-2019 20:00:22

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Apparement sous debian c'est mkvtoolnix a la place de mkvtoolnix-cli

apt-get install mplayer ffmpeg lsdvd ogmtools mkvtoolnix mencoder util-linux

Dernière modification par Anonyme (10-06-2019 20:03:41)

#145 10-06-2019 20:06:33

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

commande (script) lancée .

apparemment , çà fonctionne .

téléchargement en cours .

je coupe vlc .

Hors ligne

#146 10-06-2019 20:07:55

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Debian Alain a écrit :

commande (script) lancée .

apparemment , çà fonctionne .

téléchargement en cours .

je coupe vlc .



Tu peux faire un ctrl + c sur le rip si tu veux wink

#147 10-06-2019 20:11:08

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

je suis arrivé à 80 % , j'attends la fin , pour voir .

de mémoire (pas sûr) , je crois que j'ai commencé à ~30%

Hors ligne

#148 10-06-2019 20:13:08

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Bien.
Moi ce qui m'interresse, c'est l'encodage par ta carte et les messages dans le terminal.
J'ai une MSI geforce gtx 1050 ti.

Dernière modification par Anonyme (10-06-2019 20:15:21)

#149 10-06-2019 20:20:04

Debian Alain
Membre
Lieu : Bretagne
Distrib. : sid (unstable) / bullseye (stable)
Noyau : Linux sid 6.4.0-3-amd64
(G)UI : Gnome X.org (X11) / GDM3
Inscription : 11-03-2017
Site Web

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

sapphire RX 550 4Go

Proceed...
/home/alain/Bureau/CONSTANTINE_DISC_1 n'existe pas !
Création Du Dossier /home/alain/Bureau/CONSTANTINE_DISC_1
MPlayer 1.3.0 (Debian), built with gcc-8 (C) 2000-2016 MPlayer Team
do_connect: could not connect to socket
connect: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing dvd://1.
ID_DVD_TITLES=10
ID_DVD_TITLE_1_CHAPTERS=34
ID_DVD_TITLE_1_ANGLES=1
ID_DVD_TITLE_2_CHAPTERS=1
ID_DVD_TITLE_2_ANGLES=1
ID_DVD_TITLE_3_CHAPTERS=1
ID_DVD_TITLE_3_ANGLES=1
ID_DVD_TITLE_4_CHAPTERS=1
ID_DVD_TITLE_4_ANGLES=1
ID_DVD_TITLE_5_CHAPTERS=1
ID_DVD_TITLE_5_ANGLES=1
ID_DVD_TITLE_6_CHAPTERS=1
ID_DVD_TITLE_6_ANGLES=1
ID_DVD_TITLE_7_CHAPTERS=1
ID_DVD_TITLE_7_ANGLES=1
ID_DVD_TITLE_8_CHAPTERS=1
ID_DVD_TITLE_8_ANGLES=1
ID_DVD_TITLE_9_CHAPTERS=1
ID_DVD_TITLE_9_ANGLES=1
ID_DVD_TITLE_10_CHAPTERS=1
ID_DVD_TITLE_10_ANGLES=1
ID_DVD_TITLE_1_LENGTH=6949.120
ID_DVD_TITLE_2_LENGTH=12.800
ID_DVD_TITLE_3_LENGTH=52.960
ID_DVD_TITLE_4_LENGTH=136.680
ID_DVD_TITLE_5_LENGTH=49.320
ID_DVD_TITLE_6_LENGTH=49.320
ID_DVD_TITLE_7_LENGTH=49.200
ID_DVD_TITLE_8_LENGTH=47.800
ID_DVD_TITLE_9_LENGTH=30.000
ID_DVD_TITLE_10_LENGTH=255.960
ID_DVD_DISC_ID=9883092EA45BE55408C4070686C05D7B
ID_DVD_VOLUME_ID=CONSTANTINE_DISC_1
There are 10 titles on this DVD.

ID_DVD_CURRENT_TITLE=1
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000130
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x000007e5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0001eb01
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002d66d0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002d67af
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002e344e
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (5.1) language: en aid: 128.

ID_AUDIO_ID=128
ID_AID_128_LANG=en
audio stream: 1 format: ac3 (5.1) language: fr aid: 129.

ID_AUDIO_ID=129
ID_AID_129_LANG=fr
audio stream: 2 format: ac3 (stereo) language: en aid: 130.

ID_AUDIO_ID=130
ID_AID_130_LANG=en
number of audio channels on disk: 3.
subtitle ( sid ): 0 language: en

ID_SUBTITLE_ID=0
ID_SID_0_LANG=en
subtitle ( sid ): 1 language: en

ID_SUBTITLE_ID=1
ID_SID_1_LANG=en
subtitle ( sid ): 2 language: fr

ID_SUBTITLE_ID=2
ID_SID_2_LANG=fr
subtitle ( sid ): 3 language: fr

ID_SUBTITLE_ID=3
ID_SID_3_LANG=fr
subtitle ( sid ): 4 language: nl

ID_SUBTITLE_ID=4
ID_SID_4_LANG=nl
subtitle ( sid ): 5 language: ar

ID_SUBTITLE_ID=5
ID_SID_5_LANG=ar
number of subtitles on disk: 6

CHAPTERS: 00:00:00.000,00:02:40.400,00:06:25.960,00:10:06.440,00:13:45.360,00:17:14.760,00:19:39.960,00:23:30.200,00:26:14.360,00:28:28.240,00:32:56.680,00:36:02.760,00:39:36.200,00:44:53.880,00:48:24.280,00:51:21.200,00:55:39.840,00:58:53.200,01:01:52.880,01:06:26.440,01:09:25.440,01:12:58.200,01:15:16.600,01:19:12.880,01:22:18.880,01:26:10.280,01:30:13.640,01:33:08.240,01:35:52.600,01:38:43.640,01:40:44.640,01:44:00.520,01:46:54.920,01:49:12.200,
dump: 5689966592 bytes written (~100.0%)
dump: 5692180480 bytes written to '/home/alain/Bureau/CONSTANTINE_DISC_1/1-CONSTANTINE_DISC_1.vob'.
Core dumped ;)

Exiting... (End of file)
ID_EXIT=EOF
ffmpeg version 4.1.3-1 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 8 (Debian 8.3.0-7)
  configuration: --prefix=/usr --extra-version=1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
  libavutil      56. 22.100 / 56. 22.100
  libavcodec     58. 35.100 / 58. 35.100
  libavformat    58. 20.100 / 58. 20.100
  libavdevice    58.  5.100 / 58.  5.100
  libavfilter     7. 40.101 /  7. 40.101
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  3.100 /  5.  3.100
  libswresample   3.  3.100 /  3.  3.100
  libpostproc    55.  3.100 / 55.  3.100
Unknown decoder 'mpeg2_cuvid'
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Le fichier « /home/alain/Bureau/CONSTANTINE_DISC_1/1-CONSTANTINE_DISC_1.mkv » ne peut pas être ouvert en lecture : open file error.
MEncoder 1.3.0 (Debian), built with gcc-8 (C) 2000-2016 MPlayer Team
There are 10 titles on this DVD.
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000130
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x000007e5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0001eb01
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002d66d0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002d67af
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002e344e
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (5.1) language: en aid: 128.
audio stream: 1 format: ac3 (5.1) language: fr aid: 129.
audio stream: 2 format: ac3 (stereo) language: en aid: 130.
number of audio channels on disk: 3.
subtitle ( sid ): 0 language: en
subtitle ( sid ): 1 language: en
subtitle ( sid ): 2 language: fr
subtitle ( sid ): 3 language: fr
subtitle ( sid ): 4 language: nl
subtitle ( sid ): 5 language: ar
number of subtitles on disk: 6

success: format: 2  data: 0x805000 - 0x55321000
MPEG-PS file format detected.
VIDEO:  MPEG2  720x576  (aspect 3)  25.000 fps  7500.0 kbps (937.5 kbyte/s)
[V] filefmt:2  fourcc:0x10000002  size:720x576  fps:25.000  ftime:=0.0400
VobSub: Can't open IFO file
videocodec: framecopy (720x576 24bpp fourcc=10000002)
Writing header...
ODML: vprp aspect is 16:9.
Writing header...
ODML: vprp aspect is 16:9.
Pos:1577.8s  39445f (22%) 14017.41fps Trem:   0min 4540mb  A-V:0.000 [5439:0]
ODML: Starting new RIFF chunk at 1023MB.
Pos:3131.4s  78286f (45%) 907.48fps Trem:   1min 4547mb  A-V:0.000 [5483:0]]]
ODML: Starting new RIFF chunk at 2047MB.
Pos:4661.5s 116538f (67%) 1037.88fps Trem:   0min 4551mb  A-V:0.000 [5525:0]
ODML: Starting new RIFF chunk at 3071MB.
Pos:6167.1s 154178f (89%) 1340.34fps Trem:   0min 4558mb  A-V:0.000 [5568:0]
ODML: Starting new RIFF chunk at 4095MB.
Pos:6949.1s 173728f (99%) 1493.73fps Trem:   0min 4548mb  A-V:0.000 [5488:0]
Writing index...
Writing header...
ODML: vprp aspect is 16:9.

Video stream: 5488.121 kbit/s  (686015 B/s)  size: 4767200985 bytes  6949.120 secs  173728 frames
MEncoder 1.3.0 (Debian), built with gcc-8 (C) 2000-2016 MPlayer Team
There are 10 titles on this DVD.
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000130
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x000007e5
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0001eb01
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x002d66d0
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x002d67af
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x002e344e
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (5.1) language: en aid: 128.
audio stream: 1 format: ac3 (5.1) language: fr aid: 129.
audio stream: 2 format: ac3 (stereo) language: en aid: 130.
number of audio channels on disk: 3.
subtitle ( sid ): 0 language: en
subtitle ( sid ): 1 language: en
subtitle ( sid ): 2 language: fr
subtitle ( sid ): 3 language: fr
subtitle ( sid ): 4 language: nl
subtitle ( sid ): 5 language: ar
number of subtitles on disk: 6

success: format: 2  data: 0x805000 - 0x55321000
MPEG-PS file format detected.
VIDEO:  MPEG2  720x576  (aspect 3)  25.000 fps  7500.0 kbps (937.5 kbyte/s)
[V] filefmt:2  fourcc:0x10000002  size:720x576  fps:25.000  ftime:=0.0400
VobSub: Can't open IFO file
videocodec: framecopy (720x576 24bpp fourcc=10000002)
Writing header...
ODML: vprp aspect is 16:9.
Writing header...
ODML: vprp aspect is 16:9.
Pos:1577.8s  39445f (22%) 13898.87fps Trem:   0min 4540mb  A-V:0.000 [5439:0]
ODML: Starting new RIFF chunk at 1023MB.
Pos:3131.4s  78286f (45%) 14002.15fps Trem:   0min 4547mb  A-V:0.000 [5483:0]
ODML: Starting new RIFF chunk at 2047MB.
Pos:4661.5s 116538f (67%) 13595.19fps Trem:   0min 4551mb  A-V:0.000 [5525:0]
ODML: Starting new RIFF chunk at 3071MB.
Pos:6167.1s 154178f (89%) 13680.39fps Trem:   0min 4558mb  A-V:0.000 [5568:0]
ODML: Starting new RIFF chunk at 4095MB.
Pos:6949.1s 173728f (99%) 13884.91fps Trem:   0min 4548mb  A-V:0.000 [5488:0]
Writing index...
Writing header...
ODML: vprp aspect is 16:9.

Video stream: 5488.121 kbit/s  (686015 B/s)  size: 4767200985 bytes  6949.120 secs  173728 frames
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Le fichier « /home/alain/Bureau/CONSTANTINE_DISC_1/1-CONSTANTINE_DISC_1+CHAPTERS.mkv » ne peut pas être ouvert en lecture : open file error.
 



une erreur :


  libpostproc    55.  3.100 / 55.  3.100

>>>> Unknown decoder 'mpeg2_cuvid' <<<<

mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
 

Dernière modification par Debian Alain (10-06-2019 20:24:22)

Hors ligne

#150 10-06-2019 20:24:07

Anonyme
Invité

Re : Script: FFMPEG : Ripper et Encoder ses DVD pour archivage (SUBFR,etc)

Oui. ta carte ou ffmpeg hmm

en tout cas, on avance ....

EDIT : faudrait voir à tailler l'option.

Dernière modification par Anonyme (10-06-2019 20:25:18)

Pied de page des forums