Recherche avancée

Médias (91)

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10737)

  • How to record custom videos in Android [on hold]

    27 novembre 2013, par Chirry

    Context :

    Right now I have an App which takes the video from the camera and put some custome bitmaps on the same SurfaceView.

    Question :

    What I'd like is to record a video with the camera view and the custom Bitmaps on it.

    I have heard about AndroidFFmpeg third party codec to record videos, but I don't know how, I mean, is there any function on the AndroidFFmpeg to record videos in Android ?

    Hope you can help me with one this as there is not much information on the internet !

  • Adding cross fade between concatenated videos

    6 novembre 2022, par SyndicatorBBB

    I'm using the following command to concat multiple videos together :

    


    ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -f lavfi -t 0.1 -i anullsrc -filter_complex "[0:v]scale=3840:2160:force_original_aspect_ratio=decrease,pad=3840:2160:-1:-1,setsar=1,fps=30,format=yuv420p[v0]; [1:v]scale=3840:2160:force_original_aspect_ratio=decrease,pad=3840:2160:-1:-1,setsar=1,fps=30,format=yuv420p[v1]; [2:v]scale=3840:2160:force_original_aspect_ratio=decrease,pad=3840:2160:-1:-1,setsar=1,fps=30,format=yuv420p[v2]; [v0][3:a][v1][3:a][v2][3:a]concat=n=3:v=1:a=1[v][a]" -map "[v]" -map "[a]" -c:v libx264 -c:a aac -movflags +faststart output3.mp4


    


    How can I modify my command so that I can include cross fade transition between each video ? Notice I need a constant duration of fade between all the videos, no need special effect between two videos.
Also I don't care about audio, only care about the transitions between videos.

    


    Is there a generic way that I don't need to specify the exact time when to start the next transition ? Like saying between each video do cross fade transition.

    


  • Is it possible to use FFMPEG to generate F4V videos ?

    10 juillet 2012, par James Raber

    I need to generate a script that converts videos to F4V's for use with Flash Media Server 4.5...is this possible ? I have it converting files to MP4s and then swapping the extension. This works fine, but seems like a dirty work around. I'd prefer to use a generate a true F4V. I've heard mixed things on whether or not ffmpeg truly supports F4Vs. Any guidance would be appreciated. Also, is there a doc guide on what file formats are allowed by FFMPEG ?