Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (70)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10992)

  • Converting video to a full sized image using all frames

    13 décembre 2014, par sroot

    I was wondering if there is any way to convert a video to an image ?
    Something like a scanner algorithm , something that would basically take all frames and convert it into one big image ?
    I know i can break the video into frames and then stitch them together , I was wondering if there is any faster and more simple solution to achieve the same .
    If it can’t be done can someone think how can I take the video in a "scanner" like mechanism ?

  • Ffmpeg - converting webm movie to flv movie not working

    19 décembre 2014, par Sudhakaran

    I need to convert .webm files to .flv.
    I have used

    'exec("ffmpeg -i 1.webm -acodec libfaac -ab 96k -ac 2 -vcodec libx264 -vpre hq -crf   22 -threads 0 1.flv");'.

    When i use the above code, the file is converting to 1.flv with 0 bytes. No data is in 1.flv file.

  • Create a time-lapse movie by speeding a video up to the time of an audio file

    26 décembre 2014, par Peak Reconstruction Wavelength

    Input

    1. Audio file, mp3, 2 minutes
    2. Video file, mov, 1920 x 1080, 29 fps, 13 minutes

    I want to know which command to use to have a time-lapse movie mov as a result, which is two minutes long while remaining 29 fps, so it speeds up to match the time of 1. and the audio track of 2. is replaced with 1..

    My approach

    ffmpeg.exe" -i "x.MOV" -i "y.mp3" -vcodec copy -async 10 -ab 128k "e.MOV"

    which only puts the audio file to the beginning.