Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (9313)

  • NGINX RTMP Server - Continuity replacement of track

    6 janvier 2023, par sweetngx

    I broadcast my video archive as live streaming with FFMpeg or similar applications. But since there are multiple videos, ffmpeg reconnects with the rtmp server in each new track, and while watching the live stream, the connection naturally terminates in each video transition and I continue watching by reconnecting to rtmp. What I want to do is that when ffmpeg switches to each new track, the rtmp server does not terminate my connection and continues the new video stream without interruption, that is, in flow changes, the rtmp server can wait for the new flow for a while and continue where it left off. I actually tried to do this using wait_video but it is not efficient and stable enough. How do you think I can solve this problem ? Should I solve it on the FFMpeg side or should I solve it on the Rtmp Server side ? All my videos have the same resolution and codec properties

    


  • avfilter/vf_drawtext : use replacement chars for invalid UTF8 sequences

    29 janvier 2020, par Marton Balint
    avfilter/vf_drawtext : use replacement chars for invalid UTF8 sequences
    

    continue is explicitly disallowed for GET_UTF8, so let's fix that as well.
    Fixes crash with invalid UTF8 sequences.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/vf_drawtext.c
  • What is the replacement for AVStream::codec and avcodec_decode_audio4 in FFMPEG 3 and above ?

    15 janvier 2019, par Manish Madugula

    I am a complete beginner to FFMPEG and audio decoding. I want to read any kind of audio file and convert it into raw audio data. The code that I was using works fine on FFMPEG 2.8 but in 3 and above it shows the following error.

    AVstream::codec and avcodec_decode_audio was declared depreciated.

    I have no option of using 2.8 as I couldn’t find FFMPEG 2.8 binaries for windows anywhere in web.
    I want to know how to call the following functions in the later versions.

    AVCodecContext* codec = stream->codec
    format->streams[i]->codec->codec-type == AVMEDIA_TYPE_AUDIO
    avcodec_decode_audio4(codec,frame,&amp;gotFrame,&amp;packet)

    I am using code from the following site -
    https://rodic.fr/blog/libavcodec-tutorial-decode-audio-file/