Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (112)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

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

  • FFMPEG cache cause latency in some players

    10 mars 2024, par matin

    I using HLS live streaming with h.264 codec.

    


    Problem :
    
I am experiencing issues while playing a streamed video where its audio based. recently, I have noticed in my player (using videoJS) a significant latency at the beginning of the video.
    However in other media players like FFplay, it can play easily and with no latency.

    


    After restarting the FFmpeg transcoder that seems to fix the problem.

    


    Question :
    
What is problem and is there any solution ?

    


    enter image description here

    


  • How to know system command is in use in php ?

    13 juin 2019, par flash

    I have a HTML/PHP code as shown below in which on click of a button conversion of mp4 into mp3 starts happening.

    HTML/PHP Code :

      <?php  foreach ($programs as $key => $program) {  ?>
          <tr data-index="&lt;?php echo $key; ?>">
             <td><input type="submit" value="Go" data-id="&lt;?php echo $key; ?>" /></td>
          </tr>
       &lt;?php }?>

    Php code (where mp4=>mp3 conversion happens) :

    $f = $mp4_files[$_POST['id']];
    $parts = pathinfo($f);  
    switch ($parts['extension'])
    {  
    case 'mp4' :
    $filePath = $src_dir . DS . $f;
    system('C:\ffmpeg\bin\ffmpeg.exe -i ' . $filePath . ' -map 0:2 -ac 1 ' . $destination_dir . DS . $parts['filename'] . '.mp3', $result);
    break;  
    }

    As soon as the button is clicked from the HTML/PHP Code above, the text gets changed from Go to Converting in the UI because I have added JS/jQuery code in my codebase but this JS/jQuery code which I have added just change the text only.

    It doesn’t actually know that the Conversion is happening in the background.

    JS/jQuery code :

    $("input[name='go-button']").click( function() {

     // Change the text of the button, and disable
     $(this).val("Converting").attr("disabled", "true");

    });

    Problem Statement :

    I am wondering what modification I need to do in the JS/jQuery code above so that UI actually knows that conversion is happening in the background.

    Probably, we need to add make establish some connection between JS/jQuery and php code above but I am not sure how we can do that.

  • FFmpeg's trim filter to handle movie files with non-zero start_time for a transcoding task ?

    19 août 2014, par Drake

    For a movie file (ex, ooxx.mp4) with non-zero start_time in video stream, the negative start_time (ex, -0.5) can mean skipping first 0.5s frames, and the positive start_time (ex, 0.7s) can mean postponing the playback for 0.7s.

    I’m wondering if we can make use of FFmpeg’s trim filter (or something else) to strip out some video frames (for negative start_time) or put some empty (ex, black) frames ahead (for positive start_time) automatically ?