Recherche avancée

Médias (91)

Autres articles (54)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (7034)

  • FFMPEG how to split avi to multi parts [on hold]

    1er juin 2014, par user3695970

    am running ffmpeg.exe from windows xp i want to know is there a command i can cut .avi movie file into several parts without a setting start and end time.

    1 : is it possible to set a value of MB for example slick every 40mb till it reaches end of movie file

    2 : is it possible to cut movie in to several parts by 10minutes or custom value time.

    please guys you people have alot of experience in this field i seek help please anybody thanks.

    ffmpeg -i largefile.mp4 -t 00:50:00 -c copy smallfile1.mp4 -ss 00:50:00 -c copy smallfile2.mp4

    tried this but i need better example a 1 line of command to slice entire movie into parts please

  • Node-webkit : audio/video format accepted

    30 avril 2014, par user3360048

    I want to insert a video in my app running with node-webkit.

    Initially I’ve a .mp4 file, that wasn’t read. I’ve read the exlanation so I open a terminal and check my file :

    file movie.mp4
    > movie.mp4: ISO Media, MPEG v4 system, version 2

    I try to convert video in this way :

    ffmpeg -i movie.mp4 -an -vcodec libx264 -crf 23 movie.mov

    But still in this way didn’t play. So i try again :

    ffmpeg -i movie.mp4 -acodec copy -vcodec libx264 -f mov movie.mov

    In this case my video is been visualized, but with no audio.

    How can I do ?

  • FFmpeg php set image size thumbnail

    3 février 2014, par user3262579
    $movie=new ffmpeg_movie(''.$url.'');
    $duration = $movie->getDuration();
    $uzanti = substr($url , -3);
    $duration = date('i:s',''.$duration.'');
    $framesay = $movie->getFrameCount();
    $framerate = $movie->getFrameRate();
    $framehesap = $thumb * $framerate;
    $md5 = md5($url);
    $frame = $movie->getFrame($framehesap);
    $gd = $frame->toGDImage();
    imagepng($gd,'../thumb/'.$md5.'.png');

    I want to set image size. I'm using ffmpeg as you see. how can I set thumbnail size ? (I want 220x130)