Recherche avancée

Médias (91)

Autres articles (83)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5761)

  • libavcodec/exr : Fix blank output when data window != display window

    3 janvier 2017, par Kevin Wheatley
    libavcodec/exr : Fix blank output when data window != display window
    

    looks like there is a bug in commit
    1a08758e7c4e14a9ea8d2fef6c33ad411b2d3c40 relating to the handling of
    ptr in decode_frame after decode_block is called, before this commit
    ptr would have been incremented for each line in the data window, now
    after the commit it is left at the start of the first included line
    rather than the line after the data window then the code sets the
    remaining lines to 0 and thus the whole image is over written.

    Fix by adjusting ptr to the correct line after decode_block returns

    Signed-off-by : Kevin Wheatley <kevin.j.wheatley@gmail.com>

    • [DH] libavcodec/exr.c
  • ffmpeg batch script that combines multiple audio clips with one image > mp4

    2 mars 2016, par Jamie

    I found this script in another thread and edited it to make this :

    @echo off
    for %%F in (*.jpg) do (
      if exist "%%~nF.mp3" (
         ffmpeg -loop 1 -i "%%~nF.jpg" -i "%%~nF.mp3" -acodec libvo_aacenc -vcodec mpeg4 -shortest "%%~nF.mp4"
      )
    )

    It combines all mp3 files with all jpeg files that share the same filename into a mp4 video with the static image running.

    But the problem is - if I want to convert more than one mp3 file using the same image (let’s say three mp3s), I have to duplicate the same jpeg image three times !

    For example, if I have three Michael Jackson mp3 files :

    MJ1.mp3
    MJ2.mp3
    MJ3.mp3

    I would need to create :

    MJ1.jpg
    MJ2.jpg
    MJ3.jpg

    But really I only need one image for all three mp3s.

    What edits do I need to make to the script combine all mp3s with one jpeg file ? Let’s say I wanted every mp3 file in the folder to convert with default.jpg. How would I do this ?

  • avcodec/utils : Simplify a condition that combines HAVE_NEON and ARCH_ARM

    20 août 2013, par Diego Biurrun
    avcodec/utils : Simplify a condition that combines HAVE_NEON and ARCH_ARM
    
    • [DH] libavcodec/utils.c