Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (55)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4471)

  • Have some problem when merging two video files with ffmpeg and xfade filter [closed]

    12 septembre 2023, par song jin

    ffmpeg -i img_1.mp4 -i img_2.mp4 -i img_3.mp4 -i img_4.mp4 -i img_5.mp4 -filter_complex "[0:v]xfade=transition=wiperight:duration=1:offset=4[v0];[1:v]xfade=transition=wiperight:duration=1:offset=8[v1];[2:v]xfade=transition=wiperight:duration=1:offset=1[v2];[3:v]xfade=transition=wiperight:duration=1:offset=1[v3];[v0][v1][v2][v3]concat=n=4:v=1:a=0,format=yuv420p[v]" -map "[v]" -y -s 1920*1080 concat.mp4
I was using this command to merging multiple videos, and then the following problem occurred:

    


    Stream mapping:Stream #0:0 (h264) -> xfade
Stream #1:0 (h264) -> xfade
Stream #1:0 (h264) -> xfade
Stream #2:0 (h264) -> xfade
Stream #2:0 (h264) -> xfade
Stream #3:0 (h264) -> xfade
Stream #3:0 (h264) -> xfade
Stream #4:0 (h264) -> xfade
format:default -> Stream #0:0 (libx264)


    


    As a result, there will be multiple input streams in the video.
How can I solve it ?
I hope have only one input per video stream
I want to have only one input per video stream

    


  • concatenate non-stream subtitles problem ? [closed]

    6 mai 2022, par Norman Rogers

    Concatenated a series of videos into one using ffmpeg, but they each have detached (non-stream) subtitles.
To concatenate these I tried Subtitle Edit's join subtitle tool but since the subrip files don't keep a record of its host video's end time, it results in incrementing delay.
Don't want to burn the subtitles or necessarily embed it into a stream.
think it should be like

    


      

    1. retrieve end time of each vid
    2. 


    3. append tiny placeholder sub at end of each subtitle that ends at vid's end time
    4. 


    5. use subtitle edit's join tool
    6. 


    


  • Pydub does not work sometimes (ffmpeg problem)

    17 juillet 2022, par randomguy

    I'm making a program for macOS that uses pydub and therefore ffmpeg (ffmpeg was installed by copying ffmpeg and ffprobe to /usr/local/bin).

    


    When I run my program through the terminal (python3 [filename]) or compile it into an executable file without extension, it works fine. But when I run it via IDLE or compile to .app, ffmpeg doesn't work. It says this :

    


    RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work
warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)


    


    The same message appears when ffmpeg is not installed at all.

    


    How to make ffmpeg/pydub work correctly ?