Recherche avancée

Médias (91)

Autres articles (57)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (5193)

  • Execute multiple commands in background from terminal & redirecting output

    9 octobre 2016, par Guernica

    I’m running ffmpeg via an exec command from php. I need to wait for the command to finish executing and run another command to call a php script.

    I need the output to be redirected to text files.

    This i have accomplished with the following code but it wont execute in the background. PHP hangs until the script has finished executing.

    exec("ffmpeg -i INPUTFILE -f mp4 -vcodec libx264 -preset fast -profile:v main -acodec aac -strict -2 OUTPUTFILE -hide_banner 1> /tmp/1.txt 2>/tmp/1.txt && php PATH_TO_PHP_SCRIPT/complete.php id=11 1> /tmp/11.txt 2> /tmp/11.txt &");

    Any help would be greatly appreciated.

    EDIT : I’ve got the required functionality by calling my original php containing the above code from another php containing

    exec("php convert.php id=".$id."  1> /tmp/".$id."_error.txt 2>/tmp/".$id."_error.txt &");

    I would rather leave this question open to find a more elegant solution or information as to why my original code at the top doesn’t function in the way i would expect.

  • What are the optimal params to use with ffmpeg to make HLS from a video file ?

    13 février 2018, par loki

    ffmpeg look very complicate to use, especially to understand all the impact of every params :( In my http server i receive video file that i need to store in hls format. I want to use ffmpeg to do this job but seam it’s little complicated to configure. with option I need to use ?

    right now i use

    -c:a aac
    -b:a 128k
    -c:v hevc
    -b:v <recommendedvideobitrate>k -maxrate <recommendedvideobitrate>k -bufsize <recommendedvideobitrate>k
    -force_key_frames "expr:eq(mod(n,30 * 2),0)"
    -t 180
    -hls_time 4
    -hls_segment_type fmp4
    -hls_fmp4_init_filename <afmp4initfilename>
    -hls_list_size 0
    -hls_flags single_file
    </afmp4initfilename></recommendedvideobitrate></recommendedvideobitrate></recommendedvideobitrate>

    but i don’t know, for exemple do i need to set :

    -r 30

    because maybe the input video have a variable frame rate (how to detect it ?) but i m not even sure that a variable frame rate could be a problem

    also i read that this option

    -force_key_frames "expr:eq(mod(n,30 * 2))+'),0)

    can leave to trouble (but i don’t know with)

    What are all the optimal params to use to create a hls stream of a video ?

  • tests/fate/aac : Add bitexact flags to fate-aac-pns-encode

    26 octobre 2015, par Michael Niedermayer
    tests/fate/aac : Add bitexact flags to fate-aac-pns-encode
    

    This fixes a fate failure after bumping the minor version
    Its unknown why this is not needed for the other aac tests,
    more investigation needed but for now i dont want to leave
    it broken while its investigated

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/aac.mak