Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (109)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13705)

  • Revision 30332 : On passe la génération de la file d’attente et donc des inserts en base ...

    29 juillet 2009, par kent1@… — Log

    On passe la génération de la file d’attente et donc des inserts en base dans l’action spipmotion_ajouter_file
    On ajoute un suffixe au nom de fichier -encoded pour éviter de boucler sur les encodages
    On clean aussi un chouilla

  • avutil : remove deprecated FF_API_HDR_VIVID_THREE_SPLINE

    19 février, par James Almer
    avutil : remove deprecated FF_API_HDR_VIVID_THREE_SPLINE
    

    Deprecated since 2023-03-17.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/dynamic_hdr_vivid.c
    • [DH] libavutil/hdr_dynamic_vivid_metadata.h
    • [DH] libavutil/version.h
  • How to use ffmpeg on a stream input to extract frames

    21 juillet 2023, par Deepak Sharma

    I have tried piping the stream to a ffmpeg process for extracting the frames. It does process the small files and able to extract the frames successfully but for most of the files it throws error. The reference of the code I have used from this link- https://mathewsachin.github.io/blog/2017/07/28/ffmpeg-pipe-csharp.html&#xA;When I am running the below code

    &#xA;

    `

    &#xA;

        public static void RunFfmpeg()&#xA;    {&#xA;        &#xA;        //-framerate 20 -f rawvideo -pix_fmt rgb32 -video_size 1920x1080&#xA;        var inputArgs = "-i -";&#xA;        var outputArgs = "-ss 00:00 -t 20 -vf fps=5  $filename%03d.bmp";&#xA;&#xA;        var process = new Process&#xA;        {&#xA;            StartInfo =&#xA;            {&#xA;                FileName = "ffmpeg",&#xA;                Arguments = $"{inputArgs} {outputArgs}",&#xA;                UseShellExecute = false,&#xA;                //CreateNoWindow = true,&#xA;                RedirectStandardInput = true,&#xA;                RedirectStandardOutput = true,&#xA;                WorkingDirectory = @"d:\ffmpegout"&#xA;            }&#xA;        };&#xA;&#xA;        process.Start();&#xA;&#xA;        var ffmpegIn = process.StandardInput.BaseStream;&#xA;&#xA;        using (Stream contents = File.OpenRead("C:\\Desktop\\Videos\\B.mp4"))&#xA;        {&#xA;            contents.CopyTo(ffmpegIn);&#xA;        }&#xA;&#xA;        // After you are done&#xA;        ffmpegIn.Flush();&#xA;        ffmpegIn.Close();&#xA;&#xA;        // Make sure ffmpeg has finished the work&#xA;        process.WaitForExit();&#xA;    }`&#xA;

    &#xA;

    I am getting the below error

    &#xA;

    ffmpeg version 2023-07-16-git-c541ecf0dc-full_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers&#xA;built with gcc 12.2.0 (Rev10, Built by MSYS2 project)&#xA;configuration : —enable-gpl —enable-version3 —enable-static —disable-w32threads —disable-autodetect —enable-fontconfig —enable-iconv —enable-gnutls —enable-libxml2 —enable-gmp —enable-bzlib —enable-lzma —enable-libsnappy —enable-zlib —enable-librist —enable-libsrt —enable-libssh —enable-libzmq —enable-avisynth —enable-libbluray —enable-libcaca —enable-sdl2 —enable-libaribb24 —enable-libaribcaption —enable-libdav1d —enable-libdavs2 —enable-libuavs3d —enable-libzvbi —enable-librav1e —enable-libsvtav1 —enable-libwebp —enable-libx264 —enable-libx265 —enable-libxavs2 —enable-libxvid —enable-libaom —enable-libjxl —enable-libopenjpeg —enable-libvpx —enable-mediafoundation —enable-libass —enable-frei0r —enable-libfreetype —enable-libfribidi —enable-libharfbuzz —enable-liblensfun —enable-libvidstab —enable-libvmaf —enable-libzimg —enable-amf —enable-cuda-llvm —enable-cuvid —enable-ffnvcodec —enable-nvdec —enable-nvenc —enable-d3d11va —enable-dxva2 —enable-libvpl —enable-libshaderc —enable-vulkan —enable-libplacebo —enable-opencl —enable-libcdio —enable-libgme —enable-libmodplug —enable-libopenmpt —enable-libopencore-amrwb —enable-libmp3lame —enable-libshine —enable-libtheora —enable-libtwolame —enable-libvo-amrwbenc —enable-libcodec2 —enable-libilbc —enable-libgsm —enable-libopencore-amrnb —enable-libopus —enable-libspeex —enable-libvorbis —enable-ladspa —enable-libbs2b —enable-libflite —enable-libmysofa —enable-librubberband —enable-libsoxr —enable-chromaprint&#xA;libavutil 58. 14.100 / 58. 14.100&#xA;libavcodec 60. 22.100 / 60. 22.100&#xA;libavformat 60. 10.100 / 60. 10.100&#xA;libavdevice 60. 2.101 / 60. 2.101&#xA;libavfilter 9. 8.102 / 9. 8.102&#xA;libswscale 7. 3.100 / 7. 3.100&#xA;libswresample 4. 11.100 / 4. 11.100&#xA;libpostproc 57. 2.100 / 57. 2.100&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 00000266a80179c0] Could not find codec parameters for stream 0 (Video : h264 (avc1 / 0x31637661), none(tv, bt709), 1280x720, 4023 kb/s) : unspecified pixel format&#xA;Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'fd :' :&#xA;Metadata :&#xA;major_brand : isom&#xA;minor_version : 512&#xA;compatible_brands : isomiso2avc1mp41&#xA;encoder : Lavf58.76.100&#xA;Duration : 00:00:21.22, start : 0.000000, bitrate : N/A&#xA;Stream #0:00x1 : Video : h264 (avc1 / 0x31637661), none(tv, bt709), 1280x720, 4023 kb/s, SAR 1:1 DAR 16:9, 29.97 fps, 29.97 tbr, 30k tbn (default)&#xA;Metadata :&#xA;handler_name : VideoHandler&#xA;vendor_id : [0][0][0][0]&#xA;Stream mapping :&#xA;Stream #0:0 -> #0:0 (h264 (native) -> bmp (native))&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 00000266a80179c0] stream 0, offset 0xbb3a : partial file&#xA;Cannot determine format of input stream 0:0 after EOF&#xA;Error marking filters as finished&#xA;Conversion failed !

    &#xA;

    I did check the metadata of the video is present in the start of the file before the mdat box.

    &#xA;

    Looking to get some help to resolve this issue.

    &#xA;