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 (4507)

  • Overlay on full video length when making video from images sequence using ffmpeg

    30 octobre 2019, par Atta

    I am facing a issue when I overlay watermark image on video (I am making video from images sequence).The issue is that the overlay image only append on first image and ignoring all other images in video. I want to overlay this image on whole video. Possibly I am wrongly applying -filter_graph to input stream. I am executing below mentioned script. I searched online but did not find any relevant answer.

    ffmpeg -r 1/5 -i img%2d.jpeg -i watermark.png -i music.mp3 -filter_complex "[0:v][1:v] overlay=x=10:y=10" video.mp4
  • Any working example recording a (e.g. rtsp) stream to a local MP4 file with ffmpeg/libav ?

    15 novembre 2017, par ggs

    I’m looking for a working and not-out-dated script how to record an e.g. rtsp input stream to a local file (mp4) with ffmpeg/libav. If you could point me to one or post one, many thanks in advance. I’m searching for many hours and I haven’t got any experience with this topic.

    A lot of examples, libs, etc. are outdated, but I want to use ffmpeg >= v3.3.

    Any special things I have to consider (when compiling ffmpeg, or when saving local file to iOS device) ?

  • ffmpeg freezes when making a video of 2-3 MB from captured images

    17 juillet 2019, par as04

    I am using the following command in my python script to make a video from a set of images :

    os.system("ffmpeg -framerate 4 -i {0}/img%03d.jpg -c:v libx264 -profile:v high -r 10 -pix_fmt yuv420p {1}/{2}.mp4".format(dir_name, dir_name, name))

    It works fine when creating videos in KB. But ffmpeg freezes for videos of few MB and my raspberry restarts too.
    Also am not very fluent in this tool, so do not understand the parameters well. Please help me with it.