Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (90)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (9564)

  • Warning VSP2005 & Error VSP1048 when instrumenting C++ code dynamically linked to FFMPEG

    20 juin 2018, par TTJG

    I am trying to profile my project with the Instrumentation profiler of Visual Studio 2013 Ultimate. I have a 64bit C++ project which is dynamically linked to FFMPEG. However, the profiler is giving me the following error Error VSP1048: Internal instrumentation error. I don’t want to profile FFMPEG but only analyze the performance of my code. I downloaded the pre-built FFMPEG libs from this site ffmpeg.zeranoe.com/builds/. The project is also linking against Boost, live555 and x264. It is running and debugging fine. The full output of the profiler is :

    Profiling started.
    Instrumenting ...\Player.exe in place
    Info VSP3049: Small functions will be excluded from instrumentation.
    Microsoft (R) VSInstr Post-Link Instrumentation 12.0.21005 x64
    Copyright (C) Microsoft Corp. All rights reserved.
    Warning VSP2005: Internal instrumentation warning: The object '...\ffmpeg-20150506-git-a2190de-win64-dev\lib\avutil.lib(dbyqh.o)' was built without debug information.
    File to Process:
    \Player.exe --> ...\Player.exe
    Original file backed up to ...\Player.exe.orig
    Warning VSP2005: Internal instrumentation warning: The object '...\ffmpeg-20150506-git-a2190de-win64-dev\lib\avutil.lib(dbyqh.o)' was built without debug information.
    Error VSP1048: Internal instrumentation error.
    PRF0002: Instrumentation failed with these options: /u "...\Player.exe"   /excludesmallfuncs.  Please check the output window for additional details.
    Data written to ...\Player150506.vsp.
    Profiling finished.
    File contains no data buffers
    File contains no data buffers
    Analysis failed
    Profiling complete.

    Any ideas how this could be solved ? I have found very little about this issue on the Internet.

  • Error : ffmpeg exited with code 1 : Option framerate not found

    19 novembre 2018, par Pramod Gehlot

    Error : ffmpeg exited with code 1 : Option framerate not found.
    I am adding audio with images but getting error,Please help me

    ffmpeg().addInput(__dirname + "/images/FullSizeRender-%1d.jpg")
     .complexFilter([
     //  " -framerate 1",
       {
       filter: "zoompan",
       options: {
         x: "iw/2-(iw/zoom/2)",
         y: "ih/2-(ih/zoom/2)",
         z: "if(lte(zoom,1.0),1.5,max(1.001,zoom-0.0040))",
         d: "125",
         s: "200x200"
       }
     }])
     // here we will give the audio path
     .addInput('audio path')
     .addInputOption(["-framerate 1" ])
     .addOutputOption(["-c:v libx264", "-r 30", "-pix_fmt yuv420p"])
     .addOption("-crf", 26)
     .format("mp4")
     .videoBitrate("1024k")
     .videoCodec("mpeg4")
     .on("error", function (er) {
       console.log("error occured: " + er.message, er);

     })
     .on("end", function (data) {
       console.log("created video has been completed");

       new ffmpeg({
           source: finalVideoPath,
           nolog: true,
         })
         .mergeAdd(__dirname + "/video/video.mp4")
         .mergeAdd(__dirname + "/video/video2.mp4")
         .mergeToFile(margeVideoPath, function (data) {
           console.log("marge video", data);
         });

         setTimeout(() => {
           //UploadVideoS3(margeVideoPath);
         }, 10000);

     }).save(finalVideoPath);

    I am adding audio with images but getting error,Please help me

  • How can I found FFmpeg Error code's meaning ?

    5 mai 2024, par Birds

    I have an issue using FFMPEG.

    



    avcodec_send_packet() is returning error code -12.

    



    I am trying to find what the meaning of -12 is.

    



    I found this page but I can't understand the calculation for -12 :

    



    How can I find out what this ffmpeg error code means ?

    



    Can anyone help me ?

    



    I'm using DXVA2 for decoding. and avcodec_send_packet() function is return -12 after the 20th frame.

    



    20th frame return

    



    image

    



    21st frame return

    



    image