Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (94)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (6576)

  • FFMPEG - is there a scenecut or scene detection option when encoding with webm VP8/VP9 like mp4 H264/H265 ?

    9 octobre 2023, par Mich_Lloid

    With mp4 I can accurately set I-frames at scene changes with :

    ffmpeg.exe -i input.avi -x264opts min-keyint=5:scenecut=90 -pix_fmt yuv420p output.mp4

    where scenecut option between 0 and ??? (I don't know upper limit) determines whether I-frames should be placed at scene changes.

    Is there a similar method for webm VP8/VP9 ?

    


  • Ffmpeg scene overlay not working as intended

    3 avril 2020, par Bertgram

    I simply want to use scene detection on a video, retrieve thumbnails, tile them and overlay them over a solid background. However the tiled thumbnails are not showing up. The solid background shows blank.

    



    Here is my code :

    



    ffmpeg -f lavfi -i color=c=red:s=640x480:d=0.5 -ss 00:00:10 -i "input.mp4" \
-filter_complex "[1]select='gt(scene\,0.4)', scale=100:100, tile=3x3 [overlay]; \
[0][overlay]overlay=0:100" -frames:v 1 -y output.png


    



    When I change scene detection to select='not(mod(n\,100))' then it is working :

    



    ffmpeg -f lavfi -i color=c=red:s=640x480:d=0.5 -ss 00:00:10 -i "input.mp4" \
-filter_complex "[1]select='not(mod(n\,100))', scale=100:100, tile=3x3 [overlay]; \
[0][overlay]overlay=0:100" -frames:v 1 -y output.png


    



    What is wrong with my fist code that select scene statement is not working ?

    


  • FFMPEG : output scene change times in frames

    29 mai 2019, par Mark Raishbrook

    I’m successfully using the -vf select='gte(scene,0.4)',metadata=print:file=shotcuts.txt command to get FFMPEG to detect scene changes and output the results to file. Is it possible to force the pts field to be in frames rather than the default, which seems to vary depending on the video format (e.g. frames for AVI files, nanosecs for MOV/MP4) ?

    Processing an AVI file, for example, outputs time stamps in frames :

    frame 0 pts 151
    frame 1 pts 206

    Whereas an MP4 file outputs as media time :

    frame 0 pts 540000
    frame 1 pts 738000