Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (99)

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

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

Sur d’autres sites (8202)

  • create animated FFMPEG video

    23 octobre 2015, par Ashish Tondak

    Hi,

    I am having trouble in creating a video with some transition effects on images
    using FFMPEG commands.

    I have used this command to overlay multiple images with a background image and an audio file.

    Working Fine :

    ffmpeg -loop 1 -framerate 1 -i bg2.jpg -framerate 1/5 -i img%03d.jpg -i audio.mp3 -filter_complex overlay=(W-w)/2 :(H-h)/2:shortest=1,format=yuv420p -c:v libx264 -r 30 -c:a aac -strict experimental -b:a 192k -movflags +faststart -shortest bg_audio_images.mp4

    But Now i want to have some effects to be added with this like some animation on images other than moving from left to right.. if i can move upside down or add zoom in effect on each image as they go left to right.

    OR you can share me ideas on how people writing complex commands/using filter complex for animations.

    Thanks a lot..
    S/D Ashish Tondak

  • How to determine which offsets changed in MP4 file after cutting a part of the MP4 file

    16 février 2021, par Muath

    This image displays each offset and the role of that offset in mp4 file.

    


    enter image description here

    


    And this is MP4 file viewed in Hex-Editor :

    


    enter image description here

    


    When cutting (as an example) first 60 seconds of that video or doing any cutting process, How can I know which offsets has been changed ?

    


  • Replace part of a video (without replacing the audio) in ffmpeg [closed]

    13 février 2021, par Real Noob

    I have a video file that is divided into three different sections. I want to replace the middle part of this video with another clip. However, I still want to keep the audio of the original video. Can I do that in ffmpeg ?

    


    Here are my requirements :

    


      

    1. Original Video is 60 seconds long.
    2. 


    3. The part I want to replace is from 25 to 45 seconds.
    4. 


    5. I want to keep the original audio from 25 to 45 seconds and just replace the visual part with some other clip.
    6. 


    7. The generated video will also be 60 seconds long. However, it will have the new video from 25 to 45 seconds.
    8. 


    


    Thanks.