Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (10)

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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (3173)

  • Convert video to hequirect while setting the background black and blur the transitional area [closed]

    11 février 2024, par Zurechtweiser

    I am using

    


    ffmpeg -i input.mp4 -vf "v360=input=fisheye:ih_fov=122.6:iv_fov=94.4:output=hequirect:h_fov=180:v_fov=180:in_stereo=2d:out_stereo=sbs,format=yuv420p" -b:v 25M -maxrate 60M -bufsize 25M output.mp4


    


    Which works as advertised to convert a fisheye to hequirect except for two problems :

    


      

    1. The background is not black but seems to try and set it to the average color of the video. It should be black throughout.

      


    2. 


    3. The corners are not blurred but should be, there should be a soft transition from the corner of the video into black.

      


    4. 


    


  • FFMPEG Replacing black color fragments with alpha channel transperency

    31 décembre 2017, par kostya572

    I have "file.mov" video. It has a lot of blank black color fragments that have different durations.

    I need to replace black color fragments that durates more than 5 seconds with transparency ? Is that possible to add some alpha channel for that purpose ?

  • Generete one second of black video and relative silence audio

    26 janvier 2020, par Massimo Vantaggio

    How can I generate a black mp4 video with relative silent audio track with ffmpeg, I need the audio and video tracks to correspond to the duration of 1 second

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=24/1 -c:v h264 -f lavfi -i anullsrc=cl=stereo:r=44100 -video_track_timescale 90k -c:a mp3 -b:a 320k -ar 44100 -ac 2 -t 3 out.mp4

    VIDEO FORMAT CONTAINER DURATION : 3.026000

    VIDEO STREAM DURATION : 3.000000

    how can i match these durations ?

    Thanks a lot !