Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (47)

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

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

Sur d’autres sites (5487)

  • How to use ffmpeg with h.265 (or h.264) coded ?

    8 mai 2015, par randomuser1

    Normally I start recording the camera image with the command :

    ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4

    but I’m not sure which coded do I use in here (I’m just beginning my adventure with ffmpeg), however I found on this webpage this command :

    ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov

    But when I run it - I get the following error :
    INPUT: No such file or directory"

    I changed the INPUT word above also to 0, so the command is

    ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov,
    but error stays similar (0: no such file or directory).
    How can I grab the camera image and save it to a file while using the H.265 ?

  • Using FFMPEG : How to do a Scene Change Detection ? with timecode ?

    24 novembre 2016, par Mozart

    Based on this article it seems that it is possible to use FFMPEG to detect scene change in videos :
    http://www.luckydinosaur.com/u/ffmpeg-scene-change-detector

    Now I have a video that displays a book text and when the text (word or sentence) is spoken it gets highlighted.
    Something like this audio book : https://youtu.be/lA7L6ZNVKjc

    I need to know the timestamp when the text gets highlighted (hence scene change), this will allow me to add timestamp tags on my youtube video, so it becomes easier for listeners to navigate through the audiobook.

    What is the magic command line that would do this ?

    Thank you very much !

  • avcodec/mlpenc : Avoid redundant temporary PutBitContext

    25 mars 2021, par Andreas Rheinhardt
    avcodec/mlpenc : Avoid redundant temporary PutBitContext
    

    We are already word-aligned here, so one can just as well flush the main
    PutBitContext.

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

    • [DH] libavcodec/mlpenc.c