Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (37)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6217)

  • Merge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’

    28 novembre 2013, par Michael Niedermayer
    Merge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’
    

    * commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’ :
    h264_refs : make sure not to write over the bounds of the default ref list

    Conflicts :
    libavcodec/h264_refs.c

    This condition should be impossible and was checked for by asserts.
    the asserts are moved up in this merge to gurantee that no out of array
    access can happen even if the state is "impossible".
    Also if such impossible states could somehow be created, that should
    be dealt with and not silently ignored.

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_refs.c
  • Saving stream video on event FFMPEG CCTV RTSP ://

    25 avril 2017, par Josh

    I have a problem that I’m hoping some of the great minds here could help me with.

    I have a CCTV system that provides 4 RTSP streams (one from each camera) that will be covering a short 60 second event (roughly, so I can’t predefine a duration). The issue I have is I need FFMPEG to take clips from the stream triggered from a JSON feed. There are two commands or states, Door Open - Stop Recording and Door Closed - Begin Recording.

    Now getting FFMPEG to start recording on the door close is pretty simple in batch as I’m currently experimenting HOWEVER I can’t seem to find a way to get FFMPEG to start recording and then stop recording on demand. In batch it’s pretty straight forward using Ctrl+C to have FFMPEG commit the recording to file. The question is, how do I get FFMPEG PHP to send a command to an already closed handle to stop the recording and commit to file ?

    Many Thanks,
    Josh

  • FFmpeg - How do i get the extradata required to open the ALAC Codec ?

    2 février 2016, par Sowrinator

    I am wondering how to get the extradata from an ALAC media file using the FFmpeg library without having to manually parse the file ?

    I setup initially with :

    avformat_open_input(&amp;formatContext, pszFileName, 0, 0);
    avformat_find_stream_info(formatContext, NULL);
    av_find_best_stream(formatContext, AVMEDIA_TYPE_AUDIO, -1, -1, &amp;codec, 0);
    codecContext = avcodec_alloc_context3(codec);

    Currently I am able to detect and find the ALAC codec but it fails to open the codec returning AVERROR_INVALIDDATA, which comes from the extradata and extradata_size not being set.

    avcodec_open2(codecContext, codec, NULL);

    The FFmpeg documentation states that some codecs require extradata and extradata_size to be set to the codec’s specifications. But shouldn’t this data be set by avformat_find_stream_info ?