Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (18106)

  • Anomalie #2122 (Nouveau) : Vider un local/cache-vignette trop gros

    13 juin 2011, par yffic Cloarec

    Sur un site de photographe, j’ai un souci. Je ne peux plus afficher la page de vidage du cache. Enfin j’ai une page blanche. Ca bloque au moment du calcul de l’espace sur local/cache-vignettes. Dans ce dossier, il y a 600 dossiers différents. En utilisant la fonction calculer_taille_dossier de (...)

  • lavf/latmenc : use a local simplified copy of avpriv_copy_bits()

    26 octobre 2020, par Anton Khirnov
    lavf/latmenc : use a local simplified copy of avpriv_copy_bits()
    

    This is the only place in lavf where avpriv_copy_bits() is used, so this
    allows us to make avpriv_copy_bits() lavc-local.

    • [DH] libavformat/latmenc.c
  • Muxing two video streams without transcoding with ffpmeg and making vlc overlay them during play

    20 octobre 2016, par Laars Camot

    There is a software that claims it can be done but it’s two expensive for me for a try. Basically it muxes two video streams in one and makes the second transparent video stream overlay on top of the first like it would be a subtitle stream without video filters. The software author states that the resulting output should be playable with all players, including VLC. I’ve tried this :

    ffmpeg -i first.ts -i second.ts -vcodec copy -acodec copy -map 0 -map 1:0 -f mpegts out.ts

    But it simply adds a second video stream to the resulting file. Playing it with VLC makes the player open two separate VLC instances.. no overlay at all. Is there a way to make VLC show two separate videos concurrently in the same window ?