Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (57)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7182)

  • Combine multiple video and single audio stream into a single output

    15 janvier 2020, par Prashant Saraswat

    I am trying to record an online meeting.
    During the meeting I will receive continuous audio and intermittent video

    • A. Audio B. Video1 C. Video 2

    The Audio stream will span the length of the call. The video1 and video2 streams will be somewhere in the middle.

    Assuming I know the timestamps for all of these streams, how do I combine them in one video ?

    Consider the scenario where the audio stream starts at Tbegin and ends at Tend. The video1 stream starts at T1 and ends at T2. The video2 stream starts at T3 and ends at T4.

    We can assume that the audio stream is of type mp3 and the other streams are of type mp4

  • libavformat/mxfenc : color_range should be inclusive

    20 août 2020, par Harry Mallon
    libavformat/mxfenc : color_range should be inclusive
    

    MXF CDCI color range was being set to (1<<sc->component_depth) - 1
    for full range but it should be (1<<sc->component_depth) as 0 is
    a valid value.

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavformat/mxfenc.c
  • How to automatically add date to output file generated in ffmpeg ?

    4 avril 2019, par Maxime Richard

    I am using Terminal to run ffmpeg commands (Mac OS) in order to record radio shows streamed online. The stream is in m3u8 I want to output it in mp3. So far so good, I am able to achieve that. However, I’d like the output file to read YYYYMMDD-fm93-segal.mp3 where YYYYMMMDD are the date the recording was made.

    I am not able to achieve this using -strftime 1 for some reason. When using my code, the output file reads %Y%m&amp;d-fm93-segal.mp3 instead of replacing the strings by the real date.

    Here is the line I’m using :

    ffmpeg -i "https://cogecomedia.leanstream.co/cogecomedia/CJMFFM.stream/playlist.m3u8" -acodec mp3 -strftime 1 "%Y%m%d-fm93-segal.mp3"

    Anyone knows why and could help me with that ?