Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (35)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (8226)

  • rawdec : work with refcounted frames.

    9 mars 2013, par Nicolas George

    rawdec : work with refcounted frames.

  • CommonJS fixes. Now confirmed to work with Browserify. Thanks @luis-almeida

    5 janvier 2015, par blueimp
    CommonJS fixes. Now confirmed to work with Browserify. Thanks @luis-almeida
  • Don't work some keys of coding in FFmpeg

    17 décembre 2015, par Plush
    <?
       // $videoPath — path to the video file
       // $newVideoPath — path of the resultant video file

       exec('/usr/bin/ffmpeg -i ' . $videoPath . ' -vcodec libx264 -profile high -level 3.1 -s 1280x720 -sar 1:1 -aspect 16:9 -b:v 3800K -dct8x8 1 -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -refs 5 -fast-pskip 0 -subq 9 -me_method full -me_range 32 -mbd rd -flags +mv4+qpel -g 40 -keyint_min 4 -bf 2 -direct-pred 1 -b_strategy 2 -b-pyramid 1 -weightb 1 -weightp 2 -coder 1 -qmin 0 -qdiff 1 -acodec libfaac -ac 2 -ar 48000 -ab 192K ' . $newVideoPath);

    I defined keys which don’t work :
    - dct8x8 1 - partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 (coding of video doesn’t work)
    - me_method full (the video file is coded, but it isn’t started in a player)
    FFmpeg version : 1.2.6

    How to involve an adaptive method of transformations 8x8 in an I-shot and to set a method of an assessment of the movement of full pixel as full ?