Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (72)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • Add custom time to video frames using ffmpeg [migrated]

    16 janvier 2014, par Marco

    I am using ffmpeg to encode raw pixels data (bgr32) into a video file.
    Pixels data is being sent from java application to ffmpeg stdin pipe.

    I am looking for a way to add a timestamp overlay to each frame in the encoded fideo file.
    It looks like there is a way to add a timestamp of current time.
    The instructions could be found here : http://einar.slaskete.net/2011/09/05/adding-time-stamp-overlay-to-video-stream-using-ffmpeg/

    Video files that I am encoding were captured few days ago and I need to add a custom time to each frame. For example 12/12/2013 11:11:45 and not the current time.

    Is it possible to do something like it using ffmpeg ?

    Thank you for your help.

  • lavfi/libplacebo : properly handle EOF

    21 mai 2023, par Niklas Haas
    lavfi/libplacebo : properly handle EOF
    

    The current code relied on pl_queue eventually returning EOF back to the
    caller, which didn't work in all situations (e.g. single frame input).
    Also, the current code assumed that ff_inlink_acknowledge_status only
    fired once, which was patently not true, as the above edge cases
    demonstrated.

    Solve both issues by keeping track of the acknowledged link status and
    forwarding it (instead of trying to probe the pl_queue again) in the
    event that we run out of queued input frames, as well as (in CFR mode)
    when we pass the indicated status PTS.

    • [DH] libavfilter/vf_libplacebo.c
  • libavformat/subfile : Fix SEEK_CUR and SEEK_END seeking

    15 juillet 2019, par Andreas Rheinhardt
    libavformat/subfile : Fix SEEK_CUR and SEEK_END seeking
    

    Up until now, when performing a SEEK_END seek, the subfile protocol
    ignored the desired position (relative to EOF) and used the current
    absolute offset in the input file instead.

    And when performing a SEEK_CUR seek, the current position has been
    ignored.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/subfile.c