Recherche avancée

Médias (91)

Autres articles (23)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (4133)

  • Adding audio to video with ffmpeg not working

    14 août 2020, par asored

    I try to add audio to a video with ffmpeg.

    


    Here´s my code :

    


    ffmpeg -i $videoPath -i ${finalSong.path} -codec copy -shortest $tempPath/$newVideoFileName.mp4")

    


    Without the -shortest the video duration is the long duration from my .mp3 file. So the file exists as well. Also if I try to play it with an audio player it works well. But the exported video always is without audio...

    


    Do you have an idea where the issue is ?

    


    By the way : I´m using it on a Flutter application.

    


  • FFmpeg avformat_open_input not working

    30 septembre 2016, par John_Sheares

    This is my first time using FFmpeg. Every type of media file that I try to open with avformat_open_input, returns "Invalid data found when processing input". I am using 32bit FFmpeg Build Version : 92de2c2. I setup my VS2015 project according to this answer : Use FFmpeg in Visual Studio. What could be going wrong with this code ?

    #include "stdafx.h"
    #include

    extern "C"
    {
       #include "libavcodec/avcodec.h"
       #include <libavformat></libavformat>avformat.h>
       #include <libavutil></libavutil>avutil.h>
    }

    int main(int argc, char *argv[])
    {
       AVFormatContext *pFormatCtx = NULL;
       avcodec_register_all();

       const char* filename = "d:\\a.mp4";
       int ret = avformat_open_input(&amp;pFormatCtx, filename, NULL, NULL);
       if (ret != 0) {
           char buff[256];
           av_strerror(ret, buff, 256);
           printf(buff);
           return -1;
       }
    }
  • ffmpeg scaling not working for video

    15 mai 2018, par Neer Patel

    I am trying to change the dimensions of the video file through FFMPEG.
    I want to convert any video file to 480*360 .

    This is the command that I am using...

    ffmpeg -i oldVideo.mp4 -vf scale=480:360 newVideo.mp4

    After this command 1280*720 dimensions are converted to 640*360.

    I have also attached video. it will take less than minute for any experts out there. Is there anything wrong ?

    You can see here. (in Video, after 20 seconds, direclty jump to 1:35 , rest is just processing time).

    UPDATE :

    I found the command from this tutorial