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

  • In FFmpeg, can -filter_complex do everything that -filter can ? (i.e., is it a direct replacement)

    1er avril 2020, par Robert Salesas

    This may seem like a strange question but... is it possible to do everything -filter can do using only -filter_complex filters ? That is, is there anything that -filter can do, that is not possible with -filter_complex ?

    


  • avfilter_copy_buf_props replacement in ffmpeg 4.2

    24 septembre 2019, par M.Mahdipour

    I have upgraded from an old ffmpeg version to ffmpeg 4.2. In my source code, there is a line like this :

    ret = av_buffersink_get_buffer_ref(pBufferSinkCtx, &pPicref, AV_BUFFERSINK_FLAG_PEEK);

    In the new version, av_buffersink_get_buffer_ref is not available. What is the correct replacement of av_buffersink_get_buffer_ref ? Can I replace it with av_buffersink_get_frame_flags ?

  • I-Frames replacement in MPEG DASH

    7 mars 2019, par Hangil Kang

    We are conducting a research which requires to change only I-Frames in the middle of MPEG DASH service.

    Based on my knowledge, each segment of a full video contains one I frame and related B and P frames. For our research, we want to do something with only I frames and re-encode the frames into the corresponding segment and during the decoding process, we want to do something with the I frames again.

    Any ideas how to do this ?

    I appreciate all comments.