Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (98)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (7743)

  • find GOP for MPEG4 format video

    31 décembre 2013, par user3147794

    I read video with(format MPEG-4) and container (.mp4 ) use Aforge.Video.FFMPEG in c# language

    VideoFileReader video = new VideoFileReader() ;

    Bitmap bmp = video.ReadVideoFrame() ;

    pictureBox1.Image = bmp ;

    pictureBox1.Image.Save(@"D :\frames\" + ".bmp",ImageFormat.Bmp) ;

    it convert video into sequence of frames (bitmap image) ,now i need to know GOP what is GOP for mpeg4 format video,i need I-frame for each GOP,is there any method that can help me ?

  • find xargs mac change filename extension

    27 janvier 2014, par brakertech

    I am trying to convert a directory full of mp3's (with spaces in file names) to m4a.

    To convert a single file (this works) :

    ffmpeg  -i Traffic.mp3 -c:a libfaac -vn Traffic.m4a

    The command that is failing (on OS X Mavericks) :

    find . -name \*.mp3 -print0 | xargs -0 ffmpeg -i {}  -c:a libfaac -vn {}.m4a
  • Find if video file has audio present in it

    29 mars 2017, par Kartos

    I’m trying to figure out if a video has audio present in it so as to extract the mp3 using ffmpeg. When the video contains no audio channels, ffmpeg creates an empty mp3 file which I’m using to figure out if audio was present in the video in the first place. I’m sure there is a better way to identify if audio is present in a video. Will avprobe help with this ? Can anyone point me to a resource or probably a solution ?

    Edit : Surprisingly, the same command on my server running the latest build of ffprobe doesn’t run. It throws an error saying

    Unrecognized option ’select_stream’

    Failed to set value ’a’ for option ’select_stream’

    Any ideas how to rectify this out ?