Recherche avancée

Médias (91)

Autres articles (61)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (9826)

  • Excessive CPU usage when transcoding with ffmpeg

    21 février 2014, par user3130013

    I have 2 servers that are almost identical :

    Server 1 : Dell R900 4xQuad core E7330. Has DVB cards getting MPEGTS streams and does about 20 transcoding processes @ 70% CPU each
    Server 2 : Dell R900 4xQuad core E7340. Gets MPEGTS via HTTP from server 1 and does only 7 transcoding processes @ 220% CPU each.

    Server 2 is not able to do more then 7 as each process is almost triple in CPU consumption. If If I start with 1 process it shows up as 70% and looks fine. When I add remaining 6 all processes jump to 220% usage.

    Any ideas what might be wrong with server 2 ?

  • How to make a mosaic with ffmpeg that wouldn't start every video at the same time ? [duplicate]

    12 décembre 2019, par Samoussa Binou Mymusicisinme

    This question already has an answer here :

    • Using FFmpeg, I would like to encode 4 videos into a Mosaic with audio from each videos included.

    • Also, I would like for this mosaic to play 1 video at a time, while the others are paused until the one playing finishes. The first video to play would be the up-left one, then up-right one, then down-left one, to end with done-right one when each video is stopped playing : never at the same time.

    • Finally, I would like for this mosaic to display the 1rst frame of the videos that aren’t playing (kinda like a thumbnail).

    Is that even possible ? and could you help me figure out how ? Please ?

    Thank you very much for the help !

  • Monitoring ffmpeg two-passes encoding

    31 décembre 2024, par Hodol

    I'm new in FFMPEG.

    


    According to the official guide, https://trac.ffmpeg.org/wiki/Encode/VP9 I use the following command to convert a large h.264 file :

    


    ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 1 -an -f null /dev/null
ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 2 -c:a libopus output.webm


    


    However, the pass-1 takes too long time and it does not log progress. With -report option I can see something is in progress but I don't know how long I should wait.

    


    Here's questions :

    


      

    1. Is there any way to see the progress of 1-pass ?
    2. 


    3. Is there any way to speed up the process ?
    4. 


    


    Thank you,