Recherche avancée

Médias (91)

Autres articles (72)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (14984)

  • flutter_ffmpeg - Can we trim a part of the video in flutter while recording

    16 février 2021, par Mayur Agarwal

    I am making a flutter app, in which a user can record a video and pause in between, and when the user pauses the video a clip is formed.
So if the 4 clips are there, then 4th clip can be removed from the video (according to the time of the last clip).
By a clip I just mean the time interval between two continuous pauses. The video is being recorded continuously.
There's a way to trim a video after it's being record, for example,

    


     ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4


    


    But I think it's possible only when the video is recorded.

    


    So, Is there any way to to trim a video (using flutter_ffmpeg) or the last clip, while the recording is paused ?

    


  • How would I make my clips cut by PySceneDetect .03 second longer ? (PySceneDetect)

    12 novembre 2019, par barry b. bensen

    I am cutting clips from a video apart using FFmpeg and PySceneDetect’s detect-content and split-video.
    It spits out the clips from the video in a folder.

    Everything is working, but the clips are ending .03 seconds too early (under a second, not exactly .03). I would either like to make them cut .03 seconds later or add .03 seconds onto the clip’s length to try to include what would have been cut. (whatever way to get that last bit of the clip where it belongs and not on the front of the next clip).

    The ending of the clip that is cut off is being added to the next clip in the folder (the scene that was cut next, from the video).

    I have played around with the sensitivity of the detect-content (what is used to tell if the scene in a video is a new scene or not) and this isn’t affecting the last bit that is cut off of the clips. I think I have to change something in one of these .py’s

    but have not been able to understand them.

    after no progress i gota ask for help

    exmaple :
    https://imgur.com/142DsWB

    The start has video (and sound) from the clip that was cut before it

  • Best way to convert a 59.94fps video to 29.97 ?

    17 novembre 2015, par manatails

    I am tryiing to normalize the clips from multiple cameras for an amateur movie.
    Thinking that 29.97 fps is the best choice for my case but my camcorder only supports recording at 59.94fps or 24fps.

    What is the best way to halve the framerate down to 29.97fps, perhaps skipping every other frame ?
    I usually use ffmpeg for transcoding but I couldn’t find much resource on changing the actual framerate.