Recherche avancée

Médias (91)

Autres articles (64)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12893)

  • Paste one video to another on top layer

    9 octobre 2012, par LLAlive

    I have over 100+ videos and i need to paste one 5 sec avi video on top layer of every video (something like watermark or animated logo). It can be performed with Adobe Premiere, but its too long and stupid. Where i can find good framework to work with video to perform this (any language) ? Or any other method to do it ? Maybe 'ffmpeg' can help ? Any help, links, documentations would be great.

  • Where to download avcodec.dll ? [closed]

    29 juin, par Олег Ю.

    I see in the folder of some application FFMPEG files avcodec.dll, avformat.dll, avutil.dll, etc.
They are all old version of FFMPEG. I wanted to update them, but I did not find where to download them on the FFMPEG website.
Are these complete libraries available for download ? Or do they exist only in development files and the authors of some application create FFMPEG .dll files themselves ? In other words, avcodec.dll files from different applications are not interchangeable ?
Help me figure it out.

    


  • Combine frames with offset in ffmpeg [duplicate]

    7 octobre 2019, par Nathan Vance

    This question already has an answer here :

    With ffmpeg, it is simple to combine still images into a video with a fixed framerate. For example :

    ffmpeg -framerate $FRAMERATE -i images/%d.png -c:v libx264 -pix_fmt yuv420p out.mp4

    However, in my case the frames are not at all at a fixed rate, but rather I record the millisecond offset since the start of image acquisition in the filename. For example :

    $ ls images/
    0.png   208.png   396.png   761.png   959.png   2131.png   2335.png

    Is it possible to use ffmpeg to combine these frames in this way, and how ?