Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (8512)

  • How to autoplay mobile web video iOS (see demo)

    22 septembre 2016, par neaumusic

    Is there any library that sequences images and audio playback ? I’m guessing that’s the only way this could work..

    Which picture formats would work best ? I’m guessing that pictures wouldn’t be as compressed as a video, but this example loads instantly for me :

    Demo : Autoplay Inline Video iOS

    Planning to just convert the video with ffmpeg. Any knowledge and advice would be great before I get started. Thanks

  • Timelapse (1/6 fps) from slo-mo (240 fps) with ffmpeg

    4 avril 2022, par baskak

    I recorded slo-mo video on an iPhone SE (2) by mistake instead of timelapse.

    


    I know there's a lot of answers to this question here, but I'm trying again and again and always something's wrong (like a video that has a correct total no. of frames, but lasts 3 hours and is basically a freeze :D )
My recent command was

    


    


    ffmpeg -i IMG_2174.MOV -vf framestep=1440,setpts=N/120/TB -c:v libx264
-preset slow -crf 22 -an -r 30 IMG_2174.timelapse.MOV

    


    


    but it resulted in a one-second-long video, so way over-timelapsed. Should be several seconds IINM. The source video is 30 minutes long @240fps, 17GB.
Thx.

    


  • Maintain aspect ratio when converting video ? - ffmpeg

    27 décembre 2011, par RadiantHex

    I'm trying to convert movies from .avi to an iphone readable format
    wherever I look, people suggest the following options for ffmpeg

    ffmpeg -s 320x240 -aspect 320:240 [...]

    This does not bode well for videos with a different aspect ratio !


    How can I keep the aspect ratio from changing ? Is there a way to set the size dynamically ?

    e.g. have the height to be 240 and the width variable ?