Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (38)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

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

Sur d’autres sites (5657)

  • Is there a way of making ffmpeg start with the largest folders first ? [closed]

    5 décembre 2024, par tuqueque

    I have the following script (snippet), where I search for all the folders and then pass the result to xargs, where I run ffmpeg in parallel for as many threads as my CPU has (32) to convert the image sequences inside each folder :

    


    find . -type d -print0 | xargs -0 -P32 -I{} ffmpeg...


    


    The thing is that there are folders with just 10 images inside and other folders with 150 images... I'd love if ffmpeg started with the largest folders first and then continue in a descending order... not one at a time, but keeping the parallel nature of the script.

    


    Is that even possible without radically altering the one-line script I have ?

    


  • ffv1dec : move slice start finding into a function

    5 janvier, par Lynne
    ffv1dec : move slice start finding into a function
    

    This also cleans up and gives the code some much needed comments.

    • [DH] libavcodec/ffv1dec.c
  • Ffmpeg with nginx-rtmp module requires several restarts to start working

    21 janvier, par KonstSergP

    I have rtmp stream created with

    


    ffmpeg -i rtp://192.168.1.74:8000/live -vcodec libx264 -f flv rtmp://192.168.1.74:1935/picam/stream

    


    but after command Start it will not send video rtmpdump -z.

    


    If I restart ffmpeg 7-8 times it might work. There is how it look in wireshark when I want to see video from other device : wireshark

    


    I have recompiled nginx from source but it has no effect
Port 1935 is opened

    


    Please help