Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (109)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (6215)

  • Append A Frame (PNG) FFMPEG To existing video, Make changes all the video - libx264

    7 décembre 2022, par agh bagherian

    I want to append a frame to existing video by using ffmpeg.

    


    p0.png, p1.png and p2.png (3 frames)

    


    by this command ffmpeg generate first video :

    


    ffmpeg -framerate 4 -f image2 -s 1280x720 -i p%d.png -vcodec libx264 -b 80k test1.mp4

    


    Then i want to append a frame to last of video, but total video in HEX-View will be changed. I use this command to append :

    


    ffmpeg -framerate 4 -f image2 -s 1280x720 -t 1 -i new_pic.png -i test1.mp4 -vcodec libx264 -b 80k test2.mp4

    


    Please see image below :

    


    Please see this screen shot

    


    But i want only append some hex code to end of first video....

    


    Please help me. Thanks

    


    I tried many commands. I did not get any results

    


  • Pipe opencv frames to ffmpeg

    17 juillet 2016, par baci

    I am trying to pipe opencv frames to ffmpeg using rawvideo format, which should accept the input as BGRBGRBGR... encoding the frame before piping is not an option.

    cv::Mat frame;
    cv::VideoCapture cap("cap.avi");

    while(1)
    {
       cap >> frame;
       if(!frame.data) break;

       // some processing

       cv::Mat array = frame.reshape(0, 1); // to make continuous
       std::string output((char*) array.data, array.total() * array.elemSize());
       std::cout << output;
    }

    with command

    cap.exe | ffplay -f rawvideo -pixel_format bgr24 -video_size 1920x1080 -framerate 10 -i -

    gives this kind of distorted result

    I think problem is not related to ffmpeg/ffplay, but something is wrong with my frame to raw conversion

    how to convert mat with 3 channels to rawvideo bgr24 format ?

  • use ffmpeg to add audio/video sequences from multiple other files in another file

    9 novembre 2015, par robert paré

    I have several mp4 files that contain video and audio content ("base" videos)

    I have a length value (recordingLength) in which the output video should be (let’s say 3600 seconds).

    What I’m trying, is first creating a blank file with the total length (recordingLength) of 3600 seconds. I do it like so :

    ffmpeg -f lavfi -i anullsrc -t 3600 -c:a libfdk_aac ./output.mp4

    Then let’s say I have 5 base videos each lasting a couple of minutes, I need to add each of them at a specific time in the blank file created above. I tried playing around with -itsoffset {seconds} -t {seconds} but I’m still really just playing around trying to get my head around all the options.