Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (69)

  • 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 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (9202)

  • qt-faststart - stco offset bug fix

    1er juin 2018, par erankor
    qt-faststart - stco offset bug fix
    

    when the last offsets in the stco atom are close to 4GB, the addition of
    the moov atom size can overflow, causing corruption near the end of the
    mp4 file.
    this patch upgrades all stco atoms to co64 when such an edge case is
    detected. in order to accomplish this, the implementation was changed to
    walk the atom tree, instead of searching for the strings 'stco'/'co64'.
    this was required since when an stco atom is changed to co64, its size
    changes, and the sizes of all containing atoms (moov, trak, etc.) have
    to be updated as well.

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

    • [DH] tools/qt-faststart.c
  • vf_scale_vaapi : Crop input surface to active region

    13 septembre 2016, par Mark Thompson
    vf_scale_vaapi : Crop input surface to active region
    

    If the input has been decoded from a stream which uses edge cropping
    then the whole surface need not be valid. This defines an input
    region for the scaler so we only use the active area of the frame.

    • [DBH] libavfilter/vf_scale_vaapi.c
  • MSE Does not show duration when MPEG-DASH segments are created with FFmpeg

    15 mars 2023, par WaveLink

    I am trying to create a system that streams DASH segments to the browser, where it gets decoded by Media Source Extensions. When using MP4Box, the init segment loads the duration into the player, but the version generated by FFmpeg does not.

    &#xA;

    I believe this is due to some sort of header missing from the init segment generated by FFmpeg, but I have not been able to figure it out. Here is the command I use to generate the files :

    &#xA;

    ffmpeg -i .\source.opus -c:a libopus -c:v none -seg_duration 1 -dash_segment_type mp4 -preset ultrafast -use_timeline 1 -use_template 1 -streaming 1 -init_seg_name "segment_init.mp4" -media_seg_name "segment_$Number$.m4s" -fflags &#x2B;genpts -f dash ./out.mpd&#xA;When using MP4Box, this is the config I use :

    &#xA;

    MP4Box -dash 1000 -rap -profile live -segment-name "segment_$Number" .\out.mp4&#xA;In both cases, the audio does play, and both of them contain similar headers, but the FFmpeg version just does not contain the media duration in the init segment, or at least the MSE implementation cannot read it.

    &#xA;

    I tested this in Chrome, Firefox, and Edge, and all of them behave the same.

    &#xA;

    Thanks for any help.

    &#xA;