Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6810)

  • Select screen area dragging the mouse [closed]

    12 juin 2022, par Pedro Antônio

    How can I select area, by dragging the mouse and drawing a rectangle, returning x and y position ? I would like to get this parameters to pass it to ffmpeg

    


    Thanks

    


  • FFMPEG Inverts colors when converting tiff pictures to png

    1er juin 2021, par Mounia Jaiti

    We need to convert thousands of tiff pictures to png. To accomplish that we are using FFMPEG. We've noticed recently that for very few of the converted files (in png), the colors are inverted : the input tiff file is all black and white (a technical drawing in black with a white background), and the output png file is white and black (the drawing becomes white and the background becomes black). Of course we don't want that, we need the colors to stay the same.

    


    Here is the command we are using :

    


    ffmpeg -y -v warning -i in_file.tif out_file.png


    


    We've tested the 'negate' parameter on those files, and the pictures are correctly converted. But we can't apply this parameter to all of the input tiff files.
Here is the command with the negate parameter :

    


    ffmpeg -y -v verbose -i input.tif -vf negate output.png


    


    The Code Java we're using :

    


                String ffmpegPath="/Users/user11/ffmpeg//ffmpeg";&#xA;            List<string> commandArgs = new ArrayList<string>();&#xA;            commandArgs.add(ffmpegPath);&#xA;            //overwrite output file if it exists&#xA;            commandArgs.add("-y");      &#xA;            commandArgs.add("-v");&#xA;            commandArgs.add("verbose");&#xA;            //set input file &#xA;            commandArgs.add("-i"); &#xA;            commandArgs.add(picture.getAbsolutePath());&#xA;            commandArgs.add(dest.getAbsolutePath());&#xA;            &#xA;            String cmd = "";&#xA;            for(String cmdArg : commandArgs) {&#xA;                cmd &#x2B;= cmdArg &#x2B; " ";&#xA;            }&#xA;&#xA;&#xA;</string></string>

    &#xA;

    Logs for tif having the bug :

    &#xA;

    &#xA;31, 2021 2:15:51 PM &#xA;INFO: Executing : /Users/user11/ffmpeg/ffmpeg -y -v verbose -i /Users/user11/ffmpeg/input.tif /Users/user11/ffmpeg/output.png &#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: ffmpeg version 4.4-tessus  https://evermeet.cx/ffmpeg/  Copyright (c) 2000-2021 the FFmpeg developers&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   built with Apple clang version 11.0.0 (clang-1100.0.33.17)&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   configuration: --cc=/usr/bin/clang --prefix=/opt/ffmpeg --extra-version=tessus --enable-avisynth --enable-fontconfig --enable-gpl --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopus --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvmaf --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-version3 --pkg-config-flags=--static --disable-ffplay&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libavutil      56. 70.100 / 56. 70.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libavcodec     58.134.100 / 58.134.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libavformat    58. 76.100 / 58. 76.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libavdevice    58. 13.100 / 58. 13.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libavfilter     7.110.100 /  7.110.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libswscale      5.  9.100 /  5.  9.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libswresample   3.  9.100 /  3.  9.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   libpostproc    55.  9.100 / 55.  9.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: [tiff_pipe @ 0x7fa7f6008200] parser not found for codec tiff, packets or times may be invalid.&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:     Last message repeated 1 times&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Input #0, tiff_pipe, from &#x27;/Users/user11/ffmpeg/input.tif&#x27;:&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Duration: N/A, bitrate: N/A&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Stream #0:0: Video: tiff, 1 reference frame, monob, 2008x2481 [SAR 1:1 DAR 2008:2481], 25 fps, 25 tbr, 25 tbn, 25 tbc&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Stream mapping:&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Stream #0:0 -> #0:0 (tiff (native) -> png (native))&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Press [q] to stop, [?] for help&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: [graph 0 input from stream 0:0 @ 0x7fa7f4c08300] w:2008 h:2481 pixfmt:monob tb:1/25 fr:25/1 sar:1/1&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Output #0, image2, to &#x27;/Users/user11/ffmpeg/output.png&#x27;:&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Metadata:&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:     encoder         : Lavf58.76.100&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Stream #0:0: Video: png, 1 reference frame, monob(progressive), 2008x2481 (0x0) [SAR 1:1 DAR 2008:2481], q=2-31, 200 kb/s, 25 fps, 25 tbn&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:     Metadata:&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:       encoder         : Lavc58.134.100 png&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: frame=    1 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A speed=   0x    &#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: No more output streams to write to, finishing.&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: [AVIOContext @ 0x7fa7f4c14180] Statistics: 0 seeks, 1 writeouts&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=1.31x    &#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: video:37kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Input file #0 (/Users/user11/ffmpeg/input.tif):&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Input stream #0:0 (video): 1 packets read (18100 bytes); 1 frames decoded; &#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Total: 1 packets (18100 bytes) demuxed&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: Output file #0 (/Users/user11/ffmpeg/output.png):&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Output stream #0:0 (video): 1 frames encoded; 1 packets muxed (38013 bytes); &#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output:   Total: 1 packets (38013 bytes) muxed&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: ReencodePicture output: [AVIOContext @ 0x7fa7f4f041c0] Statistics: 18100 bytes read, 0 seeks&#xA;May 31, 2021 2:15:51 PM &#xA;INFO: BinaryRepositoryHelper.convertPixTo ffmpeg Process returned : java.lang.UNIXProcess@27ddd392, ended with code 0, and returned in 160 ms, out=/Users/user11/ffmpeg/output.png exists=true&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;

    &#xA;

    So our questions are :

    &#xA;

      &#xA;
    1. Is there a way to identify the tiff files that will be converted to png with inverted colors ? So that we can know to which files the 'negate' parameter must be applied.
    2. &#xA;

    3. Are there any other FFMPEG parameter that we can use.
    4. &#xA;

    &#xA;

    This issue has been driving us mad for the last couple of days. Any help would be highly appreciated.&#xA;Thanks.

    &#xA;

    Example of Tif picture

    &#xA;

    https://drive.google.com/file/d/1U1a91gTk1gaJb-XAPavNq6UhmjWXZjbM/view?usp=sharing

    &#xA;

  • C# on linux : FFmpeg (FFMediaToolkit) MediaOutput..Video.AddFrame(FrameToImageData(ImageData)) causes program to exit with code 139

    19 mai 2021, par Jan Černý

    In my C# program I have instance of MediaOutput from FFMediaToolkit. It is initialized like this :

    &#xA;

    MediaOutput buffer = MediaBuilder.CreateContainer(videoPath).WithVideo(new VideoEncoderSettings(width: width,&#xA;                height: height, framerate: frameRate,&#xA;                codec: VideoCodec.H264)&#xA;            ).Create();&#xA;

    &#xA;

    When I want to add frame to buffer I use this code :

    &#xA;

    private static ImageData FrameToImageData(Bitmap bitmap) {&#xA;    Rectangle rect = new Rectangle(System.Drawing.Point.Empty, bitmap.Size);&#xA;    BitmapData bitLock = bitmap.LockBits(rect, ImageLockMode.ReadOnly, PixelFormat.Format24bppRgb);&#xA;    ImageData bitmapImageData = ImageData.FromPointer(bitLock.Scan0, ImagePixelFormat.Bgr24, bitmap.Size);&#xA;    bitmap.UnlockBits(bitLock);&#xA;    return bitmapImageData;&#xA;}&#xA;&#xA;public void AddFrame(Bitmap frame) {&#xA;    buffer.Video.AddFrame(FrameToImageData(frame));&#xA;}&#xA;

    &#xA;

    But when code reaches buffer.Video.AddFrame(); it exits with code 139 without throwing any exception.

    &#xA;

    I have two test files and only one is causing it. One is .png file 100x100 and it works fine. The other is .png file 1000x1000 and it makes program exit as soon as it reaches this method.

    &#xA;

    What exit code 139 means in C# ?
    &#xA;How can I diagnose this problem when it is not throwing any exceptions ?
    &#xA;How can I fix it ?

    &#xA;

    Thank you for help. If you need any more information, leave a comment and I will add it soon as possible.

    &#xA;

    Edit1 :
    &#xA;This is my instel drivers :

    &#xA;

    john@arch-thinkpad ~> yay -Qs intel&#xA;local/intel-gmmlib 21.1.1-1&#xA;    Intel Graphics Memory Management Library&#xA;local/intel-media-driver 21.1.3-1&#xA;    Intel Media Driver for VAAPI — Broadwell&#x2B; iGPUs&#xA;local/intel-media-sdk 21.1.3-1&#xA;    API to access hardware-accelerated video on Intel Gen graphics hardware platforms&#xA;local/intel-mkl 2020.4.304-1&#xA;    Intel Math Kernel Library&#xA;local/intel-ucode 20210216-1&#xA;    Microcode update files for Intel CPUs&#xA;local/intellij-idea-ultimate-edition 2021.1.1-1&#xA;    An intelligent IDE for Java, Groovy and other programming languages with advanced refactoring features intensely focused on developer productivity.&#xA;local/libmfx 21.1.3-1&#xA;    Intel Media SDK dispatcher library&#xA;local/libva-intel-driver 2.4.1-1&#xA;    VA-API implementation for Intel G45 and HD Graphics family&#xA;local/onednn 2.2.2-1&#xA;    oneAPI Deep Neural Network Library (oneDNN)&#xA;local/tbb 2020.3-1&#xA;    High level abstract threading library&#xA;local/xf86-video-intel 1:2.99.917&#x2B;916&#x2B;g31486f40-1 (xorg-drivers)&#xA;    X.org Intel i810/i830/i915/945G/G965&#x2B; video drivers&#xA;

    &#xA;

    EDIT2 :

    &#xA;

    [17091.524781] Slimulator[20962]: segfault at 7fd84003a011 ip 00007fd8400cd348 sp 00007ffddd9d7fb8 error 4 in libswscale.so.5.9.100[7fd840062000&#x2B;75000]&#xA;[17091.524791] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17091.524829] audit: type=1701 audit(1621440058.690:188): auid=1000 uid=1000 gid=1000 ses=1 pid=20962 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17091.546116] audit: type=1334 audit(1621440058.713:189): prog-id=61 op=LOAD&#xA;[17091.546209] audit: type=1334 audit(1621440058.713:190): prog-id=62 op=LOAD&#xA;[17091.546262] audit: type=1334 audit(1621440058.713:191): prog-id=63 op=LOAD&#xA;[17091.547395] audit: type=1130 audit(1621440058.713:192): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@6-20996-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17094.458151] audit: type=1131 audit(1621440061.623:193): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@6-20996-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17094.542823] audit: type=1334 audit(1621440061.710:194): prog-id=63 op=UNLOAD&#xA;[17094.542832] audit: type=1334 audit(1621440061.710:195): prog-id=62 op=UNLOAD&#xA;[17094.542836] audit: type=1334 audit(1621440061.710:196): prog-id=61 op=UNLOAD&#xA;[17295.099124] Slimulator[21147]: segfault at 7f555b1de011 ip 00007f555b271348 sp 00007fff48239f48 error 4 in libswscale.so.5.9.100[7f555b206000&#x2B;75000]&#xA;[17295.099132] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17295.099197] audit: type=1701 audit(1621440262.267:197): auid=1000 uid=1000 gid=1000 ses=1 pid=21147 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17295.108536] audit: type=1334 audit(1621440262.277:198): prog-id=64 op=LOAD&#xA;[17295.108679] audit: type=1334 audit(1621440262.277:199): prog-id=65 op=LOAD&#xA;[17295.108752] audit: type=1334 audit(1621440262.277:200): prog-id=66 op=LOAD&#xA;[17295.109589] audit: type=1130 audit(1621440262.277:201): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@7-21181-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17297.322989] audit: type=1131 audit(1621440264.487:202): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@7-21181-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17297.401409] audit: type=1334 audit(1621440264.571:203): prog-id=66 op=UNLOAD&#xA;[17297.401421] audit: type=1334 audit(1621440264.571:204): prog-id=65 op=UNLOAD&#xA;[17297.401426] audit: type=1334 audit(1621440264.571:205): prog-id=64 op=UNLOAD&#xA;[17353.331142] Slimulator[21281]: segfault at 7f35f1fd3011 ip 00007f35f2066348 sp 00007ffe7d1288e8 error 4 in libswscale.so.5.9.100[7f35f1ffb000&#x2B;75000]&#xA;[17353.331160] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17353.331214] audit: type=1701 audit(1621440320.498:206): auid=1000 uid=1000 gid=1000 ses=1 pid=21281 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17353.344382] audit: type=1334 audit(1621440320.511:207): prog-id=67 op=LOAD&#xA;[17353.344518] audit: type=1334 audit(1621440320.511:208): prog-id=68 op=LOAD&#xA;[17353.344566] audit: type=1334 audit(1621440320.511:209): prog-id=69 op=LOAD&#xA;[17353.345651] audit: type=1130 audit(1621440320.511:210): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@8-21378-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17356.180885] audit: type=1131 audit(1621440323.345:211): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@8-21378-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17356.261051] audit: type=1334 audit(1621440323.428:212): prog-id=69 op=UNLOAD&#xA;[17356.261055] audit: type=1334 audit(1621440323.428:213): prog-id=68 op=UNLOAD&#xA;[17356.261057] audit: type=1334 audit(1621440323.428:214): prog-id=67 op=UNLOAD&#xA;[17379.499165] Slimulator[21454]: segfault at 7f68418a1011 ip 00007f6841934348 sp 00007ffea9f22eb8 error 4 in libswscale.so.5.9.100[7f68418c9000&#x2B;75000]&#xA;[17379.499174] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17379.499245] audit: type=1701 audit(1621440346.665:215): auid=1000 uid=1000 gid=1000 ses=1 pid=21454 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17379.509368] audit: type=1334 audit(1621440346.675:216): prog-id=70 op=LOAD&#xA;[17379.509448] audit: type=1334 audit(1621440346.675:217): prog-id=71 op=LOAD&#xA;[17379.509481] audit: type=1334 audit(1621440346.675:218): prog-id=72 op=LOAD&#xA;[17379.510098] audit: type=1130 audit(1621440346.675:219): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@9-21492-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17381.661151] audit: type=1131 audit(1621440348.828:220): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@9-21492-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17381.740919] audit: type=1334 audit(1621440348.908:221): prog-id=72 op=UNLOAD&#xA;[17381.740924] audit: type=1334 audit(1621440348.908:222): prog-id=71 op=UNLOAD&#xA;[17381.740926] audit: type=1334 audit(1621440348.908:223): prog-id=70 op=UNLOAD&#xA;[17389.743524] Slimulator[21565]: segfault at 7f95075a4011 ip 00007f9507637348 sp 00007ffccfab3f18 error 4 in libswscale.so.5.9.100[7f95075cc000&#x2B;75000]&#xA;[17389.743535] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17389.743613] audit: type=1701 audit(1621440356.908:224): auid=1000 uid=1000 gid=1000 ses=1 pid=21565 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17389.753604] audit: type=1334 audit(1621440356.918:225): prog-id=73 op=LOAD&#xA;[17389.753783] audit: type=1334 audit(1621440356.918:226): prog-id=74 op=LOAD&#xA;[17389.753847] audit: type=1334 audit(1621440356.918:227): prog-id=75 op=LOAD&#xA;[17389.755847] audit: type=1130 audit(1621440356.921:228): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@10-21600-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17392.121917] audit: type=1131 audit(1621440359.288:229): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@10-21600-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17392.204160] audit: type=1334 audit(1621440359.371:230): prog-id=75 op=UNLOAD&#xA;[17392.204167] audit: type=1334 audit(1621440359.371:231): prog-id=74 op=UNLOAD&#xA;[17392.204169] audit: type=1334 audit(1621440359.371:232): prog-id=73 op=UNLOAD&#xA;[17409.596374] Slimulator[21674]: segfault at 7fddab4c5011 ip 00007fddab558348 sp 00007ffe55e75e28 error 4 in libswscale.so.5.9.100[7fddab4ed000&#x2B;75000]&#xA;[17409.596383] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17409.596441] audit: type=1701 audit(1621440376.762:233): auid=1000 uid=1000 gid=1000 ses=1 pid=21674 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17409.606014] audit: type=1334 audit(1621440376.772:234): prog-id=76 op=LOAD&#xA;[17409.606096] audit: type=1334 audit(1621440376.772:235): prog-id=77 op=LOAD&#xA;[17409.606139] audit: type=1334 audit(1621440376.772:236): prog-id=78 op=LOAD&#xA;[17409.606845] audit: type=1130 audit(1621440376.772:237): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@11-21706-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17411.977651] audit: type=1131 audit(1621440379.145:238): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@11-21706-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17412.074091] audit: type=1334 audit(1621440379.242:239): prog-id=78 op=UNLOAD&#xA;[17412.074098] audit: type=1334 audit(1621440379.242:240): prog-id=77 op=UNLOAD&#xA;[17412.074101] audit: type=1334 audit(1621440379.242:241): prog-id=76 op=UNLOAD&#xA;[17431.213606] Slimulator[21785]: segfault at 7f218cdca011 ip 00007f218ce5d348 sp 00007ffffd122a98 error 4 in libswscale.so.5.9.100[7f218cdf2000&#x2B;75000]&#xA;[17431.213616] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17431.213648] audit: type=1701 audit(1621440398.378:242): auid=1000 uid=1000 gid=1000 ses=1 pid=21785 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17431.223086] audit: type=1334 audit(1621440398.388:243): prog-id=79 op=LOAD&#xA;[17431.223210] audit: type=1334 audit(1621440398.388:244): prog-id=80 op=LOAD&#xA;[17431.223272] audit: type=1334 audit(1621440398.388:245): prog-id=81 op=LOAD&#xA;[17431.224003] audit: type=1130 audit(1621440398.392:246): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@12-21817-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17433.560362] audit: type=1131 audit(1621440400.725:247): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@12-21817-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17433.620924] audit: type=1334 audit(1621440400.788:248): prog-id=81 op=UNLOAD&#xA;[17433.620929] audit: type=1334 audit(1621440400.788:249): prog-id=80 op=UNLOAD&#xA;[17433.620931] audit: type=1334 audit(1621440400.788:250): prog-id=79 op=UNLOAD&#xA;[17636.068527] audit: type=1701 audit(1621440603.236:251): auid=1000 uid=1000 gid=1000 ses=1 pid=22189 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=6 res=1&#xA;[17636.075124] audit: type=1334 audit(1621440603.243:252): prog-id=82 op=LOAD&#xA;[17636.075299] audit: type=1334 audit(1621440603.243:253): prog-id=83 op=LOAD&#xA;[17636.075334] audit: type=1334 audit(1621440603.243:254): prog-id=84 op=LOAD&#xA;[17636.075947] audit: type=1130 audit(1621440603.246:255): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@13-22213-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17636.859400] audit: type=1131 audit(1621440604.030:256): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@13-22213-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17636.952582] audit: type=1334 audit(1621440604.123:257): prog-id=84 op=UNLOAD&#xA;[17636.952586] audit: type=1334 audit(1621440604.123:258): prog-id=83 op=UNLOAD&#xA;[17636.952587] audit: type=1334 audit(1621440604.123:259): prog-id=82 op=UNLOAD&#xA;[17683.442450] Slimulator[22349]: segfault at 7fce7b840011 ip 00007fce7b8d3348 sp 00007ffdf12fde88 error 4 in libswscale.so.5.9.100[7fce7b868000&#x2B;75000]&#xA;[17683.442461] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17683.442489] audit: type=1701 audit(1621440650.613:260): auid=1000 uid=1000 gid=1000 ses=1 pid=22349 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17683.451485] audit: type=1334 audit(1621440650.620:261): prog-id=85 op=LOAD&#xA;[17683.451530] audit: type=1334 audit(1621440650.620:262): prog-id=86 op=LOAD&#xA;[17683.451561] audit: type=1334 audit(1621440650.620:263): prog-id=87 op=LOAD&#xA;[17683.452200] audit: type=1130 audit(1621440650.620:264): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@14-22400-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17685.702716] audit: type=1131 audit(1621440652.873:265): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@14-22400-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17685.789205] audit: type=1334 audit(1621440652.960:266): prog-id=87 op=UNLOAD&#xA;[17685.789209] audit: type=1334 audit(1621440652.960:267): prog-id=86 op=UNLOAD&#xA;[17685.789211] audit: type=1334 audit(1621440652.960:268): prog-id=85 op=UNLOAD&#xA;[17741.587367] audit: type=1701 audit(1621440708.757:269): auid=1000 uid=1000 gid=1000 ses=1 pid=22506 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=6 res=1&#xA;[17741.597924] audit: type=1334 audit(1621440708.767:270): prog-id=88 op=LOAD&#xA;[17741.597991] audit: type=1334 audit(1621440708.767:271): prog-id=89 op=LOAD&#xA;[17741.598017] audit: type=1334 audit(1621440708.767:272): prog-id=90 op=LOAD&#xA;[17741.598635] audit: type=1130 audit(1621440708.770:273): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@15-22533-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17743.536566] audit: type=1131 audit(1621440710.707:274): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@15-22533-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17743.645445] audit: type=1334 audit(1621440710.817:275): prog-id=90 op=UNLOAD&#xA;[17743.645456] audit: type=1334 audit(1621440710.817:276): prog-id=89 op=UNLOAD&#xA;[17743.645460] audit: type=1334 audit(1621440710.817:277): prog-id=88 op=UNLOAD&#xA;[17826.501073] Slimulator[22630]: segfault at 7efff17b2011 ip 00007efff1845348 sp 00007ffe58353908 error 4 in libswscale.so.5.9.100[7efff17da000&#x2B;75000]&#xA;[17826.501081] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[17826.501144] audit: type=1701 audit(1621440793.671:278): auid=1000 uid=1000 gid=1000 ses=1 pid=22630 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[17826.508176] audit: type=1334 audit(1621440793.681:279): prog-id=91 op=LOAD&#xA;[17826.508254] audit: type=1334 audit(1621440793.681:280): prog-id=92 op=LOAD&#xA;[17826.508285] audit: type=1334 audit(1621440793.681:281): prog-id=93 op=LOAD&#xA;[17826.508907] audit: type=1130 audit(1621440793.681:282): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@16-22667-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17828.821665] audit: type=1131 audit(1621440795.994:283): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@16-22667-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[17828.911512] audit: type=1334 audit(1621440796.084:284): prog-id=93 op=UNLOAD&#xA;[17828.911523] audit: type=1334 audit(1621440796.084:285): prog-id=92 op=UNLOAD&#xA;[17828.911528] audit: type=1334 audit(1621440796.084:286): prog-id=91 op=UNLOAD&#xA;[18255.197203] Slimulator[23128]: segfault at 7f44e8746011 ip 00007f44e87d9348 sp 00007ffdfc25d318 error 4 in libswscale.so.5.9.100[7f44e876e000&#x2B;75000]&#xA;[18255.197213] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[18255.197237] audit: type=1701 audit(1621441222.370:287): auid=1000 uid=1000 gid=1000 ses=1 pid=23128 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[18255.205057] audit: type=1334 audit(1621441222.376:288): prog-id=94 op=LOAD&#xA;[18255.205138] audit: type=1334 audit(1621441222.376:289): prog-id=95 op=LOAD&#xA;[18255.205165] audit: type=1334 audit(1621441222.376:290): prog-id=96 op=LOAD&#xA;[18255.206164] audit: type=1130 audit(1621441222.380:291): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@17-23164-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18257.792719] audit: type=1131 audit(1621441224.967:292): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@17-23164-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18257.862155] audit: type=1334 audit(1621441225.037:293): prog-id=96 op=UNLOAD&#xA;[18257.862159] audit: type=1334 audit(1621441225.037:294): prog-id=95 op=UNLOAD&#xA;[18257.862161] audit: type=1334 audit(1621441225.037:295): prog-id=94 op=UNLOAD&#xA;[18312.879423] audit: type=1334 audit(1621441280.053:296): prog-id=97 op=LOAD&#xA;[18312.879566] audit: type=1334 audit(1621441280.053:297): prog-id=98 op=LOAD&#xA;[18312.879634] audit: type=1334 audit(1621441280.053:298): prog-id=99 op=LOAD&#xA;[18312.918107] audit: type=1130 audit(1621441280.090:299): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18342.984220] audit: type=1131 audit(1621441310.157:300): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18343.084948] audit: type=1334 audit(1621441310.260:301): prog-id=99 op=UNLOAD&#xA;[18343.084955] audit: type=1334 audit(1621441310.260:302): prog-id=98 op=UNLOAD&#xA;[18343.084959] audit: type=1334 audit(1621441310.260:303): prog-id=97 op=UNLOAD&#xA;[18527.198876] Slimulator[23504]: segfault at 7fd59543e011 ip 00007fd5954d1348 sp 00007ffcc5d59e78 error 4 in libswscale.so.5.9.100[7fd595466000&#x2B;75000]&#xA;[18527.198885] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[18527.198911] audit: type=1701 audit(1621441494.371:304): auid=1000 uid=1000 gid=1000 ses=1 pid=23504 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[18527.207861] audit: type=1334 audit(1621441494.381:305): prog-id=100 op=LOAD&#xA;[18527.207959] audit: type=1334 audit(1621441494.381:306): prog-id=101 op=LOAD&#xA;[18527.207996] audit: type=1334 audit(1621441494.381:307): prog-id=102 op=LOAD&#xA;[18527.208682] audit: type=1130 audit(1621441494.381:308): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@18-23538-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18530.192509] audit: type=1131 audit(1621441497.364:309): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@18-23538-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18530.274214] audit: type=1334 audit(1621441497.448:310): prog-id=102 op=UNLOAD&#xA;[18530.274221] audit: type=1334 audit(1621441497.448:311): prog-id=101 op=UNLOAD&#xA;[18530.274224] audit: type=1334 audit(1621441497.448:312): prog-id=100 op=UNLOAD&#xA;[18788.989941] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe B (start=1126979 end=1126980) time 153 us, min 1073, max 1079, scanline start 1072, end 1082&#xA;[18793.024933] audit: type=1334 audit(1621441760.199:313): prog-id=103 op=LOAD&#xA;[18793.025042] audit: type=1334 audit(1621441760.199:314): prog-id=104 op=LOAD&#xA;[18793.025082] audit: type=1334 audit(1621441760.199:315): prog-id=105 op=LOAD&#xA;[18793.061481] audit: type=1130 audit(1621441760.235:316): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18823.124309] audit: type=1131 audit(1621441790.299:317): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[18823.193828] audit: type=1334 audit(1621441790.369:318): prog-id=105 op=UNLOAD&#xA;[18823.193847] audit: type=1334 audit(1621441790.369:319): prog-id=104 op=UNLOAD&#xA;[18823.193856] audit: type=1334 audit(1621441790.369:320): prog-id=103 op=UNLOAD&#xA;[19615.817516] Slimulator[24574]: segfault at 7fb94cbbd011 ip 00007fb94cc50348 sp 00007fffefd935c8 error 4 in libswscale.so.5.9.100[7fb94cbe5000&#x2B;75000]&#xA;[19615.817524] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[19615.817544] audit: type=1701 audit(1621442582.996:321): auid=1000 uid=1000 gid=1000 ses=1 pid=24574 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[19615.825508] audit: type=1334 audit(1621442583.002:322): prog-id=106 op=LOAD&#xA;[19615.825620] audit: type=1334 audit(1621442583.002:323): prog-id=107 op=LOAD&#xA;[19615.825652] audit: type=1334 audit(1621442583.002:324): prog-id=108 op=LOAD&#xA;[19615.826425] audit: type=1130 audit(1621442583.006:325): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@19-24609-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[19617.863304] audit: type=1131 audit(1621442585.043:326): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@19-24609-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[19617.939124] audit: type=1334 audit(1621442585.119:327): prog-id=108 op=UNLOAD&#xA;[19617.939129] audit: type=1334 audit(1621442585.119:328): prog-id=107 op=UNLOAD&#xA;[19617.939132] audit: type=1334 audit(1621442585.119:329): prog-id=106 op=UNLOAD&#xA;[20633.629288] Slimulator[25687]: segfault at 7fed842b8011 ip 00007fed8434b348 sp 00007ffcbf0f45d8 error 4 in libswscale.so.5.9.100[7fed842e0000&#x2B;75000]&#xA;[20633.629298] Code: 45 85 c0 0f 8e 58 01 00 00 41 8d 40 ff 49 89 cc 48 89 d5 48 89 f9 48 89 44 24 f8 44 89 c0 31 f6 48 89 44 24 e0 0f 1f 44 00 00 &lt;0f> b6 41 01 44 0f b6 41 02 48 83 c1 06 44 8b 7c 24 d4 8b 54 24 d8&#xA;[20633.629328] audit: type=1701 audit(1621443600.811:330): auid=1000 uid=1000 gid=1000 ses=1 pid=25687 comm="Slimulator" exe="/home/john/Projects/Slimulator/bin/Debug/net5.0/Slimulator" sig=11 res=1&#xA;[20633.640886] audit: type=1334 audit(1621443600.824:331): prog-id=109 op=LOAD&#xA;[20633.640985] audit: type=1334 audit(1621443600.824:332): prog-id=110 op=LOAD&#xA;[20633.641017] audit: type=1334 audit(1621443600.824:333): prog-id=111 op=LOAD&#xA;[20633.641934] audit: type=1130 audit(1621443600.824:334): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@20-25722-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[20636.303870] audit: type=1131 audit(1621443603.488:335): pid=1 uid=0 auid=4294967295 ses=4294967295 msg=&#x27;unit=systemd-coredump@20-25722-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success&#x27;&#xA;[20636.410990] audit: type=1334 audit(1621443603.594:336): prog-id=111 op=UNLOAD&#xA;[20636.411006] audit: type=1334 audit(1621443603.594:337): prog-id=110 op=UNLOAD&#xA;[20636.411014] audit: type=1334 audit(1621443603.594:338): prog-id=109 op=UNLOAD&#xA;

    &#xA;