Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (96)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5726)

  • How can i do Facebook Live (page) using FFMPEG

    15 août 2021, par Amjad Dader

    SOLVED & EDITED -

    


    Catch : Doing live stream on Facebook with FMMPEG.

    


    In past it was easy i did many times as facebook was using rtmp.
But now facebook is using RTMPS so i am getting different errors i have tried 100 commands.
I have a image test.png and a audio file test.m4a (its a podcast) and facebook stream key is 1234.
( i have tried 100 types of commands so cant post here and cant post errors aswell.)
so please can someone help me to go live on my facebook page with image+m4a file.
i prefer centos but i will manage ubuntu if you prefer.
Regards..

    


    Solved : See my answer might help someone.

    


  • Revision 6932 : Une redirection sur les page d’édition de nouveaux objets On répare le ...

    23 août 2012, par kent1 — Log

    Une redirection sur les page d’édition de nouveaux objets
    On répare le titre dans la liste des objets

  • ffmpeg prevents access to page while processing

    30 juin 2013, par Kal

    I am having trouble accessing my page after calling ffmpeg. I can't access the page until the ffmpeg finishes processing the files.

    I have a php create.php that calls videoHandler.php via ajax to create video files.

    create.php

    function createReady(){
    $.ajax({
       url: '/videoHandler',  //server script to process data
       type: 'POST',
       async: true,
       success: function(result) {

       }
    });
    window.location.href = "/create";
    }

    videoHandler.php

    $ffmpegpath = "c:/ffmpeg"; $input = "hd_file.mp4"; $ouput = "out_480.mp4";
    $exec_string = "$ffmpegpath -i $input -vcodec libx264 -b 250k -c:a libvo_aacenc -b:a 128k $output";
    $output = "out_680.mp4";
    $exec_string = "$ffmpegpath -i $input -vcodec libx264 -b 500k -c:a libvo_aacenc -b:a 128k $output";

    hd_file.mp4 size is about 500Mb

    Is there a command that forces ffmpeg to work async. or any solution to my issue ?