Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (26)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (3586)

  • flac_parser.c : fix case when final frame is a false positive

    28 juin 2013, par Michael Chinen
    flac_parser.c : fix case when final frame is a false positive
    

    Should fix https://ffmpeg.org/trac/ffmpeg/ticket/2552
    Only did minimal testing on a few files and fate.

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

    • [DH] libavcodec/flac_parser.c
  • avcodec/ffv1enc : Slice combination is unsupported

    6 octobre 2023, par Michael Niedermayer
    avcodec/ffv1enc : Slice combination is unsupported
    

    We always write minimal slices, the size calculation is wrong in some
    corner cases but as its always 1x1 (minus1) we can for now just hard-code it

    This helps with ticket 5548

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1enc.c
  • Using Gstreamer server to redirect a h264 source to diferent clients

    1er septembre 2017, par Thadeu Antonio Ferreira Melo

    We currently have a solution using ffmpeg to capture and stream the user desktop (windows) to a FFServer(linux) over the Internet. The server than can redirect the stream to clients on the PC, Android or Web browser. Using UDP or RTPS

    Our goal is to reduce the user latency and keep the bitrate down. For small scale tests are working fine. However, FFserver seems to be abandoned and we are facing some crashes and performance issues.

    It seems GStreamer server is in a better support state by the dev community.

    I have download and compile the gstreamer server 1.8, but the examples are not very clear.

    For the sake o simplicity I would like to have a local server that could receive h264 data stream from ffmpeg in one port of the local host and redirect it to another port.

    What is the minimal, simplest way to make that binding ?