Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (59)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

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

  • ffmpeg make video from multiple images and one audio with specific timestamps for each image [closed]

    2 juin 2024, par Trojosh

    I have an audio file and I have 15 images. I would like to make a video from these 15 still images. Each image may appear for different number of seconds.
E.g. Image 1,2,3 will take 3 seconds each but image 4 may take 40 seconds because it is more complex.

    


    How can I use ffmpeg to specify timestamp for each image and add audio to the same.

    


    Also note that the sum of timestamps of all images = running time of the audio.

    


    I looked at this question and image2 filter option from the official documentation but no luck in producing such a video

    


  • swresample/rematrix : treat 22.2 as 5.1 (back) when mixing

    1er août 2020, par Jan Ekström
    swresample/rematrix : treat 22.2 as 5.1 (back) when mixing
    

    Only this sub-set of channels actually follows the bit mask order
    in the official 22.2 channel mapping. Additionally, the 5.1 channels
    are there for backwards compatibility with the previous system.

    This enables the utilization of 22.2 content until a proper down/up
    matrix is added into swresample.

    • [DH] libswresample/rematrix.c
  • H264 to jpeg FFMPEG decoding/encoding in C

    2 décembre 2023, par Vikram Kamath

    I'm trying to write a script in C to decode H264 frames and then encode them to jpeg/png format, frame-by-frame.

    


    I'm going off of the tutorials given in the official decoder and encoder examples, but with a decoder type of AV_CODEC_ID_H264 and an encoder type AV_CODEC_ID_MJPEG, the files I am saving seem to be unreadable. Am I using the incorrect codecs ?