Recherche avancée

Médias (91)

Autres articles (75)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11897)

  • FFmpeg creating mp4 becomes asynchron

    17 novembre 2017, par Jaan

    I have a command which converts a .mpg file to a .mp4 file.
    But somehow the mp4 files becomes asychron the Audio has a delay of 0.5 seconds.

    Any idea of how to fix this since the mpg file is synchron.

    ffmpeg -i test.mpg -deinterlace -r 25 -s 1024x576 -pix_fmt yuv420p -vcodec libx264 -preset slow -vprofile high -b:v 1350k -minrate 1400k -maxrate 1400k -bufsize 1400k -trellis 2 -x264opts nal-hrd=cbr -acodec mp3 -ab 192k -async 1 test.mp4
  • How to extract frames above a certain brightness value using ffmpeg

    16 juin 2019, par Grey Poupon

    Right now I’m just extracting all the frames from my .mp4 using

    ffmpeg -i test.mp4 %d.jpg

    and then checking each frame for an overall brightness value using imageMagick.

    Its a slow and messy process, I was wondering if there was any way I could do this all in ffmpeg and only extract the frames I’m going to be using in the end (frames containing brightness value above x%)

  • FFMPEG - Audio going out of sync when using Tempo And setPTS

    5 février 2016, par loveforfire33

    Very new to ffmpeg and have been trying all day to get this working. I am trying to slow down a video and its audio at the same time (mp4). I have tried doing the audio and video separately with a very similar version of the code below but still get the same effect.

    The audio slowly goes out of sync with the video after roughly 30 seconds(audio goes faster). Any advice would be appreciated.

    -i "INPUT" -filter_complex "[0:v]setpts=1.1*PTS[v] ;[0:a]atempo=0.9[a]" -map "[v]"" -map "[a]" "OUTPUT"

    Thanks in advance