Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (42)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • hwcontext_vaapi : Add option to set driver name

    14 novembre 2018, par Mark Thompson
    hwcontext_vaapi : Add option to set driver name
    

    For example : -init_hw_device vaapi :/dev/dri/renderD128,driver=foo

    This may be more convenient that using the environment variable, and allows
    loading different drivers for different devices in the same process.

    • [DH] libavutil/hwcontext_vaapi.c
  • Revision 219f645b2d : Add tune-content command line option Change-Id : I3793b54ad432e46bcdb2dcc7adc0e1

    6 août 2014, par Alex Converse

    Changed Paths :
     Modify /vpxenc.c



    Add tune-content command line option

    Change-Id : I3793b54ad432e46bcdb2dcc7adc0e15fa6deec47

  • How send only video to bitstream filter trough tee option

    24 août 2018, par Benji Joa

    I want to encode video in mpeg4 format and get two output of it, one in h264 format(without sound) and the other in mpeg4-ts format. I don’t find the option for enable sound in the first output.
    Here my command line :

    ./ffmpeg -i input -map 0 -c:a aac -c:v libx264  -y -f tee "[f=h264:bsfs/v=bitstreamfilter1]out.264|[f=mpegts:bsfs/v=bitstreamfilter2]out.ts"

    Thanks you