Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (73)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9198)

  • avfilter/formats : do not allow unknown layouts in ff_parse_channel_layout if nret...

    26 décembre 2016, par Marton Balint
    avfilter/formats : do not allow unknown layouts in ff_parse_channel_layout if nret is not set
    

    Current code returned the number of channels as channel layout in that case,
    and if nret is not set then unknown layouts are typically not supported.

    Also use the common parsing code. Use a temporary workaround to parse an
    unknown channel layout such as ’13c’, after a 1 year grace period only ’13C’
    will work.

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

    • [DH] libavfilter/formats.c
    • [DH] libavfilter/tests/formats.c
    • [DH] tests/ref/fate/filter-formats
  • avcodec : remove ABI portion of the side data merging API

    22 octobre 2017, par James Almer
    avcodec : remove ABI portion of the side data merging API
    

    The actual API is left in place until the deprecation period ends.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/avpacket.c
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/internal.h
    • [DH] libavcodec/version.h
  • How to set normal speed of playback after capturing and transcoding stream video by `ffmpeg_streaming` in Python project ?

    30 avril 2020, par Harley Club

    Using ffmpeg_streaming module in Python project with Flask, I try to set up video streaming from online camera into local file. My purpose is receiving input stream that comes as HLS-compatible data. To implement this property, I've inserted some code accessible by this link :

    &#xA;&#xA;

    import ffmpeg_streaming&#xA;from ffmpeg_streaming import Formats, Bitrate, Representation, Size&#xA;&#xA;from flask import render_template, Flask, send_from_directory, abort, json, Response  &#xA;&#xA;import sys&#xA;&#xA;app = Flask(__name__)&#xA;&#xA;video = ffmpeg_streaming.input(&#x27;http://wmccpinetop.axiscam.net/mjpg/video.mjpg&#x27;)&#xA;&#xA;_480p = Representation(Size(854, 480), Bitrate(750 * 1024, 192 * 1024))&#xA;hls_stream = video.hls(Formats.h264(), hls_list_size = 10, hls_time = 5)&#xA;hls_stream.representations(_480p)&#xA;hls_stream.output(&#x27;/var/media/hls_outputs.m3u8&#x27;)&#xA;

    &#xA;&#xA;

    It works as expected, i.e. video stream gets written into local file, then I can see what camera shot somewhere far from there...But an only problem arises here which I can't manage : once playback starts, the video is being displayed utterly fast. Nearly 2 minutes period covered by camera (I can see how long real time was over due to camera-embedded timer option) has duration of 5 seconds when playing back. So, how do I want to enable video speed just as it fits into real-world timing ? My OS is Ubuntu 18.04 LTS and I open file with preinstalled Videos app to watch content.

    &#xA;