Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Bash Script to get info from ffprobe

    14 novembre 2016, par Alan

    I am trying to create a script to process videos, but I was hoping to get bit_rate, width, and height info from the incoming files so I could better tune the output. The script works when I do the files one at a time, but when I put it into a loop all of a sudden I don’t get any info.

    So this works :

    #!/bin/bash
    eval $(ffprobe -v quiet -show_format -of flat=s=_ -show_entries stream=height,width,nb_frames,duration,codec_name input.mp4);
    width=${streams_stream_0_width};
    height=${streams_stream_0_height};
    bitrate=$((${format_bit_rate}/1000));
    echo $width,$height,$bitrate;

    This doesn’t when executed from find ./ -type f -regex ".*\.\(mkv\|mp4\|wmv\|flv\|webm\|mov\|avi\)" -print0 | xargs -0 /root/newbatch.sh

    for i; do
    eval '$(ffprobe -v quiet -show_format -of flat=s=_ -show_entries stream=height,width,nb_frames,duration,codec_name $i)';
    width=${streams_stream_0_width};
    height=${streams_stream_0_height};
    bitrate=${format_bit_rate};
    kbitrate=$((bitrate/1000));
    echo $i,$width,$height,$kbitrate;

    done

    I also get an error with the math of bitrate in the loop, but even when I comment it out I still get no results. Since it works one at a time, I am assuming the problem is a bash scripting and nothing to do with ffmpeg / ffprobe.

    That being said, I can do this :

    echo $i,$width,$height,$bitrate;

    and get back

    ./file1.mkv,,,
    ./file2.mkv,,,
    ./file3.mkv,,,
    ./file4.mkv,,,

    So it does get some info back, but it loses the info from the eval statement.

  • avformat/matroskaenc : Factor writing Info out

    14 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Factor writing Info out
    

    Avoids the surprise of using pb for the main AVIOContext
    at the beginning and end of mkv_write_header() and for
    for the dynamic buffer opened for the Info element
    in the middle of mkv_write_header().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c
  • avconv_opt : Allow printing private options

    14 septembre 2015, par Vittorio Giovara
    avconv_opt : Allow printing private options
    

    Add an allowed parameter to -h and —help avconv option to print private
    options from a codec, format, or filter, named with the provided input
    value.

    In case multiple classes are found (eg. mov demuxer and mov muxer, or
    h264 decoder and h264 demuxer) print all options from all classes.
    It is possible to select the type of class to print by adding it
    before the name (eg. demuxer:mov and muxer:mov, or decoder:h264and
    demuxer:h264).

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] avconv_opt.c