Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (46)

  • 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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7998)

  • FFmpeg codec on Ubuntu (Missing argument for option 'i')

    9 juillet 2018, par Torsten Högel

    I installed on my Ubuntu (Plesk) Server for one Website FFmpeg normally with no error. But now after executing ffmpeg it shows me everything, but after executing ffmpeg -i my server responds with

    Missing argument for option ’i’

    https://prnt.sc/k47h2g

    I haven’t found anything about this especially...

    Best Regards

  • Definitive join MP3's in ffmpeg or avconv - whats the magic line of code ?

    10 février 2016, par pperrin

    I have some MP3’s they need to be concatenated in to a single MP3.

    What is the command line I need for FFMPEG or AVCONV to do this ?

    I don’t know or care about the quality/bit-rate etc of the inputs, I have what I have and they are random.

    I have hunted far and wide and found loads of people who like to talk about pages of useless detail that makes absolutely no difference to me...

    So...

    I have been using :

    ffmpeg -i "concat:file1.mp3|file2.mp3" -b:a:320000 -acodec file3.mp3

    The output sounds fine, but the output file often shows the duration and bitrate wrong on the output... what is the magic line of code I seek ?

    I am in no hurry - and can run the files through a dozen other processes if needed, and if quality goes down I really really don’t care - I just want a fully functional MP3 at the end of it.

  • ffmpeg : New text after a few seconds without having both texts at the same time for one frame

    21 avril 2022, par principal-ideal-domain

    This answer was very usefull for me to learn how to include texts in a video using ffmepg. Now at one position of the video I want to always show a text but it changes. So what I did is for one text I used for example enable='between(t,0,5)' and for the next enable='between(t,5,10)'. Now at the frame at 5 seconds the video shows both texts. That is not what I want. I guess the reason is that enable='between(t,0,5)' includes the boundaries of the interval. So I somehow need ffmpeg to stop showing the first text one frame earlier. How do I do that ?