Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (15685)

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