Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (45)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (10380)

  • how to execute %0d pattern of ffmpeg from .bat file

    4 août 2013, par tainguyen

    I have a ffmpeg command :
    ffmpeg -i D :\Wildlife.wmv -f image2 D :\dfs\image-%07d.png
    It work when I parse into command prompt directly.
    But when I saved it into a .bat file, "%0" in %07d pattern became the file's name.

    So how do I execute this ffmpeg command from a .bat file ?

  • How do I join multiple audio files into one with regular delays in between using FFMPEG ?

    21 mai 2023, par DavidNyan10

    I have the following audio files in my folder :

    


    01.mp4
02.mp4
03.mp4
04.mp4
...
27.mp4


    


    They're all audio-only files. I want to use FFMPEG to concatenate them with a 3-second spacing/silent pause in between each track. The files are of different lengths btw. I have tried to use

    


    ffmpeg -i "concat:01.mp4|02.mp4|03.mp4|04.mp4|05.mp4|06.mp4|07.mp4|08.mp4|09.mp4|10.mp4|11.mp4|12.mp4|13.mp4|14.mp4|15.mp4|16.mp4" -filter_complex "[0:a]apad=pad_dur=3[aout]" -map "[aout]" output.mp4


    


    but it only copied 01.mp4 with an added 3-second silence at the end.

    


    How can I achieve this in Windows cmd Command Prompt, preferably in one line ?

    


  • ffmpeg save remote file to user's computer

    18 mai 2018, par hmaxx

    I can cut and save a video from a remote server to my server using the below command :

    ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4

    I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.