Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (34)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (6216)

  • ffmpeg.so in PHP exec converting and no return

    13 juin 2015, par Tom

    I have seen many threads, but none working ones, so this is my issue :

    I have server installed ffmpeg (ffmpeg-php version 0.7.0, PHP Version 5.4.41) Linux CentOS 6 64bit :

    Using PHP :

    exec('/usr/lib64/php/modules/ffmpeg.so -i test.mp4 testdone.avi',$out,$ret);

    or

    exec('/usr/lib64/php/modules/ffmpeg.so -i /var/www/html/test.mp4 /var/www/html/testdone.avi',$out,$ret);

    or

    exec('/usr/lib64/php/modules/ffmpeg.so -i /var/www/html/test.mp4 /var/www/html/testdone.avi'.' 2>&1',$out,$ret);  

    the ffmpeg is actually found, but always returns : array(0) { } int(11) and with 2>&1 returns array(0) { } int(139) and does not return anything else like testdone.avi in the directory or -version (in the directory). Directories /var/www/html/ are set to 777.

    Thank you, should I hire someone to fix this or am I missing something in PHP.

  • Python creating two PIPE's

    1er novembre 2017, par Rockybilly

    I am accessing an executable file through subprocess, The exe, takes two file inputs like so,

    foo.exe file1.txt file2.txt

    It also accepts pipe’s as inputs, so I give one of the files to the exe through a subprocess.PIPE, which works fine(can test it with a single file), however, because each process has a single stdin, I cannot supply the second file. I could pipe one input, then write, read the other, however both of the input files are generated inside the Python program, I don’t want to decrease the speed of the code by writing to hard disk, rather use some other method to pipe the second file, which is on RAM. How can I achieve this ?

    I am on Windows 10, with Python 3 (if the solution is system dependant).

  • Prevent Slow Motion h264 Playback using FFME (FFMPEG)

    18 août 2020, par maxp

    I've implemented FFME (https://github.com/unosquare/ffmediaelement) in a WPF project I'm working on.

    


    This question may also relate to FFMPEG as this is the underlying package used to decode / playback video.

    


    The problem I'm facing is that when playing a H264 video that is too CPU intensive (high resolution / high framerate) instead of stuttering, the playback speed is reduced, resulting in a 10 second video becoming 15 seconds long (for example), however playback itself remains fairly smooth.

    


    Does anyone know of any arguments I can supply that would prevent this ? (Stuttering is preferable to slow motion).

    


    Thanks