Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (11680)

  • swscale/arm/yuv2rgb : make the code bitexact with its aarch64 counter part

    28 mars 2016, par Matthieu Bouron
    swscale/arm/yuv2rgb : make the code bitexact with its aarch64 counter part
    
    • [DH] libswscale/arm/swscale_unscaled.c
    • [DH] libswscale/arm/yuv2rgb_neon.S
  • Remove specific part from multiple videos using ffmpeg

    28 avril 2022, par che10

    I am new to ffmpeg and I am trying to cut the first 20 seconds of each video in a folder. So the output videos will be without the first 20 seconds. I know how to do it for 1 video but how to do it in a batch for multiple videos ? I am using windows 10. Thanks in advance !

    


    what I am using for 1 video file is :
ffmpeg -i "filename.mkv" -ss 00:00:20 output.mkv

    


  • C# extract frames from part of a video file

    2 juin 2016, par SiriusNik

    Using AForge ffmpeg wrapper you can extract frames from a video using the VideoFileReader class and save it as a bitmap.

    See this for the exemple :
    Extracting frames of a .avi file

    My problem with that is that you cannot specified where to start reading the frames. It always starts from the beginning of the video file.

    But what if i wanted to extract frames that are in the middle of a two hours long video file. Using that class you’d have to parse the whole first hour juste to get to those frames.

    Does anyone know a way to achieve that ?