Recherche avancée

Médias (91)

Autres articles (20)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3926)

  • Build : update release steps

    19 mai 2022, par bytestream
    Build : update release steps
  • ffmpeg working on command line only, not with php

    23 août 2017, par Harish Kumar

    I am using FFmpeg https://github.com/olaferlandsen/ffmpeg-php-class. But when i am running code it is not working. Please help me to solve this issue if anyone know. Below is the code

    $FFmpeg = new FFmpeg( "/etc/bin/ffmpeg" );
    $FFmpeg->input( '/opt/lampp/htdocs/ffmpeg/1.wav' )->output( '/opt/lampp/htdocs/ffmpeg/ss.mp3' );
    $FFmpeg->ready();
  • ffmpeg : -hls_time and -hls_init_time not working [closed]

    19 août 2024, par apes-together-strong

    Source video : h264 mp4, 45 seconds, 30 fps, keyint 30, min keyint 16

    


    I am trying to create an m3u8 playlist where the first chunk is smaller (2 seconds) and the rest are 10 seconds.

    


    when using this command :

    


    ffmpeg.exe -i test4_c.mp4 -codec copy -bsf:v h264_mp4toannexb -start_number 0 -hls_init_time 2 -hls_time 10 -f hls -hls_list_size 0 test4_hls.m3u8


    


    result is 4 10 second ts chunks

    


    when using this command :

    


    ffmpeg.exe -i test4_c.mp4 -codec copy -bsf:v h264_mp4toannexb -start_number 0 -hls_init_time 2 -hls_time 10 -f hls -hls_list_size 100 test4_hls.m3u8


    


    result is 23 2 second ts chunks

    


    what's the issue here ?

    


    I have already read this :
ffmpeg -hls_init_time -hls_time not working together ?
and it doesn't work