Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (109)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13705)

  • Send seek command to running ffmpeg instance

    12 mai 2022, par Mike Versteeg

    I have created a video player using the ffmpeg libraries, but want to know if the same is possible using ffmpeg.exe and piping, specifically the seeking part. Is it possible to send seek command to a running ffmpeg.exe instance ? Such a command is not present in the help but it does show the 'c' command which can be used to send commands to filters. I cannot find any further documentation however on how to address filters this way, all examples assuming command line parameters, nor if a filter can be used to seek in video.

    


  • lavf/mp3enc : fix ID3v1 year metadata setting issue

    20 avril 2020, par Jun Zhao
    lavf/mp3enc : fix ID3v1 year metadata setting issue
    

    Follow the http://id3.org/ID3v1, setting the year metadata
    for ID3v1.

    fix #8623

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/mp3enc.c
  • mov : Change DTS-based seek into CTS-based seek.

    27 janvier 2015, par Yusuke Nakamura
    mov : Change DTS-based seek into CTS-based seek.
    

    CTS-based seek is reasonable since player requests frames in output order
    not coded order.

    This change fixes seek to a keyframe within consecutive keyframes.
    Let’s say P0 and P1, here x and y inside x are PTS and DTS
    respectively, and both two frames are a keyframe. If you try to seek on
    PTS=0, i.e. P0, you’ll get P1 if the demuxer is DTS based. This
    is obviously undesirable.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mov.c