Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (113)

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

  • Revision 47e784eab6 : Prevent first pass from outputing invalid info First pass does not produce comp

    17 octobre 2013, par Yaowu Xu

    Changed Paths :
     Modify /vpxenc.c



    Prevent first pass from outputing invalid info

    First pass does not produce compressed data, therefore encode/decode
    match check is not initialized.

    Change-Id : I1971a6747337872a850987cc70ba267bd0f1d564

  • movenc : Add a flag for indicating a discontinuous fragment

    20 novembre 2014, par Martin Storsjö
    movenc : Add a flag for indicating a discontinuous fragment
    

    This allows creating a later mp4 fragment without sequentially
    writing the earlier ones before (when called from a segmenter).

    Normally when writing a fragmented mp4 file sequentially, the
    first timestamps of a fragment are adjusted to match the
    end of the previous fragment, to make sure the timestamp is the
    same, even if it is calculated as the sum of previous fragment
    durations. (And for the first packet in a file, the offset of
    the first packet is written using an edit list.)

    When writing an individual mp4 fragment discontinuously like this
    (with potentially writing the earlier fragments separately later),
    there’s a risk of getting a gap in the timeline if the duration
    field of the last packet in the previous fragment doesn’t match up
    with the start time of the next fragment.

    Using this requires setting -avoid_negative_ts make_non_negative
    (or -avoid_negative_ts 0).

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

    • [DBH] libavformat/movenc.c
    • [DBH] libavformat/movenc.h
  • ffmpeg - ffprobe duration format change

    2 juin 2020, par ilham zacky

    I am using ffmpeg to get some file durations &#xA;Below is my code

    &#xA;&#xA;

    $filename = &#x27;1aef53e6-92ac-4d28-89f8-4cce28fa0f58.mp4&#x27;&#xA;$duration = if ((ffmpeg -i $filename 2>&amp;1 | Out-String) -match &#x27;Duration:\s&#x2B;([\d:.]&#x2B;)&#x27;) { $matches[1] }&#xA;

    &#xA;&#xA;

    Actual output would be like&#xA;H :M :S : F&#xA;00:00:00.00

    &#xA;&#xA;

    I need the output to be like &#xA;00:00:00:00&#xA;Between seconds and frame, there is a " . " full stop, I need it to be a " : "

    &#xA;&#xA;

    any suggestions ?

    &#xA;