Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (87)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (4212)

  • postproc : fix unaligned access

    23 février 2016, par Carl Eugen Hoyos
    postproc : fix unaligned access
    

    Based on 59074310 by Andreas Cadhalpun.
    Fixes ticket #5259.

    • [DH] libpostproc/postprocess.c
  • Access video stream from Cloud IP Camera

    13 février 2018, par Ferguson

    I have bought a new "cloud IP" camera and I don’t know If I can access video stream over RTSP or some other protocol from local computer ?

    I would like to stream a video over VLC or FFMpeg program.

    The model of camera is : CIPC-GC13H

    enter image description here

    thank you for any info

  • exec() just run when i access target php in browser

    28 septembre 2016, par Mohammad Shojaa

    i use this code to run another php for some work (ffmpeg convert)

       $binpath = get_option('binpath','/usr/bin/php');
       $command = $binpath." -cli -f ".ABSPATH."/videocron.php";
       exec( "$command > /dev/null &", $arrOutput );

    but when i upload a video and run this code don’t convert video for ever.

    but when i access to videocron.php from browser all videos i uploaded convert suddenly !!!

    i use alternative exec function(system(); exec(); passthru(); shell_exec();)
    and i check videocron.php by readable function, it is readable.

    even i change owner videocron.php to nobody user

    in mod_security log i get this error :

    [Tue Sep 20 23:01:11 2016] [error] [client 37.156.10.171] ModSecurity: Multipart parsing error (init): Multipart: Boundary not found in C-T. [hostname "codenevis.net"] [uri "/lib/upload-ffmpeg.php"] [unique_id "V@GAb38AAAEAAGrk2QoAAAAH"]

    but even i unistalll mod_security it don’t work automatically.

    but in all don’t convert video until i access to videocron.php from browser !