Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (22)

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

  • 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" ;

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6786)

  • FFprobe Check Stream Link

    16 juillet 2015, par Krasic

    I am trying to use FFprobe to test if a streaming link is active or not.

    For example this is a working streaming link :

    ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/185

    I do get output which mean link is active.

    However, once I change link to something not work :

    ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/18555555555

    The command keeps running in background with no result.

    Is there a way to bypass this, or is there any ffprobe timeout parameter ?
    I couldn’t find it from the official website documentation.

  • What are the differences between FFmpeg and Libav ? [closed]

    16 septembre 2012, par Ken

    According to the first comment for this question, and i quote

    "Libraries with this name are provided from both the FFmpeg project
    and the Libav project, but they are mutually incompatible". So I think
    the answer depends on which libavcodec do you want to use.

    by user aland and wikipedia

    What are the differences that exist between this 2 projects ?

    I'm interested in video and audio encoding to H/X264, Mp3 and AAC with Mp4/Mkv containers ; but more importantly i would like to start with a reliable and up to date library with a permissive license and widely supported on as many platforms as possible.

  • FFmpeg how generate a sequence of videos with bash

    27 janvier 2018, par Massimo Vantaggio

    i try to write an .sh that read a folder create a playlist of mp4 files and then generate an only big video with a sequence of all videos find in the folder, and encode it for dash :

    printf "file '%s'\n" ./*.mp4 > playlist.sh
    ffmpeg -f concat -safe 0 -i playlist.sh -c copy concat.mp4

    Till now i follow the demux concat official guido to ffmpeg website.
    Without result, also the following give me "more than 1000 frames duplicated between videos of the sequence"

    ffmpeg -f concat -i playlist.sh -c:a aac -b:a 384k -ar 48000 -ac 2 -c:v libx264 -x264opts 'keyint=50:min-keyint=50:no-scenecut' -r 25 -b:v 2400k -maxrate 2400k -bufsize 1200k -vf "scale=-1:432 " out.mp4

    Thanks a lot