Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (112)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Revision bcbd3c8fa2 : Arrange 1D forward transform order in vp9_dct.c Remove the redundant function d

    21 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_dct.c



    Arrange 1D forward transform order in vp9_dct.c

    Remove the redundant function declarations therein.

    Change-Id : I27731fb70bb1abce63da761a5812f518c62f590f

  • Revision d6667dd54f : scan order table lookup same for encoder and decoder Change-Id : I473947b5ca70b

    20 novembre 2013, par Jim Bankoski

    Changed Paths :
     Modify /vp9/common/vp9_entropy.h


     Modify /vp9/decoder/vp9_detokenize.c



    scan order table lookup same for encoder and decoder

    Change-Id : I473947b5ca70b7a81151926284bff86f8555492a

  • PHP Sort Order Process Codeiginiter

    5 août 2017, par Alan El-nino Malmsteen

    i use php codeigniter to manage video using FFMPEG, but i dont know how to delete original video after convertion successful.

    if(!($_FILES["upload_video"]["type"] == "video/mp4"))
       {
       $prename = $r.'.'.$ext;
       $video = $prename.'.mp4';
       $directory_path  = "/home/templates/videos/".$prename;
       $directory_path_full = "/home/templates/videos/".$prename;
       exec("ffmpeg -i ".$directory_path_full." ".$directory_path.".mp4");

       // Delete original format video
       $this->load->helper("file");
       unlink($directory_path_full);

       }else{
       $video = $r.'.'.$ext;
       }

    When i use "unlink" it work good to delete file, but the video is corrupt (maybe php directly delete it when converting progress)
    So, can you help me to create sort order php process for this case ?