Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (64)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8517)

  • 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 ?

    


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


    


  • 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