Advanced search

Medias (1)

Tag: - Tags -/artwork

Other articles (96)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    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 February 2011, by

    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.

  • Les tâches Cron régulières de la ferme

    1 December 2010, by

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

On other websites (12485)

  • ffmpeg - create video from images - has no audio in output video

    19 July 2013, by sameer

    1) I have created the few images from my original xyz.mp4 (using ffmpeg)

    2) I am again creating the video from the images but the output.mp4 does not have the audio.

    I use the following command to create the video from images.
    ffmpeg -b:v 850 -r 10 -i out%d.png -s 640X480 -vcodec libx264 -sameq output.mp4

    Kindly let me know the the way for following steps

    1) create images from video (.mp4)

    2) create video(.mp4) from those images ( with audio in output file)

    Thank you.

  • Converting vídeo from vp8 to x264 outputs different video with different length

    25 October 2019, by Thomas Anderson

    I have a webm file (vp8 codec) with 2m:39s of duration

    Using ffmpeg -i video.webm it says that the video have 15fps

    nput #0, matroska,webm, from
    ’video.webm’: Metadata:
    encoder : Lavf54.17.3 Duration: 00:02:39.63, start: 0.000000, bitrate: 417 kb/s
    Stream #0:0: Audio: vorbis, 44100 Hz, stereo, fltp (default)
    Stream #0:1: Video: vp8, yuv420p(progressive), 320x240, SAR 1:1 DAR 4:3, 15 fps, 15 tbr, 1k tbn, 1k tbc (default)

    I tried to convert setting to the same framerate and add to a mp4 container

    $ x264 --output intermediate.264 --fps 15 --preset slow --bitrate 400 --vbv-maxrate 800 --vbv-bufsize 1600 --min-keyint 48 --keyint 48 --scenecut 0 --no-scenecut --pass 1 --video-filter "resize:width=426,height=240" video.webm

    $ MP4Box -add intermediate.264 -fps 15 out.mp4

    But the generated file out.mp4 now have a 2m:57s duration

  • FFMPEG mux video and audio (from another video) - mapping issue

    7 May 2023, by Mark

    I would like to place the audio from a video to another video without an audio (in one command):

    



    ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov


    



    I guess "-map" is the correct way to do it but I got confused with it.

    



    Can you suggest how to resolve it?