Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (72)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11245)

  • x86/hevcdec : sao, refact out h26x macros

    19 octobre 2024, par Shaun Loo
    x86/hevcdec : sao, refact out h26x macros
    

    This is a part of Google Summer of Code 2023

    Co-authored-by : Nuo Mi <nuomi2021@gmail.com>

    • [DH] libavcodec/x86/h26x/h2656_sao.asm
    • [DH] libavcodec/x86/h26x/h2656_sao_10bit.asm
    • [DH] libavcodec/x86/hevc/sao.asm
    • [DH] libavcodec/x86/hevc/sao_10bit.asm
  • what are the ffmpeg parameters for capturing the screen on raspbian ?

    1er février 2024, par njamescouk

    I'm trying to use ffmpeg to record the screen produced by my&#xA;raspberry pi. I don't need sound.

    &#xA;

    What I've tried / what I'm seeing :

    &#xA;

    $ ffmpeg -video_size 1024x768 -framerate 25 -f x11grab -i :0.0&#x2B;100,200 output.mp4&#xA;ffmpeg version 5.1.4-0&#x2B;rpt1&#x2B;deb12u1 Copyright (c) 2000-2023 the FFmpeg developers&#xA;  built with gcc 12 (Debian 12.2.0-14)&#xA;  configuration: --prefix=/usr --extra-version=0&#x2B;rpt1&#x2B;deb12u1 --toolchain=hardened --incdir=/usr/include/aarch64-linux-gnu --enable-gpl --disable-stripping --disable-mmal --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librist --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sand --enable-sdl2 --disable-sndio --enable-libjxl --enable-neon --enable-v4l2-request --enable-libudev --enable-epoxy --libdir=/usr/lib/aarch64-linux-gnu --arch=arm64 --enable-pocketsphinx --enable-librsvg --enable-libdc1394 --enable-libdrm --enable-vout-drm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-libplacebo --enable-librav1e --enable-shared&#xA;  libavutil      57. 28.100 / 57. 28.100&#xA;  libavcodec     59. 37.100 / 59. 37.100&#xA;  libavformat    59. 27.100 / 59. 27.100&#xA;  libavdevice    59.  7.100 / 59.  7.100&#xA;  libavfilter     8. 44.100 /  8. 44.100&#xA;  libswscale      6.  7.100 /  6.  7.100&#xA;  libswresample   4.  7.100 /  4.  7.100&#xA;  libpostproc    56.  6.100 / 56.  6.100&#xA;[x11grab @ 0x5555e1899a20] Cannot open display :0.0&#x2B;100,200, error 1.&#xA;:0.0&#x2B;100,200: Input/output error&#xA;

    &#xA;

    I suspect x11grab is the problem, but have no idea what to use.

    &#xA;

  • C# Windows Forms Using FFMPEG to change video format got no response

    21 mai 2023, par TSLee

    I am trying to make an exe program to change a video format by using FFMPEG instead of doing it in the terminal. The formatted video will be saved in the download folder. I have tried my code below and got no output response. I wonder if I used process() and StartInfo correctly, as examples I found and the documentation just confused me. I have double-checked the ffmpeg.exe is in the bin folder and the StartInfo() is just for getting information, which is under Process(). This is why Process() can access the information and use Start() to start the process. Please help and correct my understanding.&#xA;Below is part of my code :

    &#xA;

    private void convertButton_Click(object sender, EventArgs e)&#xA;    {&#xA;        String input = filepathTextBox.Text;&#xA;        String outputResolution = resolutionLabel.Text;&#xA;        String output;&#xA;        String outputFileType;&#xA;        int inputLength = input.Length;&#xA;        int l = 0;&#xA;        for (int i = (inputLength - 1); inputLength > -1; i--)&#xA;        {&#xA;            if (input[i] == &#x27;.&#x27;)&#xA;            {&#xA;                l = i;&#xA;                break;&#xA;            }&#xA;        }&#xA;        output = input.Substring(0, l - 1);&#xA;        outputFileType = input.Substring(l &#x2B; 1, inputLength - 1);&#xA;        Process process = new Process();&#xA;        process.StartInfo.UseShellExecute = true;&#xA;        process.StartInfo.FileName = "ffmpeg.exe";&#xA;        process.StartInfo.WorkingDirectory = @"C:\Users\User\Downloads\ffmpeg-2023-05-15-git-2953ebe7b6-full_build\bin";&#xA;        process.StartInfo.Arguments = "ffmpeg -i" &#x2B; @"C:\Users\User\Downloads\file_example_MP4_640_3MG.mp4" &#x2B; "-s 320x240 -r 25 -b:v 500000 -pix_fmt yuv420p -c:v libx264     -vprofile baseline -level  2.1 -x264opts  stitchable=1:level=3.0:keyint=15:ref=1:merange=16:mvrange=32 -acodec pcm_s16le -ar 16000 -ac 1" &#x2B; @"C:\Users\User\Downloads\440.mp4";&#xA;        process.Start();&#xA;    }&#xA;

    &#xA;

    Output :&#xA;"myprogram.exe(CoreCLR : clrhost) : Loaded 'C :\Program Files\dotnet\shared\Microsoft.NETCore.App\6.0.15\System.Diagnostics.Process.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled."&#xA;The thread 0x79e0 has exited with code 0 (0x0).

    &#xA;