Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (109)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (30904)

  • How to generate multi rate mpeg-dash stream by ffmpeg

    11 mars 2020, par pesehr

    I want to create dash stream with multi-bitrate and serve it.
    I also want to use the quality selector of dash.js player.
    like the picture :

    dash.js player quality selector
    what flags and configuration I need for generating .mpd file ?

  • Is it possible to encrypt mpeg-dash clear content in ffmpeg ?

    22 novembre 2017, par diS

    Is it possible to encrypt mpeg-dash clear content in ffmpeg ? or do we need to additional code to handle the encryption ?

    From ffmpeg dashenc.c code it appears that dash code does not encrypt the content.
    Can we reuse the mp4 muxer for encrypting and dash for segmenting ?

  • Create one mpeg-dash segment

    19 février 2018, par Yuriy Pryyma

    I have video encoded in mpeg-dash(*.mpd, init segments, video segments)
    Task is to replace one of video segments with segment generated by me. And so video is still can be played.

    I read properties of one segment(combining init segment and video segment) using

    avformat_open_input
    avformat_find_stream_info

    1) I have tried to use dash muxer to generate new segment.

    avformat_alloc_output_context2(&avFormatContext, NULL, "dash", filename)

    But the problem is it creates mpd manifest, and other segments. So how to force it to create one segment ?

    2) When I parsed segment I noticed that it had format "QuickTime / MOV".

    avformat_alloc_output_context2(&avFormatContext, NULL, "mov", filename);

    So my another idea was to use "mov" encoder. And set properties same as in initial segment(start time, duration, resolution).
    But here the question is how to remove init header ? Because I already have init segment.

    Are there any other approaches to generate one mpeg-dash segment and how to solve my problems ?