Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Evolution #3916 : perf mysql : ne pas surcharger les recherches

    24 décembre 2017, par jluc -

    diff avec commentaire aussi mis à jour (remplacer "mais on cherche quand même l’expression complète, même si elle" par "mais on cherche quand même l’expression complète, si elle")

  • ffmpeg extract keyframes at scene change or at least every n seconds

    17 février 2020, par Laura

    I’m trying to extract key frames from an mp4 video file using ffmpeg. I need to extract a keyframe when a scene change is detected and, if no scene change is detecetd for ’n’ seconds a I need to extract a frame as well.

    I was able to extract scenes change (plus the first frame) using the following parameters :

    -vf scale='iw/8:ih/8' -deinterlace -ss 00:00:00.000 -vframes 1 $$UNIQUE_FILE_NAME$$_000.jpg -deinterlace -vf select='gt(scene\,0.4),scale=iw/8:ih/8',showinfo,metadata=print:file=frames-timestamps.txt -vsync vfr -frame_pts 1 $$UNIQUE_FILE_NAME$$_%d.jpg.

    I know how to extract periodic keyframes (https://www.bogotobogo.com/FFMpeg/ffmpeg_thumbnails_select_scene_iframe.php)

    ffmpeg -i yosemiteA.mp4 -f image2 -vf fps=fps=1/10 ythumb%3d.png

    Can anyone help me writing a unique command line that merges the two behaviours ?

    Thanks,
    Laura

  • How to change audio tempo and pitch individuality using ffmpeg ?

    25 août 2023, par Vipul Purohit

    I have managed to play audio files using ffmpeg and AudioTrack class in my android project. I can change the speed of audio using AudioTrack class setRate method. But it also change the pitch of audio, I want to change only Tempo of audio but I found no solution on net.

    



    anyone can please help me on this as there is no support for this.