Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (97)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10015)

  • Script to make movie from images

    6 décembre 2014, par Alex TheWebGroup

    Hello I want a script or a way to make a video from images. I have a folder with a lot of pictures named randomly like "flowers.jpg", "tree.jpg", etc.

    I also have an "intro.jpg" photo which I want to add at the start of every video.

    What I want exactly is to create a video (any format, .avi etc) for a custom duration with only two photos like this :
    intro.jpg (10-20 seconds or how much i want) + tree.jpg (1 hour or how much i want)
    intro.jpg + flowers.jpg
    ...
    and so on.

    Sorry for being a newbie, but I have no clue how to accomplish this.

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