Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (13369)

  • Python creating two PIPE's

    1er novembre 2017, par Rockybilly

    I am accessing an executable file through subprocess, The exe, takes two file inputs like so,

    foo.exe file1.txt file2.txt

    It also accepts pipe’s as inputs, so I give one of the files to the exe through a subprocess.PIPE, which works fine(can test it with a single file), however, because each process has a single stdin, I cannot supply the second file. I could pipe one input, then write, read the other, however both of the input files are generated inside the Python program, I don’t want to decrease the speed of the code by writing to hard disk, rather use some other method to pipe the second file, which is on RAM. How can I achieve this ?

    I am on Windows 10, with Python 3 (if the solution is system dependant).

  • Prevent Slow Motion h264 Playback using FFME (FFMPEG)

    18 août 2020, par maxp

    I've implemented FFME (https://github.com/unosquare/ffmediaelement) in a WPF project I'm working on.

    


    This question may also relate to FFMPEG as this is the underlying package used to decode / playback video.

    


    The problem I'm facing is that when playing a H264 video that is too CPU intensive (high resolution / high framerate) instead of stuttering, the playback speed is reduced, resulting in a 10 second video becoming 15 seconds long (for example), however playback itself remains fairly smooth.

    


    Does anyone know of any arguments I can supply that would prevent this ? (Stuttering is preferable to slow motion).

    


    Thanks

    


  • ffmpeg - extract thumbnail from middle of clip duration

    13 février 2013, par codelove

    Hi I am using the following ffmpeg command to extract a thumbnail from the beginning of a clip with ffmpeg :

    /usr/local/bin/ffmpeg -ss 00:00:1 -i $fileName.flv -s 150x100 -vframes 1 $fileName.jpg

    Is it posible to extract a thumbnail from the middle of the clips duration with ffmpeg alone ?

    Each clip is of a different length.

    If ffmpeg does not supply this option, I know it is possible to get the clips duration into this type of format 00:00:01.26 and then I suppose I can divide it in half, but I am not sure if this is the best approach, and I am also (embarrassed to say) not entirely sure how to divide that format in half with PHP.

    Example code would be appreciated.

    Thank you.