Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (44)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10194)

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