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).

#176 19-01-2020 20:41:35

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Sans rien touché, si tu peux tester celui-ci. Je t'ai mis x264 wink

au cas où :

apt install ffmpeg




#!/bin/bash

## Anonyme
## sudo pacman -S handbrake-cli mkvtoolnix-cli mplayer lsdvd mediainfo

##                               x264
##                               x264_10bit
##                               nvenc_h264
##                               x265
##                               x265_10bit
##                               x265_12bit
##                               nvenc_h265
##                               mpeg4
##                               mpeg2
##                               VP8
##                               VP9
##                               theora




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

## Condition : un seul dvd-vidéo.
mapfile -t  BLKID < <(blkid /dev/sr* |sed -E 's/^([^:]+): .*/\1/')

if [[ "${#BLKID[@]}" -eq  "0" ]] ; then
    echo "Aucun DVD trouvé: abandon"
    exit 0
fi

idx=0
for dev in "${BLKID[@]}"; do
    mnt=$(mount |sed -n -E "s/^${dev//\//\\\/} on (.*) type .*\$/\\1/p")
    [[ -z "$mnt" ]] && continue
    if [[ -f "$mnt/VIDEO_TS/VIDEO_TS.IFO" ]]; then
        DEVICES[$idx]="$dev"
        MOUNT_POINTS[$idx]="$mnt"
        idx=$((idx+1))
    fi
done

if [[ "${#DEVICES[@]}" -eq 0 ]]; then
    echo "Aucun dvd vidéo monté : Abandon"
    exit 0
elif [[ "${#DEVICES[@]}" -gt 1 ]];  then
    echo "Il y a plus d'un dvd video détecté : Abandon"
    exit 0
fi

DEVICE=${DEVICES[0]}
MOUNT_POINT=${MOUNT_POINTS[0]}

## Label du dvd-vidéo & nombre total de titres sur celui-ci.
idx=0
TITLE_COUNT=0
regexp='^Title: '
while read -r line; do
    idx=$((idx+1))
    if [[ "$idx" -eq 1 ]]; then
        TITLE=${line#*: }
    elif [[ "$line" =~ $regexp ]]; then
        TITLE_COUNT=$((TITLE_COUNT+1))
    fi
done < <(lsdvd "$DEVICE" 2>/dev/null)

unset regexp dev mnt idx BLKID DEVICES MOUNT_POINTS

if [[ -z "$TITLE" ]]; then
    echo "Pas de dvd vidéo trouvé : abandon"
    exit 0
fi

echo "Proceed..."





echo "DVD-Vidéo : $TITLE"
read -r -p "Ce nom convient-il ? [Y/n] " input
 
case $input in
    [yY][eE][sS]|[yY])
 echo "Yes"

 mkdir -p "$TITLE/IFOS"
 ;;
    [nN][oO]|[nN])
 echo "No"
 read -p "Entrer un nouveau nom: " TITLE
 
 mkdir -p "$TITLE/IFOS"
       ;;
    *)
 echo "Invalid input..."
 echo "Quit"
 exit 1
 ;;
esac



for (( i=1; i<=TITLE_COUNT; i++ ))
do


## Titres d'une durée de plus de .... secondes [ ici, 2 seconde]
               
    LENGTH=$(mplayer -noconfig all -nocache -vo null -ao null -frames 0 -identify -dvd-device "$DEVICE" dvdnav://"$i" 2>/dev/null | \
              sed -E -n 's/^.*ID_LENGTH=([0-9]+).*$/\1/p')
           
    LIMIT=5
    [[ "$LENGTH" -le "$LIMIT" ]] && continue





## -frames 15
COUNT_AUDIO_MPLAYER=$(mplayer -noconfig all -nocache -vo null -ao null -frames 15 -identify -dvd-device "$DEVICE" dvdnav://"$i" 2>/dev/null | grep -c "AUDIO:")


## POUR N'AVOIR QUE LE FRANÇAIS.
AUDIO_FRENCH=$(lsdvd -a "$DEVICE" -t "$i" 2> /dev/null | grep "Language: fr" | awk '{print$4}' )
COUNT_AUDIO_FRENCH=$(lsdvd -a "$DEVICE" -t "$i" 2> /dev/null |grep -c 'Language: fr')  
AUDIO_LANG_LIST_FRENCH=$(echo $AUDIO_FRENCH | sed 's/[[:blank:]]/,/g')


## BITRATE ORIGINAL ET RATIO.
BITRATE=$(mplayer -noconfig all -nocache -vo null -ao null -frames 0 -identify -dvd-device "$DEVICE" dvdnav://"$i" 2>/dev/null | \
          grep "VIDEO:" | awk '{print$8}' | sed 's/\.[^ ]*/ /g')
RATIO=$(lsdvd -x $DEVICE -t "$i" | grep -m1 "Aspect ratio:" | awk '{print$11}' | sed -e 's/\//\:/g' | tr -d ',')





if [[ "$COUNT_AUDIO_MPLAYER" -ge "0" ]]; then

HandBrakeCLI --no-dvdnav \
--input $DEVICE --title $i \
--all-audio --all-subtitles --subtitle-lang-list fr \
-e nvenc_h265 -b $BITRATE --loose-anamorphic --modulus 2 \
--hqdn3d=y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4 --unsharp=y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5 \
--crop 0:0:0:0 \
--aencoder copy \
--output "$TITLE/$i-$TITLE.mkv"


mediainfo "$TITLE/$i-$TITLE.mkv" >> "$TITLE/IFOS/$i-$TITLE.txt"                

 

    fi



if [[ "$COUNT_AUDIO_MPLAYER" -ge "1" ]]; then
#### AJOUT CORRECTION STREAMS AUDIOS INVALIDES AU CAS OÙ.
DETECT_VALID_AUDIO=$(ffprobe "$TITLE/$i-$TITLE.mkv" 2>&1 | awk '/Audio:/ && /Stream/ && /ac3,/ && /kb\/s/ { print $2 }'| cut -c4-4)
VALID_AUDIO_PREPARE=$(echo $DETECT_VALID_AUDIO | sed -e 's/\ /\,/g' >> "$TITLE/$i-choix.txt")
VALID_AUDIO=$(head -n 1 "$TITLE/$i-choix.txt" | tail -n 1)


     
       mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks $VALID_AUDIO "$TITLE/$i-$TITLE.mkv"


rm -f "$TITLE/$i-$TITLE.mkv"
rm -f "$TITLE/$i-choix.txt"


INFO_1=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[vérifié].mkv" 2>/dev/null | \
          awk '/alang/  { x = x $9 ""}
              END { sub(/,*$/, "", x); print x }'
)
             
      mv "$TITLE/$i-$TITLE-[vérifié].mkv" "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv"
      mediainfo "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" >> "$TITLE/IFOS/$i-$TITLE-[Language: $INFO_1].log"                

rm -f "$TITLE/IFOS/$i-$TITLE.txt"
 
 
       
     fi
     

## CONDITION : UN SEUL STREAM AUDIO MAIS SANS INFO SUR LE LANGUAGE. ON NE PARLE PAS ICI DE (XX ou UNKNOWN)
#COUNT=$(ffprobe "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv"  2>&1 |grep -c "Audio:")
COUNT=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" 2>/dev/null | grep -c "aid")

NULL_INFO=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" 2>/dev/null | \
               awk '/alang/ { print $9 }' | wc -w)
               
if [[ "$COUNT" -eq "1" ]] && [[ "$NULL_INFO" -eq "0" ]] ; then
          mkvpropedit "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" --edit track:a1 --set language=fre
 
NULL_INFO_RESTORE=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" 2>/dev/null | \
          awk '/alang/  { x = x $9 ""}
              END { sub(/,*$/, "", x); print x }'
)

          mv "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" "$TITLE/$i-$TITLE-[Language: $NULL_INFO_RESTORE].mkv"

rm -f "$TITLE/IFOS/$i-$TITLE-[Language: $INFO_1].log"
          mediainfo "$TITLE/$i-$TITLE-[Language: $NULL_INFO_RESTORE].mkv" >> "$TITLE/IFOS/$i-$TITLE-[Language: $NULL_INFO_RESTORE].log"  



    fi    
     



VERIF_AUDIOFR=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv" 2>/dev/null | \
   grep -c "alang fre,")
         
if [[ "$VERIF_AUDIOFR" -ge "1" ]]; then
      rm -f "$TITLE/IFOS/$i-$TITLE-[Language: $INFO_1].log"
      mkvmerge -o "$TITLE/$i-$TITLE-[Language: Français].mkv" -a fre "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv"

rm -f "$TITLE/$i-$TITLE-[Language: $INFO_1].mkv"

INFO_AUDIOFR=$(mplayer -vo null -ao null -frames 0 -identify "$TITLE/$i-$TITLE-[Language: Français].mkv" 2>/dev/null | \
          awk '/alang/  { x = x $9 ""}
              END { sub(/,*$/, "", x); print x }'
)
             
      mv "$TITLE/$i-$TITLE-[Language: Français].mkv" "$TITLE/$i-$TITLE-[Language: $INFO_AUDIOFR].mkv"
      mediainfo "$TITLE/$i-$TITLE-[Language: $INFO_AUDIOFR].mkv" >> "$TITLE/IFOS/$i-$TITLE-[Language: $INFO_AUDIOFR].log"


   
    fi







## DUMPAUDIO ET SAUVEGARDE DU LPCM EN WAVE D'UN DVD DE CONCERT LIVE.
AIDS_LPCM=$(lsdvd -a "$DEVICE" -t "$i" 2>/dev/null | awk '/lpcm|id:/ { print $22 }')  
COUNT_AUDIO_LPCM=$(lsdvd -a "$DEVICE" -t "$i" 2>/dev/null | grep -c "lpcm" )  

if [[ "$COUNT_AUDIO_LPCM" -ge "1" ]]; then

mkdir -p "$TITLE/WAVE"

for n in $AIDS_LPCM; do
        mplayer -noconfig all -nocache -benchmark -vc null -vo null \
                 -ao pcm:fast:file="$TITLE/WAVE/[$i-($n)]-$TITLE.wav" \
                 -identify -dvd-device "$DEVICE" dvdnav://$i -ni -aid $n
done  
                                       

   
   fi


done
 

Dernière modification par Anonyme (19-01-2020 22:58:14)

#177 19-01-2020 21:45:46

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Merci Anonyme, j'y teste demain matin. smile

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#178 20-01-2020 06:13:33

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

test en cours... wink

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#179 20-01-2020 07:53:45

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Raté, je n'ai que le dossier IFOS avec des fichiers vides.
Voici la totalité de l'opération du script (copie/colle) que j'ai nommé  handbrake_dvd7 dans la continuité des précédents :

$ handbrake_dvd7
Proceed...
DVD-Vidéo : 4_DOLLARS_DE_VENGEANCE
Ce nom convient-il ? [Y/n] n
No
Entrer un nouveau nom: 4_dollars_vengeance
[06:12:51] hb_init: starting libhb thread
[06:12:51] thread 7fbbe759b700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[06:12:51] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[06:12:51]  - Intel microarchitecture Haswell
[06:12:51]  - logical processor count: 8
[06:12:51] hb_scan: path=/dev/sr0, title_index=1
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[06:12:51] bd: not a bd - trying as a stream/file instead
[06:12:51] dvd: Region mask 0xff
[06:12:51] dvd: Warning, DVD device has no region set
[06:12:51] scan: DVD has 4 title(s)
[06:12:51] scan: scanning title 1
[06:12:51] scan: opening IFO for VTS 1
[06:12:51] pgc_id: 1, pgn: 1: pgc: 0x7fbbd801ec50
[06:12:51] scan: vts=1, ttn=1, cells=0->5, blocks=0->1798140, 1798141 blocks
[06:12:51] scan: duration is 01:24:25 (5065520 ms)
[06:12:51] scan: checking audio 1
[06:12:51] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[06:12:51] scan: title 1 has 6 chapters
[06:12:51] scan: chap 1 c=0->0, b=0->251859 (251860), 709480 ms
[06:12:51] scan: chap 2 c=1->1, b=251860->459498 (207639), 584800 ms
[06:12:51] scan: chap 3 c=2->2, b=459499->751914 (292416), 823760 ms
[06:12:51] scan: chap 4 c=3->3, b=751915->1429162 (677248), 1908240 ms
[06:12:51] scan: chap 5 c=4->4, b=1429163->1604590 (175428), 494000 ms
[06:12:51] scan: chap 6 c=5->5, b=1604591->1798140 (193550), 545240 ms
[06:12:51] scan: aspect = 4:3
[06:12:51] scan: decoding previews for title 1

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[06:12:51] scan: title angle(s) 1
[mp2 @ 0x7fbbd8023880] Header missing
[06:12:51] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[06:12:53] scan: 10 previews, 720x576, 25.000 fps, autocrop = 130/116/6/16, aspect 4:3, PAR 16:15
[06:12:53] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 1:
  + vts 1, ttn 1, cells 0->5 (1798141 blocks)
  + duration: 01:24:25
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 130/116/6/16
  + chapters:
    + 1: cells 0->0, 251860 blocks, duration 00:11:49
    + 2: cells 1->1, 207639 blocks, duration 00:09:45
    + 3: cells 2->2, 292416 blocks, duration 00:13:44
    + 4: cells 3->3, 677248 blocks, duration 00:31:48
    + 5: cells 4->4, 175428 blocks, duration 00:08:14
    + 6: cells 5->5, 193550 blocks, duration 00:09:05
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[06:12:53] 1 job(s) to process
[06:12:53] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            },
            {
                "Name": "Chapter 2"
            },
            {
                "Name": "Chapter 3"
            },
            {
                "Name": "Chapter 4"
            },
            {
                "Name": "Chapter 5"
            },
            {
                "Name": "Chapter 6"
            }
        ],
        "ChapterMarkers": true,
        "File": "4_dollars_vengeance/1-4_dollars_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 6,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 1
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 7000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[06:12:53] starting job
[06:12:53] MTFrame thread started for segment 0
[06:12:53] MTFrame thread started for segment 1
[06:12:53] MTFrame thread started for segment 2
[06:12:53] MTFrame thread started for segment 3
[06:12:53] MTFrame thread started for segment 6
[06:12:53] MTFrame thread started for segment 7
[06:12:53] MTFrame thread started for segment 4
[06:12:53] MTFrame thread started for segment 5
[06:12:53] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[06:12:53] Auto Passthru: fallback is AAC (avcodec)
[06:12:53] Auto Passthru: passthru not possible for track 1, using fallback
[06:12:53] job configuration:
[06:12:53]  * source
[06:12:53]    + /dev/sr0
[06:12:53]    + title 1, chapter(s) 1 to 6
[06:12:53]  * destination
[06:12:53]    + 4_dollars_vengeance/1-4_dollars_vengeance.mkv
[06:12:53]    + container: Matroska (libavformat)
[06:12:53]      + chapter markers
[06:12:53]  * video track
[06:12:53]    + decoder: mpeg2video
[06:12:53]      + bitrate 200 kbps
[06:12:53]    + filters
[06:12:53]      + Framerate Shaper (mode=0)
[06:12:53]        + frame rate: same as source (around 25.000 fps)
[06:12:53]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[06:12:53]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[06:12:53]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[06:12:53]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[06:12:53]    + Output geometry
[06:12:53]      + storage dimensions: 720 x 576
[06:12:53]      + pixel aspect ratio: 16 : 15
[06:12:53]      + display dimensions: 768 x 576
[06:12:53]    + encoder: H.265 (libx265)
[06:12:53]      + bitrate: 7000 kbps, pass: 0
[06:12:53]      + color profile: 5-1-6
[06:12:53]  * audio track 1
[06:12:53]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[06:12:53]      + bitrate: 128 kbps, samplerate: 48000 Hz
[06:12:53]    + mixdown: Stereo
[06:12:53]    + dither: triangular
[06:12:53]    + encoder: AAC (libavcodec)
[06:12:53]      + bitrate: 128 kbps, samplerate: 48000 Hz
[06:12:53] dvd: Region mask 0xff
[06:12:53] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[06:12:53] sync: expecting 126638 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3.1 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-7000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[06:12:53] sync: first pts audio 0xc0 is 0
[06:12:53] sync: first pts video is 7200
[06:12:53] sync: "Chapter 1" (1) at frame 1 time 7200
Encoding: task 1 of 1, 14.00 % (28.35 fps, avg 29.17 fps, ETA 01h02m13s)[06:23:01] sync: "Chapter 2" (2) at frame 17738 time 63860400
Encoding: task 1 of 1, 25.55 % (28.30 fps, avg 29.10 fps, ETA 00h54m00s)[06:31:25] sync: "Chapter 3" (3) at frame 32358 time 116492400
Encoding: task 1 of 1, 41.80 % (26.74 fps, avg 29.19 fps, ETA 00h42m05s)[06:43:07] sync: "Chapter 4" (4) at frame 52952 time 190630800
Encoding: task 1 of 1, 79.48 % (28.02 fps, avg 29.41 fps, ETA 00h14m45s)[07:09:56] sync: "Chapter 5" (5) at frame 100658 time 362372400
Encoding: task 1 of 1, 89.23 % (25.57 fps, avg 29.39 fps, ETA 00h07m45s)[07:16:57] sync: "Chapter 6" (6) at frame 113008 time 406832400
Encoding: task 1 of 1, 99.96 % (38.37 fps, avg 29.44 fps, ETA 00h00m03s)[07:24:33] reader: done. 1 scr changes
Encoding: task 1 of 1, 99.97 % (39.01 fps, avg 29.44 fps, ETA 00h00m01s)[07:24:35] work: average encoding speed for job is 29.441925 fps
[07:24:35] vfr: lost time: 0 (0 frames)
[07:24:35] vfr: gained time: 0 (0 frames) (0 not accounted for)
[07:24:35] mp2-decoder done: 211064 frames, 0 decoder errors
[07:24:35] mpeg2video-decoder done: 126638 frames, 0 decoder errors
[07:24:35] sync: got 126636 frames, 126638 expected
[07:24:35] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7fbbd80ae900] Qavg: 178.135
x265 [info]: frame I:    857, Avg QP:10.55  kb/s: 19733.63
x265 [info]: frame P:  28231, Avg QP:9.40  kb/s: 14324.89
x265 [info]: frame B:  97548, Avg QP:13.83  kb/s: 4760.44
x265 [info]: Weighted P-Frames: Y:11.3% UV:7.4%
x265 [info]: consecutive B-frames: 2.7% 1.8% 7.5% 33.4% 54.6%

encoded 126636 frames in 4302.59s (29.43 fps), 6993.97 kb/s, Avg QP:12.82
[07:24:35] mux: track 0, 126636 frames, 4428951435 bytes, 6994.61 kbps, fifo 512
[07:24:35] mux: track 1, 237448 frames, 81318886 bytes, 128.43 kbps, fifo 2048
[07:24:35] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks 4_dollars_vengeance/1-4_dollars_vengeance.mkv ».
mv: impossible d'évaluer '4_dollars_vengeance/1-4_dollars_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[07:24:38] hb_init: starting libhb thread
[07:24:38] thread 7f2b3fa0d700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[07:24:38] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[07:24:38]  - Intel microarchitecture Haswell
[07:24:38]  - logical processor count: 8
[07:24:38] hb_scan: path=/dev/sr0, title_index=2
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[07:24:38] bd: not a bd - trying as a stream/file instead
[07:24:38] dvd: Region mask 0xff
[07:24:38] dvd: Warning, DVD device has no region set
[07:24:38] scan: DVD has 4 title(s)
[07:24:38] scan: scanning title 2
[07:24:38] scan: opening IFO for VTS 2
[07:24:38] pgc_id: 1, pgn: 1: pgc: 0x7f2b300133f0
[07:24:38] scan: vts=2, ttn=1, cells=0->0, blocks=0->30440, 30441 blocks
[07:24:38] scan: duration is 00:01:33 (93800 ms)
[07:24:38] scan: checking audio 1
[07:24:38] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[07:24:38] scan: title 2 has 1 chapters
[07:24:38] scan: chap 1 c=0->0, b=0->30440 (30441), 93800 ms
[07:24:38] scan: aspect = 4:3
[07:24:38] scan: decoding previews for title 2

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:24:38] scan: title angle(s) 1
[mp2 @ 0x7f2b30012700] Header missing
[07:24:38] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[07:24:39] scan: 10 previews, 720x576, 25.000 fps, autocrop = 110/106/8/26, aspect 4:3, PAR 16:15
[07:24:39] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 2:
  + vts 2, ttn 1, cells 0->0 (30441 blocks)
  + duration: 00:01:33
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 110/106/8/26
  + chapters:
    + 1: cells 0->0, 30441 blocks, duration 00:01:34
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[07:24:39] 1 job(s) to process
[07:24:39] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "4_dollars_vengeance/2-4_dollars_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 2
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[07:24:39] starting job
[07:24:39] MTFrame thread started for segment 0
[07:24:39] MTFrame thread started for segment 2
[07:24:39] MTFrame thread started for segment 1
[07:24:39] MTFrame thread started for segment 3
[07:24:39] MTFrame thread started for segment 5
[07:24:39] MTFrame thread started for segment 4
[07:24:39] MTFrame thread started for segment 7
[07:24:39] MTFrame thread started for segment 6
[07:24:39] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[07:24:39] Auto Passthru: fallback is AAC (avcodec)
[07:24:39] Auto Passthru: passthru not possible for track 1, using fallback
[07:24:39] job configuration:
[07:24:39]  * source
[07:24:39]    + /dev/sr0
[07:24:39]    + title 2, chapter(s) 1 to 1
[07:24:39]  * destination
[07:24:39]    + 4_dollars_vengeance/2-4_dollars_vengeance.mkv
[07:24:39]    + container: Matroska (libavformat)
[07:24:39]  * video track
[07:24:39]    + decoder: mpeg2video
[07:24:39]      + bitrate 200 kbps
[07:24:39]    + filters
[07:24:39]      + Framerate Shaper (mode=0)
[07:24:39]        + frame rate: same as source (around 25.000 fps)
[07:24:39]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[07:24:39]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[07:24:39]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[07:24:39]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[07:24:39]    + Output geometry
[07:24:39]      + storage dimensions: 720 x 576
[07:24:39]      + pixel aspect ratio: 16 : 15
[07:24:39]      + display dimensions: 768 x 576
[07:24:39]    + encoder: H.265 (libx265)
[07:24:39]      + bitrate: 5000 kbps, pass: 0
[07:24:39]      + color profile: 5-1-6
[07:24:39]  * audio track 1
[07:24:39]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[07:24:39]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:24:39]    + mixdown: Stereo
[07:24:39]    + dither: triangular
[07:24:39]    + encoder: AAC (libavcodec)
[07:24:39]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:24:39] dvd: Region mask 0xff
[07:24:39] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:24:39] sync: expecting 2345 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[07:24:39] sync: first pts video is 0
[07:24:39] sync: "Chapter 1" (1) at frame 1 time 0
[07:24:39] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 96.89 % (28.74 fps, avg 31.77 fps, ETA 00h00m03s)[07:25:51] dvd: Skipping multi-angle cells 1-22
Encoding: task 1 of 1, 97.91 % (30.79 fps, avg 31.82 fps, ETA 00h00m01s)[07:25:51] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.76 % (30.79 fps, avg 31.82 fps, ETA 00h00m01s)[07:25:53] work: average encoding speed for job is 31.823626 fps
[07:25:53] vfr: lost time: 0 (0 frames)
[07:25:53] vfr: gained time: 0 (0 frames) (0 not accounted for)
[07:25:53] mp2-decoder done: 3909 frames, 0 decoder errors
[07:25:53] mpeg2video-decoder done: 2345 frames, 0 decoder errors
[07:25:53] sync: got 2345 frames, 2345 expected
[07:25:53] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7f2b300970c0] Qavg: 2845.857
x265 [info]: frame I:     40, Avg QP:7.98  kb/s: 13923.98
x265 [info]: frame P:    578, Avg QP:9.26  kb/s: 9584.18
x265 [info]: frame B:   1727, Avg QP:13.79  kb/s: 3093.33
x265 [info]: Weighted P-Frames: Y:10.7% UV:6.9%
x265 [info]: consecutive B-frames: 10.0% 5.2% 15.5% 33.8% 35.4%

encoded 2345 frames in 74.06s (31.66 fps), 4877.95 kb/s, Avg QP:12.57
[07:25:53] mux: track 0, 2345 frames, 57203355 bytes, 4876.67 kbps, fifo 512
[07:25:53] mux: track 1, 4398 frames, 1448765 bytes, 123.51 kbps, fifo 1024
[07:25:53] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks 4_dollars_vengeance/2-4_dollars_vengeance.mkv ».
mv: impossible d'évaluer '4_dollars_vengeance/2-4_dollars_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[07:25:55] hb_init: starting libhb thread
[07:25:55] thread 7fb6dca0d700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[07:25:55] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[07:25:55]  - Intel microarchitecture Haswell
[07:25:55]  - logical processor count: 8
[07:25:55] hb_scan: path=/dev/sr0, title_index=3
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[07:25:55] bd: not a bd - trying as a stream/file instead
[07:25:55] dvd: Region mask 0xff
[07:25:55] dvd: Warning, DVD device has no region set
[07:25:55] scan: DVD has 4 title(s)
[07:25:55] scan: scanning title 3
[07:25:55] scan: opening IFO for VTS 3
[07:25:55] pgc_id: 1, pgn: 1: pgc: 0x7fb6d00133f0
[07:25:55] scan: vts=3, ttn=1, cells=0->0, blocks=0->34615, 34616 blocks
[07:25:55] scan: duration is 00:01:56 (116680 ms)
[07:25:55] scan: checking audio 1
[07:25:55] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[07:25:55] scan: title 3 has 1 chapters
[07:25:55] scan: chap 1 c=0->0, b=0->34615 (34616), 116680 ms
[07:25:55] scan: aspect = 4:3
[07:25:55] scan: decoding previews for title 3

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:25:55] scan: title angle(s) 1
[mp2 @ 0x7fb6d0012840] Header missing
[07:25:55] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 7, 70.00 %[07:25:56] scan: 10 previews, 720x576, 25.000 fps, autocrop = 128/116/12/16, aspect 4:3, PAR 16:15
Scanning title 1 of 1, preview 10, 100.00 %[07:25:56] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 3:
  + vts 3, ttn 1, cells 0->0 (34616 blocks)
  + duration: 00:01:56
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 128/116/12/16
  + chapters:
    + 1: cells 0->0, 34616 blocks, duration 00:01:57
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[07:25:56] 1 job(s) to process
[07:25:56] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "4_dollars_vengeance/3-4_dollars_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 3
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[07:25:56] starting job
[07:25:56] MTFrame thread started for segment 0
[07:25:56] MTFrame thread started for segment 2
[07:25:56] MTFrame thread started for segment 4
[07:25:56] MTFrame thread started for segment 3
[07:25:56] MTFrame thread started for segment 1
[07:25:56] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[07:25:56] MTFrame thread started for segment 5
[07:25:56] MTFrame thread started for segment 6
[07:25:56] MTFrame thread started for segment 7
[07:25:56] Auto Passthru: fallback is AAC (avcodec)
[07:25:56] Auto Passthru: passthru not possible for track 1, using fallback
[07:25:56] job configuration:
[07:25:56]  * source
[07:25:56]    + /dev/sr0
[07:25:56]    + title 3, chapter(s) 1 to 1
[07:25:56]  * destination
[07:25:56]    + 4_dollars_vengeance/3-4_dollars_vengeance.mkv
[07:25:56]    + container: Matroska (libavformat)
[07:25:56]  * video track
[07:25:56]    + decoder: mpeg2video
[07:25:56]      + bitrate 200 kbps
[07:25:56]    + filters
[07:25:56]      + Framerate Shaper (mode=0)
[07:25:56]        + frame rate: same as source (around 25.000 fps)
[07:25:56]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[07:25:56]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[07:25:56]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[07:25:56]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[07:25:56]    + Output geometry
[07:25:56]      + storage dimensions: 720 x 576
[07:25:56]      + pixel aspect ratio: 16 : 15
[07:25:56]      + display dimensions: 768 x 576
[07:25:56]    + encoder: H.265 (libx265)
[07:25:56]      + bitrate: 5000 kbps, pass: 0
[07:25:56]      + color profile: 5-1-6
[07:25:56]  * audio track 1
[07:25:56]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[07:25:56]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:25:56]    + mixdown: Stereo
[07:25:56]    + dither: triangular
[07:25:56]    + encoder: AAC (libavcodec)
[07:25:56]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:25:56] dvd: Region mask 0xff
[07:25:56] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:25:56] sync: expecting 2917 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[07:25:56] sync: first pts video is 0
[07:25:56] sync: "Chapter 1" (1) at frame 1 time 0
[07:25:56] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 95.41 % (42.33 fps, avg 33.33 fps, ETA 00h00m07s)[07:27:18] dvd: Skipping multi-angle cells 1-60
Encoding: task 1 of 1, 97.53 % (64.22 fps, avg 34.47 fps, ETA 00h00m03s)[07:27:18] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.77 % (64.22 fps, avg 34.47 fps, ETA 00h00m03s)[07:27:19] work: average encoding speed for job is 34.468811 fps
[07:27:19] vfr: lost time: 0 (0 frames)
[07:27:19] vfr: gained time: 0 (0 frames) (0 not accounted for)
[07:27:19] mp2-decoder done: 4862 frames, 0 decoder errors
[07:27:19] mpeg2video-decoder done: 2917 frames, 0 decoder errors
[07:27:19] sync: got 2917 frames, 2917 expected
[07:27:19] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7fb6d0097100] Qavg: 443.948
x265 [info]: frame I:     49, Avg QP:8.13  kb/s: 11522.40
x265 [info]: frame P:    735, Avg QP:8.67  kb/s: 8022.55
x265 [info]: frame B:   2133, Avg QP:12.63  kb/s: 3001.03
x265 [info]: Weighted P-Frames: Y:16.9% UV:8.7%
x265 [info]: consecutive B-frames: 13.4% 6.1% 12.4% 31.2% 36.9%

encoded 2917 frames in 82.72s (35.26 fps), 4409.45 kb/s, Avg QP:11.56
[07:27:19] mux: track 0, 2917 frames, 64323512 bytes, 4408.74 kbps, fifo 1024
[07:27:19] mux: track 1, 5470 frames, 1870684 bytes, 128.22 kbps, fifo 2048
[07:27:19] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks 4_dollars_vengeance/3-4_dollars_vengeance.mkv ».
mv: impossible d'évaluer '4_dollars_vengeance/3-4_dollars_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[07:27:21] hb_init: starting libhb thread
[07:27:21] thread 7fdb4cd8e700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[07:27:21] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[07:27:21]  - Intel microarchitecture Haswell
[07:27:21]  - logical processor count: 8
[07:27:21] hb_scan: path=/dev/sr0, title_index=4
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[07:27:21] bd: not a bd - trying as a stream/file instead
[07:27:21] dvd: Region mask 0xff
[07:27:21] dvd: Warning, DVD device has no region set
[07:27:21] scan: DVD has 4 title(s)
[07:27:21] scan: scanning title 4
[07:27:21] scan: opening IFO for VTS 4
[07:27:21] pgc_id: 1, pgn: 1: pgc: 0x7fdb400133f0
[07:27:21] scan: vts=4, ttn=1, cells=0->0, blocks=0->38014, 38015 blocks
[07:27:21] scan: duration is 00:01:57 (117400 ms)
[07:27:21] scan: checking audio 1
[07:27:21] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[07:27:21] scan: title 4 has 1 chapters
[07:27:21] scan: chap 1 c=0->0, b=0->38014 (38015), 117400 ms
[07:27:21] scan: aspect = 4:3
[07:27:21] scan: decoding previews for title 4

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:27:21] scan: title angle(s) 1
[mp2 @ 0x7fdb40012800] Header missing
[07:27:21] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[07:27:22] scan: 10 previews, 720x576, 25.000 fps, autocrop = 90/58/14/16, aspect 4:3, PAR 16:15
[07:27:22] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 4:
  + vts 4, ttn 1, cells 0->0 (38015 blocks)
  + duration: 00:01:57
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 90/58/14/16
  + chapters:
    + 1: cells 0->0, 38015 blocks, duration 00:01:57
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[07:27:22] 1 job(s) to process
[07:27:22] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "4_dollars_vengeance/4-4_dollars_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 4
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[07:27:22] starting job
[07:27:22] MTFrame thread started for segment 0
[07:27:22] MTFrame thread started for segment 1
[07:27:22] MTFrame thread started for segment 2
[07:27:22] MTFrame thread started for segment 3
[07:27:22] MTFrame thread started for segment 4
[07:27:22] MTFrame thread started for segment 7
[07:27:22] MTFrame thread started for segment 6
[07:27:22] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[07:27:22] Auto Passthru: fallback is AAC (avcodec)
[07:27:22] Auto Passthru: passthru not possible for track 1, using fallback
[07:27:22] MTFrame thread started for segment 5
[07:27:22] job configuration:
[07:27:22]  * source
[07:27:22]    + /dev/sr0
[07:27:22]    + title 4, chapter(s) 1 to 1
[07:27:22]  * destination
[07:27:22]    + 4_dollars_vengeance/4-4_dollars_vengeance.mkv
[07:27:22]    + container: Matroska (libavformat)
[07:27:22]  * video track
[07:27:22]    + decoder: mpeg2video
[07:27:22]      + bitrate 200 kbps
[07:27:22]    + filters
[07:27:22]      + Framerate Shaper (mode=0)
[07:27:22]        + frame rate: same as source (around 25.000 fps)
[07:27:22]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[07:27:22]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[07:27:22]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[07:27:22]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[07:27:22]    + Output geometry
[07:27:22]      + storage dimensions: 720 x 576
[07:27:22]      + pixel aspect ratio: 16 : 15
[07:27:22]      + display dimensions: 768 x 576
[07:27:22]    + encoder: H.265 (libx265)
[07:27:22]      + bitrate: 5000 kbps, pass: 0
[07:27:22]      + color profile: 5-1-6
[07:27:22]  * audio track 1
[07:27:22]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[07:27:22]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:27:22]    + mixdown: Stereo
[07:27:22]    + dither: triangular
[07:27:22]    + encoder: AAC (libavcodec)
[07:27:22]      + bitrate: 128 kbps, samplerate: 48000 Hz
[07:27:22] dvd: Region mask 0xff
[07:27:22] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[07:27:22] sync: expecting 2935 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[07:27:22] sync: first pts video is 0
[07:27:22] sync: "Chapter 1" (1) at frame 1 time 0
[07:27:22] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 97.55 % (38.66 fps, avg 32.05 fps, ETA 00h00m02s)[07:28:52] dvd: Skipping multi-angle cells 1-22
Encoding: task 1 of 1, 98.43 % (32.43 fps, avg 32.03 fps, ETA 00h00m01s)[07:28:53] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.74 % (32.43 fps, avg 32.03 fps, ETA 00h00m01s)[07:28:55] work: average encoding speed for job is 32.031048 fps
[07:28:55] vfr: lost time: 0 (0 frames)
[07:28:55] vfr: gained time: 0 (0 frames) (0 not accounted for)
Encoding: task 1 of 1, 98.74 % (32.43 fps, avg 32.03 fps, ETA 00h00m01s)[07:28:56] mp2-decoder done: 4892 frames, 0 decoder errors
[07:28:56] mpeg2video-decoder done: 2935 frames, 0 decoder errors
[07:28:56] sync: got 2935 frames, 2935 expected
[07:28:56] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7fdb40097240] Qavg: 188.736
x265 [info]: frame I:     48, Avg QP:9.25  kb/s: 11847.43
x265 [info]: frame P:    718, Avg QP:10.90  kb/s: 8725.65
x265 [info]: frame B:   2169, Avg QP:15.12  kb/s: 3503.17
x265 [info]: Weighted P-Frames: Y:20.5% UV:12.5%
x265 [info]: consecutive B-frames: 9.8% 6.4% 11.6% 35.2% 36.9%

encoded 2935 frames in 93.11s (31.52 fps), 4917.23 kb/s, Avg QP:13.99
[07:28:56] mux: track 0, 2935 frames, 72172098 bytes, 4916.36 kbps, fifo 1024
[07:28:56] mux: track 1, 5504 frames, 1884418 bytes, 128.37 kbps, fifo 2048
[07:28:56] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks 4_dollars_vengeance/4-4_dollars_vengeance.mkv ».
mv: impossible d'évaluer '4_dollars_vengeance/4-4_dollars_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
 


Ce DVD est en coffret avec le précédent : Pistolet pour un massacre et donc de même facture. wink
Si cela peut aider...
Je vais tester sur d'autre dvd... smile

Dernière modification par smolski (20-01-2020 08:01:50)


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#180 20-01-2020 08:03:55

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Erreur : Identifiant de piste ou code langue incorrect dans « --atracks 4_dollars_vengeance/1-4_dollars_vengeance.mkv ».



C'est ici que ça merde pour toi :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks $VALID_AUDIO "$TITLE/$i-$TITLE.mkv"



Il ne peut pas travailler sur "1-4_dollars_vengeance-[vérifié].mkv" car il n'a pas été crée. hmm

Il faudrait commenter cette ligne et voir ce qui est noté dans choix.txt dedans :

# rm -f "$TITLE/$i-choix.txt"

Dernière modification par Anonyme (20-01-2020 12:06:22)

#181 20-01-2020 08:11:47

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Je ne comprends pas ce que tu demandes ici :

Anonyme a écrit :

# rm -f "$TITLE/$i-choix.txt"


Je commente la ligne et je lance la commande root/commentée indiquée ?

Dernière modification par smolski (20-01-2020 08:16:04)


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#182 20-01-2020 08:19:18

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

J'ai un autre dvd en cours... résultat dans 1h30 smile

Non, j'arrête le processus, je vais tester ta demande, reste à m'indiquer plus clairement ce que tu veux que je fasse dans le script. smile

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#183 20-01-2020 08:31:40

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

OK J'ai commenté la ligne et j'envois le script sur le même dvd.

1h10 qu'y dit... wink

Dernière modification par smolski (20-01-2020 08:35:08)


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#184 20-01-2020 09:57:38

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Raté, le fichier film.mkv a été effacé alors qu'il se constituait correctement tout du long !

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#185 20-01-2020 10:02:26

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Je reste en attente pour de nouveaux tests. wink

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#186 20-01-2020 11:22:56

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Voici le déroulement :

handbrake_dvd7



Proceed...
DVD-Vidéo : 4_DOLLARS_DE_VENGEANCE
Ce nom convient-il ? [Y/n] n
No
Entrer un nouveau nom: pistolet_vengeance
[08:32:15] hb_init: starting libhb thread
[08:32:15] thread 7f4d8f892700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[08:32:15] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[08:32:15]  - Intel microarchitecture Haswell
[08:32:15]  - logical processor count: 8
[08:32:15] hb_scan: path=/dev/sr0, title_index=1
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[08:32:15] bd: not a bd - trying as a stream/file instead
[08:32:15] dvd: Region mask 0xff
[08:32:15] dvd: Warning, DVD device has no region set
[08:32:15] scan: DVD has 4 title(s)
[08:32:15] scan: scanning title 1
[08:32:15] scan: opening IFO for VTS 1
[08:32:15] pgc_id: 1, pgn: 1: pgc: 0x7f4d8001ec50
[08:32:15] scan: vts=1, ttn=1, cells=0->5, blocks=0->1798140, 1798141 blocks
[08:32:15] scan: duration is 01:24:25 (5065520 ms)
[08:32:15] scan: checking audio 1
[08:32:15] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[08:32:15] scan: title 1 has 6 chapters
[08:32:15] scan: chap 1 c=0->0, b=0->251859 (251860), 709480 ms
[08:32:15] scan: chap 2 c=1->1, b=251860->459498 (207639), 584800 ms
[08:32:15] scan: chap 3 c=2->2, b=459499->751914 (292416), 823760 ms
[08:32:15] scan: chap 4 c=3->3, b=751915->1429162 (677248), 1908240 ms
[08:32:15] scan: chap 5 c=4->4, b=1429163->1604590 (175428), 494000 ms
[08:32:15] scan: chap 6 c=5->5, b=1604591->1798140 (193550), 545240 ms
[08:32:15] scan: aspect = 4:3
[08:32:15] scan: decoding previews for title 1

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[08:32:15] scan: title angle(s) 1
[mp2 @ 0x7f4d80023880] Header missing
[08:32:16] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 9, 90.00 %[08:32:17] scan: 10 previews, 720x576, 25.000 fps, autocrop = 130/116/6/16, aspect 4:3, PAR 16:15
Scanning title 1 of 1, preview 10, 100.00 %[08:32:17] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 1:
  + vts 1, ttn 1, cells 0->5 (1798141 blocks)
  + duration: 01:24:25
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 130/116/6/16
  + chapters:
    + 1: cells 0->0, 251860 blocks, duration 00:11:49
    + 2: cells 1->1, 207639 blocks, duration 00:09:45
    + 3: cells 2->2, 292416 blocks, duration 00:13:44
    + 4: cells 3->3, 677248 blocks, duration 00:31:48
    + 5: cells 4->4, 175428 blocks, duration 00:08:14
    + 6: cells 5->5, 193550 blocks, duration 00:09:05
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[08:32:18] 1 job(s) to process
[08:32:18] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            },
            {
                "Name": "Chapter 2"
            },
            {
                "Name": "Chapter 3"
            },
            {
                "Name": "Chapter 4"
            },
            {
                "Name": "Chapter 5"
            },
            {
                "Name": "Chapter 6"
            }
        ],
        "ChapterMarkers": true,
        "File": "pistolet_vengeance/1-pistolet_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 6,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 1
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 7000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[08:32:18] starting job
[08:32:18] MTFrame thread started for segment 0
[08:32:18] MTFrame thread started for segment 1
[08:32:18] MTFrame thread started for segment 2
[08:32:18] MTFrame thread started for segment 3
[08:32:18] MTFrame thread started for segment 4
[08:32:18] MTFrame thread started for segment 5
[08:32:18] MTFrame thread started for segment 6
[08:32:18] MTFrame thread started for segment 7
[08:32:18] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[08:32:18] Auto Passthru: fallback is AAC (avcodec)
[08:32:18] Auto Passthru: passthru not possible for track 1, using fallback
[08:32:18] job configuration:
[08:32:18]  * source
[08:32:18]    + /dev/sr0
[08:32:18]    + title 1, chapter(s) 1 to 6
[08:32:18]  * destination
[08:32:18]    + pistolet_vengeance/1-pistolet_vengeance.mkv
[08:32:18]    + container: Matroska (libavformat)
[08:32:18]      + chapter markers
[08:32:18]  * video track
[08:32:18]    + decoder: mpeg2video
[08:32:18]      + bitrate 200 kbps
[08:32:18]    + filters
[08:32:18]      + Framerate Shaper (mode=0)
[08:32:18]        + frame rate: same as source (around 25.000 fps)
[08:32:18]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[08:32:18]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[08:32:18]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[08:32:18]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[08:32:18]    + Output geometry
[08:32:18]      + storage dimensions: 720 x 576
[08:32:18]      + pixel aspect ratio: 16 : 15
[08:32:18]      + display dimensions: 768 x 576
[08:32:18]    + encoder: H.265 (libx265)
[08:32:18]      + bitrate: 7000 kbps, pass: 0
[08:32:18]      + color profile: 5-1-6
[08:32:18]  * audio track 1
[08:32:18]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[08:32:18]      + bitrate: 128 kbps, samplerate: 48000 Hz
[08:32:18]    + mixdown: Stereo
[08:32:18]    + dither: triangular
[08:32:18]    + encoder: AAC (libavcodec)
[08:32:18]      + bitrate: 128 kbps, samplerate: 48000 Hz
[08:32:18] dvd: Region mask 0xff
[08:32:18] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[08:32:18] sync: expecting 126638 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3.1 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-7000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[08:32:18] sync: first pts audio 0xc0 is 0
[08:32:18] sync: first pts video is 7200
[08:32:18] sync: "Chapter 1" (1) at frame 1 time 7200
Encoding: task 1 of 1, 14.00 % (27.45 fps, avg 29.05 fps, ETA 01h02m29s)[08:42:28] sync: "Chapter 2" (2) at frame 17738 time 63860400
Encoding: task 1 of 1, 25.55 % (26.56 fps, avg 28.91 fps, ETA 00h54m22s)[08:50:57] sync: "Chapter 3" (3) at frame 32358 time 116492400
Encoding: task 1 of 1, 41.80 % (31.29 fps, avg 28.81 fps, ETA 00h42m38s)[09:02:55] sync: "Chapter 4" (4) at frame 52952 time 190630800
Encoding: task 1 of 1, 79.48 % (27.93 fps, avg 28.88 fps, ETA 00h15m00s)[09:30:23] sync: "Chapter 5" (5) at frame 100658 time 362372400
Encoding: task 1 of 1, 89.23 % (25.27 fps, avg 28.88 fps, ETA 00h07m53s)[09:37:31] sync: "Chapter 6" (6) at frame 113008 time 406832400
Encoding: task 1 of 1, 99.95 % (38.94 fps, avg 28.96 fps, ETA 00h00m02s)[09:45:08] reader: done. 1 scr changes
Encoding: task 1 of 1, 99.97 % (38.94 fps, avg 28.96 fps, ETA 00h00m02s)[09:45:11] work: average encoding speed for job is 28.962418 fps
[09:45:11] vfr: lost time: 0 (0 frames)
[09:45:11] vfr: gained time: 0 (0 frames) (0 not accounted for)
Encoding: task 1 of 1, 99.97 % (38.94 fps, avg 28.96 fps, ETA 00h00m02s)[09:45:11] mp2-decoder done: 211064 frames, 0 decoder errors
[09:45:11] mpeg2video-decoder done: 126638 frames, 0 decoder errors
[09:45:11] sync: got 126636 frames, 126638 expected
[09:45:11] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7f4d800ae9c0] Qavg: 178.135
x265 [info]: frame I:    857, Avg QP:10.55  kb/s: 19733.63
x265 [info]: frame P:  28231, Avg QP:9.40  kb/s: 14324.89
x265 [info]: frame B:  97548, Avg QP:13.83  kb/s: 4760.44
x265 [info]: Weighted P-Frames: Y:11.3% UV:7.4%
x265 [info]: consecutive B-frames: 2.7% 1.8% 7.5% 33.4% 54.6%

encoded 126636 frames in 4373.67s (28.95 fps), 6993.97 kb/s, Avg QP:12.82
[09:45:11] mux: track 0, 126636 frames, 4428951435 bytes, 6994.61 kbps, fifo 512
[09:45:11] mux: track 1, 237448 frames, 81318886 bytes, 128.43 kbps, fifo 2048
[09:45:11] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks pistolet_vengeance/1-pistolet_vengeance.mkv ».
mv: impossible d'évaluer 'pistolet_vengeance/1-pistolet_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[09:45:14] hb_init: starting libhb thread
[09:45:14] thread 7f2ed4ae1700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[09:45:14] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[09:45:14]  - Intel microarchitecture Haswell
[09:45:14]  - logical processor count: 8
[09:45:14] hb_scan: path=/dev/sr0, title_index=2
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[09:45:14] bd: not a bd - trying as a stream/file instead
[09:45:14] dvd: Region mask 0xff
[09:45:14] dvd: Warning, DVD device has no region set
[09:45:14] scan: DVD has 4 title(s)
[09:45:14] scan: scanning title 2
[09:45:14] scan: opening IFO for VTS 2
[09:45:14] pgc_id: 1, pgn: 1: pgc: 0x7f2ec80133f0
[09:45:14] scan: vts=2, ttn=1, cells=0->0, blocks=0->30440, 30441 blocks
[09:45:14] scan: duration is 00:01:33 (93800 ms)
[09:45:14] scan: checking audio 1
[09:45:14] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[09:45:14] scan: title 2 has 1 chapters
[09:45:14] scan: chap 1 c=0->0, b=0->30440 (30441), 93800 ms
[09:45:14] scan: aspect = 4:3
[09:45:14] scan: decoding previews for title 2

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:45:14] scan: title angle(s) 1
[mp2 @ 0x7f2ec8012700] Header missing
[09:45:14] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[09:45:15] scan: 10 previews, 720x576, 25.000 fps, autocrop = 110/106/8/26, aspect 4:3, PAR 16:15
[09:45:15] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 2:
  + vts 2, ttn 1, cells 0->0 (30441 blocks)
  + duration: 00:01:33
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 110/106/8/26
  + chapters:
    + 1: cells 0->0, 30441 blocks, duration 00:01:34
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[09:45:15] 1 job(s) to process
[09:45:15] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "pistolet_vengeance/2-pistolet_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 2
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[09:45:15] starting job
[09:45:15] MTFrame thread started for segment 0
[09:45:15] MTFrame thread started for segment 1
[09:45:15] MTFrame thread started for segment 2
[09:45:15] MTFrame thread started for segment 3
[09:45:15] MTFrame thread started for segment 4
[09:45:15] MTFrame thread started for segment 7
[09:45:15] MTFrame thread started for segment 6
[09:45:15] MTFrame thread started for segment 5
[09:45:15] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[09:45:15] Auto Passthru: fallback is AAC (avcodec)
[09:45:15] Auto Passthru: passthru not possible for track 1, using fallback
[09:45:15] job configuration:
[09:45:15]  * source
[09:45:15]    + /dev/sr0
[09:45:15]    + title 2, chapter(s) 1 to 1
[09:45:15]  * destination
[09:45:15]    + pistolet_vengeance/2-pistolet_vengeance.mkv
[09:45:15]    + container: Matroska (libavformat)
[09:45:15]  * video track
[09:45:15]    + decoder: mpeg2video
[09:45:15]      + bitrate 200 kbps
[09:45:15]    + filters
[09:45:15]      + Framerate Shaper (mode=0)
[09:45:15]        + frame rate: same as source (around 25.000 fps)
[09:45:15]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[09:45:15]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[09:45:15]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[09:45:15]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[09:45:15]    + Output geometry
[09:45:15]      + storage dimensions: 720 x 576
[09:45:15]      + pixel aspect ratio: 16 : 15
[09:45:15]      + display dimensions: 768 x 576
[09:45:15]    + encoder: H.265 (libx265)
[09:45:15]      + bitrate: 5000 kbps, pass: 0
[09:45:15]      + color profile: 5-1-6
[09:45:15]  * audio track 1
[09:45:15]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[09:45:15]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:45:15]    + mixdown: Stereo
[09:45:15]    + dither: triangular
[09:45:15]    + encoder: AAC (libavcodec)
[09:45:15]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:45:15] dvd: Region mask 0xff
[09:45:15] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:45:15] sync: expecting 2345 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[09:45:15] sync: first pts video is 0
[09:45:15] sync: "Chapter 1" (1) at frame 1 time 0
[09:45:15] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 96.84 % (27.58 fps, avg 31.93 fps, ETA 00h00m02s)[09:46:26] dvd: Skipping multi-angle cells 1-60
Encoding: task 1 of 1, 97.95 % (27.58 fps, avg 31.93 fps, ETA 00h00m02s)[09:46:27] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.55 % (33.73 fps, avg 32.09 fps, ETA 00h00m01s)[09:46:29] work: average encoding speed for job is 32.094570 fps
Encoding: task 1 of 1, 98.55 % (33.73 fps, avg 32.09 fps, ETA 00h00m01s)[09:46:29] vfr: lost time: 0 (0 frames)
[09:46:29] vfr: gained time: 0 (0 frames) (0 not accounted for)
[09:46:29] mp2-decoder done: 3909 frames, 0 decoder errors
[09:46:29] mpeg2video-decoder done: 2345 frames, 0 decoder errors
[09:46:29] sync: got 2345 frames, 2345 expected
[09:46:29] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7f2ec8097240] Qavg: 2845.857
x265 [info]: frame I:     40, Avg QP:7.98  kb/s: 13923.98
x265 [info]: frame P:    578, Avg QP:9.26  kb/s: 9584.18
x265 [info]: frame B:   1727, Avg QP:13.79  kb/s: 3093.33
x265 [info]: Weighted P-Frames: Y:10.7% UV:6.9%
x265 [info]: consecutive B-frames: 10.0% 5.2% 15.5% 33.8% 35.4%

encoded 2345 frames in 73.67s (31.83 fps), 4877.95 kb/s, Avg QP:12.57
[09:46:29] mux: track 0, 2345 frames, 57203355 bytes, 4876.67 kbps, fifo 512
[09:46:29] mux: track 1, 4398 frames, 1448765 bytes, 123.51 kbps, fifo 1024
[09:46:29] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks pistolet_vengeance/2-pistolet_vengeance.mkv ».
mv: impossible d'évaluer 'pistolet_vengeance/2-pistolet_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[09:46:31] hb_init: starting libhb thread
[09:46:31] thread 7f00becb5700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[09:46:31] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[09:46:31]  - Intel microarchitecture Haswell
[09:46:31]  - logical processor count: 8
[09:46:31] hb_scan: path=/dev/sr0, title_index=3
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[09:46:31] bd: not a bd - trying as a stream/file instead
[09:46:31] dvd: Region mask 0xff
[09:46:31] dvd: Warning, DVD device has no region set
[09:46:31] scan: DVD has 4 title(s)
[09:46:31] scan: scanning title 3
[09:46:31] scan: opening IFO for VTS 3
[09:46:31] pgc_id: 1, pgn: 1: pgc: 0x7f00b00133f0
[09:46:31] scan: vts=3, ttn=1, cells=0->0, blocks=0->34615, 34616 blocks
[09:46:31] scan: duration is 00:01:56 (116680 ms)
[09:46:31] scan: checking audio 1
[09:46:31] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[09:46:31] scan: title 3 has 1 chapters
[09:46:31] scan: chap 1 c=0->0, b=0->34615 (34616), 116680 ms
[09:46:31] scan: aspect = 4:3
[09:46:31] scan: decoding previews for title 3

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:46:31] scan: title angle(s) 1
[mp2 @ 0x7f00b0012840] Header missing
[09:46:31] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[09:46:32] scan: 10 previews, 720x576, 25.000 fps, autocrop = 128/116/12/16, aspect 4:3, PAR 16:15
[09:46:32] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 3:
  + vts 3, ttn 1, cells 0->0 (34616 blocks)
  + duration: 00:01:56
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 128/116/12/16
  + chapters:
    + 1: cells 0->0, 34616 blocks, duration 00:01:57
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[09:46:32] 1 job(s) to process
[09:46:32] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "pistolet_vengeance/3-pistolet_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 3
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[09:46:32] starting job
[09:46:32] MTFrame thread started for segment 0
[09:46:32] MTFrame thread started for segment 1
[09:46:32] MTFrame thread started for segment 3
[09:46:32] MTFrame thread started for segment 2
[09:46:32] MTFrame thread started for segment 6
[09:46:32] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[09:46:32] MTFrame thread started for segment 5
[09:46:32] MTFrame thread started for segment 4
[09:46:32] MTFrame thread started for segment 7
[09:46:32] Auto Passthru: fallback is AAC (avcodec)
[09:46:32] Auto Passthru: passthru not possible for track 1, using fallback
[09:46:32] job configuration:
[09:46:32]  * source
[09:46:32]    + /dev/sr0
[09:46:32]    + title 3, chapter(s) 1 to 1
[09:46:32]  * destination
[09:46:32]    + pistolet_vengeance/3-pistolet_vengeance.mkv
[09:46:32]    + container: Matroska (libavformat)
[09:46:32]  * video track
[09:46:32]    + decoder: mpeg2video
[09:46:32]      + bitrate 200 kbps
[09:46:32]    + filters
[09:46:32]      + Framerate Shaper (mode=0)
[09:46:32]        + frame rate: same as source (around 25.000 fps)
[09:46:32]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[09:46:32]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[09:46:32]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[09:46:32]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[09:46:32]    + Output geometry
[09:46:32]      + storage dimensions: 720 x 576
[09:46:32]      + pixel aspect ratio: 16 : 15
[09:46:32]      + display dimensions: 768 x 576
[09:46:32]    + encoder: H.265 (libx265)
[09:46:32]      + bitrate: 5000 kbps, pass: 0
[09:46:32]      + color profile: 5-1-6
[09:46:32]  * audio track 1
[09:46:32]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[09:46:32]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:46:32]    + mixdown: Stereo
[09:46:32]    + dither: triangular
[09:46:32]    + encoder: AAC (libavcodec)
[09:46:32]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:46:32] dvd: Region mask 0xff
[09:46:32] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:46:32] sync: expecting 2917 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[09:46:32] sync: first pts video is 0
[09:46:32] sync: "Chapter 1" (1) at frame 1 time 0
[09:46:32] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 96.19 % (56.43 fps, avg 33.75 fps, ETA 00h00m05s)[09:47:54] dvd: Skipping multi-angle cells 1-60
Encoding: task 1 of 1, 98.15 % (56.43 fps, avg 33.75 fps, ETA 00h00m05s)[09:47:54] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.77 % (56.43 fps, avg 33.75 fps, ETA 00h00m05s)[09:47:55] work: average encoding speed for job is 33.751537 fps
[09:47:55] vfr: lost time: 0 (0 frames)
[09:47:55] vfr: gained time: 0 (0 frames) (0 not accounted for)
Encoding: task 1 of 1, 98.77 % (56.43 fps, avg 33.75 fps, ETA 00h00m05s)[09:47:55] mp2-decoder done: 4862 frames, 0 decoder errors
[09:47:55] mpeg2video-decoder done: 2917 frames, 0 decoder errors
[09:47:55] sync: got 2917 frames, 2917 expected
[09:47:55] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7f00b0097840] Qavg: 443.948
x265 [info]: frame I:     49, Avg QP:8.13  kb/s: 11522.40
x265 [info]: frame P:    735, Avg QP:8.67  kb/s: 8022.55
x265 [info]: frame B:   2133, Avg QP:12.63  kb/s: 3001.03
x265 [info]: Weighted P-Frames: Y:16.9% UV:8.7%
x265 [info]: consecutive B-frames: 13.4% 6.1% 12.4% 31.2% 36.9%

encoded 2917 frames in 82.88s (35.19 fps), 4409.45 kb/s, Avg QP:11.56
[09:47:55] mux: track 0, 2917 frames, 64323512 bytes, 4408.74 kbps, fifo 1024
[09:47:55] mux: track 1, 5470 frames, 1870684 bytes, 128.22 kbps, fifo 2048
[09:47:55] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks pistolet_vengeance/3-pistolet_vengeance.mkv ».
mv: impossible d'évaluer 'pistolet_vengeance/3-pistolet_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
[09:47:57] hb_init: starting libhb thread
[09:47:57] thread 7f7d50fda700 started ("libhb")
HandBrake 1.2.2 (2019022400) - Linux x86_64 - https://handbrake.fr
8 CPUs detected
Opening /dev/sr0...
[09:47:57] CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
[09:47:57]  - Intel microarchitecture Haswell
[09:47:57]  - logical processor count: 8
[09:47:57] hb_scan: path=/dev/sr0, title_index=4
disc.c:424: error opening file BDMV/index.bdmv
disc.c:424: error opening file BDMV/BACKUP/index.bdmv
[09:47:57] bd: not a bd - trying as a stream/file instead
[09:47:57] dvd: Region mask 0xff
[09:47:57] dvd: Warning, DVD device has no region set
[09:47:57] scan: DVD has 4 title(s)
[09:47:57] scan: scanning title 4
[09:47:57] scan: opening IFO for VTS 4
[09:47:57] pgc_id: 1, pgn: 1: pgc: 0x7f7d440133f0
[09:47:57] scan: vts=4, ttn=1, cells=0->0, blocks=0->38014, 38015 blocks
[09:47:57] scan: duration is 00:01:57 (117400 ms)
[09:47:57] scan: checking audio 1
[09:47:57] scan: id=0xc0, lang=Unknown (MPEG), 3cc=und ext=0
[09:47:57] scan: title 4 has 1 chapters
[09:47:57] scan: chap 1 c=0->0, b=0->38014 (38015), 117400 ms
[09:47:57] scan: aspect = 4:3
[09:47:57] scan: decoding previews for title 4

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:47:57] scan: title angle(s) 1
[mp2 @ 0x7f7d44012800] Header missing
[09:47:57] scan: audio 0xc0: mp2, rate=48000Hz, bitrate=128000 Unknown (MPEG) (2.0 ch)
Scanning title 1 of 1, preview 10, 100.00 %[09:47:58] scan: 10 previews, 720x576, 25.000 fps, autocrop = 90/58/14/16, aspect 4:3, PAR 16:15
[09:47:58] libhb: scan thread found 1 valid title(s)
+ Using preset: CLI Default
+ title 4:
  + vts 4, ttn 1, cells 0->0 (38015 blocks)
  + duration: 00:01:57
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 90/58/14/16
  + chapters:
    + 1: cells 0->0, 38015 blocks, duration 00:01:57
  + audio tracks:
    + 1, Unknown (MPEG) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[09:47:58] 1 job(s) to process
[09:47:58] json job:
{
    "Audio": {
        "AudioList": [
            {
                "Bitrate": 128,
                "CompressionLevel": -1.0,
                "DRC": 0.0,
                "DitherMethod": "auto",
                "Encoder": 1125984256,
                "Gain": 0.0,
                "Mixdown": "stereo",
                "NormalizeMixLevel": false,
                "PresetEncoder": "av_aac",
                "Quality": -3.0,
                "Samplerate": 0,
                "Track": 0
            }
        ],
        "CopyMask": [
            "copy:aac",
            "copy:ac3",
            "copy:eac3",
            "copy:dtshd",
            "copy:dts",
            "copy:mp3",
            "copy:truehd",
            "copy:flac"
        ],
        "FallbackEncoder": "av_aac"
    },
    "Destination": {
        "AlignAVStart": false,
        "ChapterList": [
            {
                "Name": "Chapter 1"
            }
        ],
        "ChapterMarkers": false,
        "File": "pistolet_vengeance/4-pistolet_vengeance.mkv",
        "InlineParameterSets": false,
        "Mp4Options": {
            "IpodAtom": false,
            "Mp4Optimize": false
        },
        "Mux": "mkv"
    },
    "Filters": {
        "FilterList": [
            {
                "ID": 6,
                "Settings": {
                    "mode": 0
                }
            },
            {
                "ID": 8,
                "Settings": {
                    "cb-spatial": "1.5",
                    "cb-temporal": "4",
                    "cr-spatial": "1.5",
                    "cr-temporal": "4",
                    "y-spatial": "1.5",
                    "y-temporal": "4"
                }
            },
            {
                "ID": 11,
                "Settings": {
                    "crop-bottom": 0,
                    "crop-left": 0,
                    "crop-right": 0,
                    "crop-top": 0,
                    "height": 576,
                    "width": 720
                }
            },
            {
                "ID": 13,
                "Settings": {
                    "cb-size": "5",
                    "cb-strength": "0.5",
                    "y-size": "5",
                    "y-strength": "0.5"
                }
            }
        ]
    },
    "Metadata": {},
    "PAR": {
        "Den": 15,
        "Num": 16
    },
    "SequenceID": 0,
    "Source": {
        "Angle": 0,
        "Path": "/dev/sr0",
        "Range": {
            "End": 1,
            "Start": 1,
            "Type": "chapter"
        },
        "Title": 4
    },
    "Subtitle": {
        "Search": {
            "Burn": true,
            "Default": false,
            "Enable": false,
            "Forced": false
        },
        "SubtitleList": []
    },
    "Video": {
        "Bitrate": 5000,
        "ColorMatrix": 6,
        "ColorPrimaries": 5,
        "ColorTransfer": 1,
        "Encoder": "nvenc_h265",
        "QSV": {
            "AsyncDepth": 4,
            "Decode": false
        },
        "Turbo": false,
        "TwoPass": false
    }
}
[09:47:58] starting job
[09:47:58] MTFrame thread started for segment 0
[09:47:58] MTFrame thread started for segment 1
[09:47:58] MTFrame thread started for segment 2
[09:47:58] MTFrame thread started for segment 3
[09:47:58] MTFrame thread started for segment 5
[09:47:58] MTFrame thread started for segment 4
[09:47:58] Auto Passthru: allowed codecs are AAC, AC3, E-AC3, TrueHD, DTS, DTS-HD, MP3, FLAC
[09:47:58] MTFrame thread started for segment 6
[09:47:58] MTFrame thread started for segment 7
[09:47:58] Auto Passthru: fallback is AAC (avcodec)
[09:47:58] Auto Passthru: passthru not possible for track 1, using fallback
[09:47:58] job configuration:
[09:47:58]  * source
[09:47:58]    + /dev/sr0
[09:47:58]    + title 4, chapter(s) 1 to 1
[09:47:58]  * destination
[09:47:58]    + pistolet_vengeance/4-pistolet_vengeance.mkv
[09:47:58]    + container: Matroska (libavformat)
[09:47:58]  * video track
[09:47:58]    + decoder: mpeg2video
[09:47:58]      + bitrate 200 kbps
[09:47:58]    + filters
[09:47:58]      + Framerate Shaper (mode=0)
[09:47:58]        + frame rate: same as source (around 25.000 fps)
[09:47:58]      + Denoise (hqdn3d) (y-spatial=1.5:cb-spatial=1.5:cr-spatial=1.5:y-temporal=4:cb-temporal=4:cr-temporal=4)
[09:47:58]      + Crop and Scale (width=720:height=576:crop-top=0:crop-bottom=0:crop-left=0:crop-right=0)
[09:47:58]        + source: 720 * 576, crop (0/0/0/0): 720 * 576, scale: 720 * 576
[09:47:58]      + Sharpen (unsharp) (y-strength=0.5:y-size=5:cb-strength=0.5:cb-size=5)
[09:47:58]    + Output geometry
[09:47:58]      + storage dimensions: 720 x 576
[09:47:58]      + pixel aspect ratio: 16 : 15
[09:47:58]      + display dimensions: 768 x 576
[09:47:58]    + encoder: H.265 (libx265)
[09:47:58]      + bitrate: 5000 kbps, pass: 0
[09:47:58]      + color profile: 5-1-6
[09:47:58]  * audio track 1
[09:47:58]    + decoder: Unknown (MPEG) (2.0 ch) (track 1, id 0xc0)
[09:47:58]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:47:58]    + mixdown: Stereo
[09:47:58]    + dither: triangular
[09:47:58]    + encoder: AAC (libavcodec)
[09:47:58]      + bitrate: 128 kbps, samplerate: 48000 Hz
[09:47:58] dvd: Region mask 0xff
[09:47:58] dvd: Warning, DVD device has no region set

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 0x00000127
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00000c47
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x001b7c69
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x001bf360
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x001c7aa6
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
[09:47:58] sync: expecting 2935 video frames
x265 [info]: HEVC encoder version 2.9
x265 [info]: build info [Linux][GCC 8.2.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 [info]: Main profile, Level-3 (Main tier)
x265 [info]: Thread pool created using 8 threads
x265 [info]: Slices                              : 1
x265 [info]: frame threads / pool features       : 3 / wpp(9 rows)
x265 [warning]: Source height < 720p; disabling lookahead-slices
x265 [info]: Coding QT: max CU size, min CU size : 64 / 8
x265 [info]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 [info]: ME / range / subpel / merge         : hex / 57 / 2 / 2
x265 [info]: Keyframe min / max / scenecut / bias: 25 / 250 / 40 / 5.00
x265 [info]: Lookahead / bframes / badapt        : 20 / 4 / 2
x265 [info]: b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 [info]: References / ref-limit  cu / depth  : 3 / on / on
x265 [info]: AQ: mode / str / qg-size / cu-tree  : 1 / 1.0 / 32 / 1
x265 [info]: Rate Control / qCompress            : ABR-5000 kbps / 0.60
x265 [info]: tools: rd=3 psy-rd=2.00 rskip signhide tmvp strong-intra-smoothing
x265 [info]: tools: deblock sao
[09:47:58] sync: first pts video is 0
[09:47:58] sync: "Chapter 1" (1) at frame 1 time 0
[09:47:58] sync: first pts audio 0xc0 is 0
Encoding: task 1 of 1, 97.48 % (39.74 fps, avg 32.00 fps, ETA 00h00m02s)[09:49:28] dvd: Skipping multi-angle cells 1-61
Encoding: task 1 of 1, 98.23 % (39.74 fps, avg 32.00 fps, ETA 00h00m02s)[09:49:29] reader: done. 1 scr changes
Encoding: task 1 of 1, 98.91 % (35.75 fps, avg 31.95 fps, ETA 00h00m01s)[09:49:31] work: average encoding speed for job is 31.947536 fps
[09:49:32] vfr: lost time: 0 (0 frames)
[09:49:32] vfr: gained time: 0 (0 frames) (0 not accounted for)
[09:49:32] mp2-decoder done: 4892 frames, 0 decoder errors
[09:49:32] mpeg2video-decoder done: 2935 frames, 0 decoder errors
[09:49:32] sync: got 2935 frames, 2935 expected
[09:49:32] sync: framerate min 25.000 fps, max 25.000 fps, avg 25.000 fps
[aac @ 0x7f7d44097200] Qavg: 188.736
x265 [info]: frame I:     48, Avg QP:9.25  kb/s: 11847.43
x265 [info]: frame P:    718, Avg QP:10.90  kb/s: 8725.65
x265 [info]: frame B:   2169, Avg QP:15.12  kb/s: 3503.17
x265 [info]: Weighted P-Frames: Y:20.5% UV:12.5%
x265 [info]: consecutive B-frames: 9.8% 6.4% 11.6% 35.2% 36.9%

encoded 2935 frames in 93.32s (31.45 fps), 4917.23 kb/s, Avg QP:13.99
[09:49:32] mux: track 0, 2935 frames, 72172098 bytes, 4916.36 kbps, fifo 1024
[09:49:32] mux: track 1, 5504 frames, 1884418 bytes, 128.37 kbps, fifo 2048
[09:49:32] libhb: work result = 0

Encode done!

HandBrake has exited.
mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit
Erreur : Identifiant de piste ou code langue incorrect dans « --atracks pistolet_vengeance/4-pistolet_vengeance.mkv ».
mv: impossible d'évaluer 'pistolet_vengeance/4-pistolet_vengeance-[vérifié].mkv': Aucun fichier ou dossier de ce type
 


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#187 20-01-2020 12:14:49

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Ce qui m'interresse, c'est ce qu'il y a dans le fichier choix.txt
J'ai bien l'impression qu'il est vide (qu'il n'y a pas de numéro de tracks)

du style :

1,2,4,5,6



ou même que

1



Attention au numéro de ligne "1" de ton éditeur, ça ne compte pas wink


Ce qui devrait faire dans le job :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks $VALID_AUDIO "$TITLE/$i-$TITLE.mkv"



mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks 1,2,4,5,6 "$TITLE/$i-$TITLE.mkv"



ou pour toi je pense :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks 1 "$TITLE/$i-$TITLE.mkv"

Dernière modification par Anonyme (20-01-2020 12:19:16)

#188 20-01-2020 12:21:36

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Une question bête, as-tu ffmpeg d'installé ?

#189 20-01-2020 12:44:59

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

apt-cache show ffmpeg


Package: ffmpeg
Version: 7:4.1.4-1~deb10u1
Installed-Size: 1951
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Architecture: amd64
Replaces: libav-tools (<< 6:12~~), qt-faststart (<< 7:2.7.1-3~)
Depends: libavcodec58 (= 7:4.1.4-1~deb10u1), libavdevice58 (= 7:4.1.4-1~deb10u1), libavfilter7 (= 7:4.1.4-1~deb10u1), libavformat58 (= 7:4.1.4-1~deb10u1), libavresample4 (= 7:4.1.4-1~deb10u1), libavutil56 (= 7:4.1.4-1~deb10u1), libc6 (>= 2.14), libpostproc55 (= 7:4.1.4-1~deb10u1), libsdl2-2.0-0 (>= 2.0.9), libswresample3 (= 7:4.1.4-1~deb10u1), libswscale5 (= 7:4.1.4-1~deb10u1)
Suggests: ffmpeg-doc
Breaks: libav-tools (<< 6:12~~), qt-faststart (<< 7:2.7.1-3~), winff (<< 1.5.5-5~)
Description-fr: outils pour transcoder, diffuser en flux continu, et lire les fichiers multimédia
 FFmpeg est le cadriciel multimédia de référence, capable de décoder,
 encoder, transcoder, multiplexer, démultiplexer, diffuser, filtrer et lire
 pratiquement tout ce que les humains et les ordinateurs ont créé. Il
 prend en charge les formats des plus anciens et obscurs jusqu'aux formats
 les plus récents.
 .
 Ce paquet fournit :
  − ffmpeg : un outil en ligne de commande pour convertir les fichiers
    multimédia d'un format à un autre ;
  − ffplay : un simple lecteur de fichiers multimédia basé sur SDL et les
    bibliothèques FFmpeg ;
  − ffprobe : un simple analyseur de flux multimédia ;
  − qt-faststar : un utilitaire pour réarranger les fichiers Quicktime.
Description-md5: 65e8a3535a2f8cd488043b49edb871b2
Multi-Arch: foreign
Homepage: https://ffmpeg.org/
Tag: implemented-in::c, interface::commandline, interface::graphical,
 interface::x11, network::server, role::program, role::shared-lib,
 scope::utility, uitoolkit::sdl, use::compressing, use::converting,
 use::playing, works-with::audio, works-with::video, x11::application
Section: video
Priority: optional
Filename: pool/main/f/ffmpeg/ffmpeg_4.1.4-1~deb10u1_amd64.deb
Size: 1425000
MD5sum: 94321fab1bcdc321e9d01afffcd03bdb
SHA256: 060c686cd6115fd3baf366de01880190ad52366a7cd083070648a97f5ab4266b


Oui, c'est pas idiot de le demander. wink


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#190 20-01-2020 12:46:11

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

J'ai essayé un autre dvd avec ce script et pareil, il a effacé le fichier.mkv

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#191 20-01-2020 12:59:19

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

apt show ça veut dire qu'il est installé ?
je ne sais plus, c'est pas policy ?

apt policy ffmpeg



car c'est ffprobe (ffmpeg) qui fournit les infos sur "$TITLE/$i-$TITLE.mkv"  pour créer le "$i-choix.txt", sans lui ... banane smile



 Ce paquet fournit :
  − ffmpeg : un outil en ligne de commande pour convertir les fichiers
    multimédia d'un format à un autre ;
  − ffplay : un simple lecteur de fichiers multimédia basé sur SDL et les
    bibliothèques FFmpeg ;
  − ffprobe : un simple analyseur de flux multimédia ;
 




ffprobe : un simple analyseur de flux multimédia






ffprobe "$TITLE/$i-$TITLE.mkv"



Je veux voir ce qu'il y a dans choix.txt dediou !!!! big_smile


smolski a écrit :

J'ai essayé un autre dvd avec ce script et pareil, il a effacé le fichier.mkv



C'est normal, c'est à cause de ton fichier choix.txt et d'un possible vide total.


Ce script fonctionne avec tout mes DVD, je ne voix pas pourquoi chez toi aucun ne passe avec celui-ci wink

Dernière modification par Anonyme (20-01-2020 13:39:40)

#192 20-01-2020 13:22:10

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

C'est facile à vérifier, au lieu de :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks $VALID_AUDIO "$TITLE/$i-$TITLE.mkv"



tu mets à la main :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks 1 "$TITLE/$i-$TITLE.mkv"



Et tu lances le bouzin cool

#193 20-01-2020 14:13:51

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

apt policy ffmpeg


ffmpeg:
  Installé : 7:4.1.4-1~deb10u1
  Candidat : 7:4.1.4-1~deb10u1
 Table de version :
 *** 7:4.1.4-1~deb10u1 500
        500 http://ftp.ch.debian.org/debian buster/main amd64 Packages
        500 http://security.debian.org buster/updates/main amd64 Packages
        100 /var/lib/dpkg/status
 


Ok je modifie le script. smile


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#194 20-01-2020 14:35:47

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

C'est modifié et parti...
À dans un petit peu plus d'une heure pour le résultat smile

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#195 20-01-2020 15:57:20

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Test terminé et copie du dvd parfaite.
Je reste à ta disposition pour d'éventuelles modifs...

Merci Anonyme smile

Dernière modification par smolski (20-01-2020 15:58:12)


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#196 20-01-2020 16:17:27

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

smolski a écrit :

Test terminé et copie du dvd parfaite.
Je reste à ta disposition pour d'éventuelles modifs...

Merci Anonyme smile




En laissant 1 dans :

mkvmerge -o "$TITLE/$i-$TITLE-[vérifié].mkv" --atracks 1 "$TITLE/$i-$TITLE.mkv"



ça marche mais c'est pas bon.


Si tu as installé ffmpeg et remis

--atracks $VALID_AUDIO



là c'est bon.


......
HandBrake has exited.
mkvmerge v42.0.0 ('Overtime') 64-bit
« LA_CHEVRE/1-LA_CHEVRE.mkv » : utilisation du démultiplexeur pour le format « Matroska ».
« LA_CHEVRE/1-LA_CHEVRE.mkv » piste 0 : utilisation du module de sortie pour le format « HEVC/H.265 ».
« LA_CHEVRE/1-LA_CHEVRE.mkv » piste 1 : utilisation du module de sortie pour le format « AC-3 ».
« LA_CHEVRE/1-LA_CHEVRE.mkv » piste 2 : utilisation du module de sortie pour le format « AC-3 ».
Le fichier « LA_CHEVRE/1-LA_CHEVRE-[vérifié].mkv » est ouvert en écriture.
Progression : 24%

 



au lieu de :

Erreur : Identifiant de piste ou code langue incorrect dans « --atracks LA_CHEVRE/1-LA_CHEVRE.mkv ».
mv: impossible d'évaluer 'LA_CHEVRE/1-LA_CHEVRE-[vérifié].mkv ': Aucun fichier ou dossier de ce type
 



Et je pense que je ne verrai pas l'intèrieur du fichier 1-choix.txt aujourd'hui !!!!!  lol

Dernière modification par Anonyme (20-01-2020 17:13:44)

#197 20-01-2020 17:38:05

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Je n 'ai pas installé ffmpeg, il était installé.

apt install ffmpeg


Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances      
Lecture des informations d'état... Fait
ffmpeg est déjà la version la plus récente (7:4.1.4-1~deb10u1).
0 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour.


Modif du script faite je relance une copie... wink


saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#198 21-01-2020 10:04:44

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Bonjour,

Allègement du script.
J'ai mis des conditions pour ne pas avoir l'utilisation de mkvmerge pour rien.
C'est tout de même beaucoup plus rapide.


En résumé :

1) RIP/ENCODE tout le titre (AUDIO VF VO + SUBFR)
handbrakecli


2) Analyse les audios valides.
mkvmerge

3) Traite un audio unique sans info.
mkvpropedit

4) Passage tout FR
mkvmerge

5) Dump LPCM
mplayer

6) Nommage du titre avec info de langue.
mediainfo

Tout avec condition.
mplayer, ffmpeg et lsdvd pour les infos.

Dernière modification par Anonyme (21-01-2020 10:25:25)

#199 21-01-2020 10:33:32

smolski
quasi...modo
Lieu : AIN
Distrib. : backports (buster) 10
Noyau : Linux 4.19.0-8-amd64
(G)UI : gnome
Inscription : 21-10-2008

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Salut Anonyme
Ah sympa, et tu as le script pour que j'y teste, ou bien tu as corrigé le dernier du forum ? smile

saque eud dun (patois chtimi : fonce dedans)

Hors ligne

#200 21-01-2020 10:39:38

Anonyme
Invité

Re : [Terminé] HANDBRAKECLI Script pour ripper un DVD-VIDEO.

Hello,

Je ne peux pas corriger ton script car je n'ai pas encore vu l'intérieur de ton fichier choix.txt et les infos qui se trouve dedans smile
5 pour moi, il est vide.

En commentant bien sûr la ligne du rm :

# rm -f "$TITLE/$i-choix.txt"

Dernière modification par Anonyme (21-01-2020 10:44:55)

Pied de page des forums