Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (106)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (11271)

  • Running ffmpeg in Terminal Linux

    4 novembre 2014, par ZafarYousafi

    I’ve downloaded and unzipped ffmpeg at custom directory in my Ubuntu linux. Now I want to run this ffmpeg using terminal like I run on windows using command prompt. But everytime it says "ffmpeg : command not found". My question is how can I run ffmpeg using terminal through extracted libraries

    thanks

  • avutil : add ROI (Region Of Interest) data struct and bump version

    10 janvier 2019, par Guo, Yejun
    avutil : add ROI (Region Of Interest) data struct and bump version
    

    The encoders such as libx264 support different QPs offset for different MBs,
    it makes possible for ROI-based encoding. It makes sense to add support
    within ffmpeg to generate/accept ROI infos and pass into encoders.

    Typical usage : After AVFrame is decoded, a ffmpeg filter or user's code
    generates ROI info for that frame, and the encoder finally does the
    ROI-based encoding.

    The ROI info is maintained as side data of AVFrame.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/frame.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
  • FFMPEG Transcode so that I can view from iPhone Safari

    16 juillet 2013, par Tom

    I've been searching all day for a way to transcode files that are being uploaded to something that iPhone's can handle (in Safari) without any success. I've read that it's best to use Quicktime for iPhone with the h.264 codec but I am struggling to find either the correct dependencies or the correct syntax for this. I have already managed to convert to mp4 and webm .

    Mp4 :

    &#39;ffmpeg -i &#39;.$input.&#39; -strict experimental -s 1024x760 -ab 128k -vcodec libx264 -mbd 2 -flags +mv4+aic -trellis 2 -cmp 2 -subcmp -2 &#39;.$filepath.&#39;/&#39;.$filename.&#39;.mp4&#39;

    Webm

    &#39;ffmpeg -i &#39;.$input.&#39; -b 600 -s 1024x760 -ab 128k -vcodec libvpx -ab 128k -acodec libvorbis &#39;.$filepath.&#39;/&#39;.$filenamewithoutext.&#39;.webm&#39;

    Anyone know how to get these videos available for Safari (on iPhone/Pad) ?