Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (82)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • getting exception Your FFProbe version is too old and does not support `-help` option [closed]

    4 mai 2021, par Sameer Shaikh

    I installed ffmpeg by doing sudo apt-get install ffmpeg

    



    From a terminal, when I run /usr/bin/ffprobe -help it runs properly, but it is not running from my package. Instead I get the exception in the title : Your FFProbe version is too old and soes not support '-help'

    



    I am using laravel and i have installed this package https://github.com/PHP-FFMpeg/PHP-FFMpeg

    



    Where am i going wrong ?

    


  • On the server running Ubuntu 14.04 to make slideshow of images with different types of transitions ? [on hold]

    16 mars 2017, par user3593350

    Good day !

    You want to make a slideshow on the server from a set of images. I did it with ffmpeg, is it possible to make video from set of images, you can do fade in/out effect to fade in/out images. But what if you want to make several types of transitions. The Internet is full of sites that make slideshow with different transitions, some tool must be.

    Nothing normal I did not find who can faced similar problems and can suggest what tools to use ?
    While there is the idea to find the editor, where a terminal will be glued two pictures, like draw one picture over another in the scale of 50%, then 51%, etc. thereby creating frames for a transition, then using ffmpeg to combine them into a video and get video with the transition.

  • Converting mp4 AAC to AVC using Python

    12 janvier 2020, par zion.b.

    i am using ffmpeg to convert video format. I have a video in mp4 aac and want to convert it to mp4 avc. I successfully(!!!) used ffmpeg to covert image to avi/mkv/even copy of the mp4 but nothing gives me what i desire.

    The idea is to have a video file format that will run on mostly all mobile devices such as mp4 avc.

    My python code :

    import subprocess #need to install ffmpegin terminal/cmd

    def convert_video(video_input, video_output):
       cmds = ['ffmpeg', '-i', video_input, video_output]
       subprocess.Popen(cmds)


    convert_video("videoName.mp4", "videoNameCopy.mp4")