Recherche avancée

Médias (91)

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.

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

  • FFMPEG works from command line but not PHP

    23 janvier 2015, par nbs189

    I have a strange situation that has just happend. FFMPEG is no longer executing from PHP but will from the command line.

    Here is exactly what the command is :

    ffmpeg -i ../../uploads/ee78d5deb564901626067cc0008456ed.mp3 -ab 96k -y ../../uploads/mp3/ee78d5deb564901626067cc0008456ed_6203688.mp3

    How it is executed in the PHP script :

    if(! exec("ffmpeg -i ".$target_path."".$hash_filename.".".$path_extension." -ab 96k -y ".$target_path."mp3/".$hash_filename."_".$session_ID.".mp3")){
       echo 'ffmpeg failed';
    }

    This command did work but not longer does. I have recently updated plesk but I highly doubt that has affected this. The only thing that I think could affect it that I have recently done is have the file upload go to a subdomain. So the directory where the file is located and stored in the command is in a directory outside the document root. However, the move_uploaded_file function works and I have altered the open_basedir in PHP ini to the webspace root.

  • fftools/ffmpeg : move stream-dependent starttime correction to transcode_init()

    9 août 2022, par Anton Khirnov
    fftools/ffmpeg : move stream-dependent starttime correction to transcode_init()
    

    Currently this code is located in the discontinuity handling block,
    where it does not belong.

    • [DH] fftools/ffmpeg.c
  • Silence h264 decoding warnings when called from OpenCV in Python

    26 juillet 2018, par Raubtaube

    I have the following script with which I read RTSP streams from withing Python3 using OpenCV.

    cap = cv2.VideoCapture(ID)
    ret, frame = cap.read()

    The streams are encoded using h264 and I get tons of warnings and error messages.

    [h264 @ 0x7f74cc430c80] co located POCs unavailable
    [h264 @ 0x7f74b4258160] error while decoding MB 38 2, bytestream -19

    I tried to silence them using a context manager for redirecting stdout and stderr but with no success :

    class SilenceOutput(object):
       def __enter__(self):
           self._original_stdout = sys.stdout
           self._original_stderr = sys.stderr
           sys.stdout = None
           sys.stderr = None

       def __exit__(self, exc_type, exc_val, exc_tb):
           sys.stdout = self._original_stdout
           sys.stderr = self._original_stderr