Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (5158)

  • Live Transcoding & Streaming

    4 mars 2016, par acohen

    My client has a requirement where he needs me to transcode a source file into a proxy with a unique burn in on it per playback.

    For the proxy I will be using ffmpeg, nothing fancy, but ideally the users can play back the file as it is being transcoded since it may take up to several minutes to complete the transcoding.

    Another restriction is that the player does not support HLS and other live streaming options and can only accept MP4s as a source.

    Any ideas/suggestions would be great.

  • Combined Files Live Stream

    22 février 2020, par Smokie

    I can combine one mp3 file and one using FFmpeg. But how could I get it live stream ? I couldn’t find it. My goal is to run the two files at the same time.

     ffmpeg -i video.mp4 -i genaudio.mp3 -map 0:v -map 1:a -c:v copy -c:a copy output.mp4 -y

    Or do you have any other suggestions I can do this ?

  • ffmpeg HTTP LIVE STREAMING remove old segments

    27 janvier 2015, par k961

    Hello i Have a Live HTTP stream input for ffmpeg
    i want to create HLS streaming im using ffmpeg to do this

    ffmpeg -i http://127.0.0.1:4242/bysid/7275 -map 0 -codec:v libx264 -codec:a copy -f ssegment -segment_list playlist.m3u8 -segment_list_type hls -segment_list_size 10 -segment_list_flags +live -segment_time 10 out%03d.ts

    i works fine i just want to delete the old segmens that are not shown in playlist.m3u8

    segment_list_size 10

    this will keep the last 10 in the playlist file i want to keep only these files on hard disk