Recherche avancée

Médias (91)

Autres articles (49)

  • 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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4292)

  • pixfmt : Add ARIB STD-B76 color transfer characteristic

    15 juin 2016, par Neil Birkbeck
    pixfmt : Add ARIB STD-B76 color transfer characteristic
    

    Adding hybrid log-gamma (https://en.wikipedia.org/wiki/Hybrid_Log-Gamma)
    based on the standardization in ARIB STD-B67 :
    http://www.arib.or.jp/english/html/overview/doc/2-STD-B67v1_0.pdf

    The choice of enum value of 18 is consistent with HEVC :
    http://phenix.it-sudparis.eu/jct/doc_end_user/current_document.php?id=10481

    And also with latest proposal for color format in mkv :
    https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&q=Colour+Format+proposal

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

    • [DBH] libavcodec/options_table.h
    • [DBH] libavcodec/version.h
    • [DBH] libavutil/pixdesc.c
    • [DBH] libavutil/pixfmt.h
    • [DBH] libavutil/version.h
  • lavu : Adding ARIB STD-B67 (hybrid log-gamma) enum value and transfer function.

    21 avril 2016, par Neil Birkbeck
    lavu : Adding ARIB STD-B67 (hybrid log-gamma) enum value and transfer function.
    

    Adding hybrid log-gamma (https://en.wikipedia.org/wiki/Hybrid_Log-Gamma)
    based on the standardization in ARIB STD-B67 :
    http://www.arib.or.jp/english/html/overview/doc/2-STD-B67v1_0.pdf

    The choice of enum value of 18 is consistent with HEVC :
    http://phenix.it-sudparis.eu/jct/doc_end_user/current_document.php?id=10481

    And also with latest proposal for color format in mkv :
    https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&q=Colour+Format+proposal

    The implementation assumes a nominal input range of [0, 1], which is
    consistent with HEVC.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/color_utils.c
    • [DH] libavutil/pixdesc.c
    • [DH] libavutil/pixfmt.h
    • [DH] tests/ref/fate/color_utils
  • Remove comma from ffmpeg output in AWS Lambda layer

    8 mars 2019, par Gracie

    I am using the ffmpeg Lambda layer to get the duration and channels from an audio file. I am then outputting these details to variables to use later in my code ?

    Can anyone spot/tidy this code so it only outputs the actual value and not one prepended with a comma

    enter image description here

    const { spawnSync } = require("child_process");
    var fs = require('fs');
    const https = require('https');


    exports.handler = async (event) => {
       const source_url = 'https://upload.wikimedia.org/wikipedia/commons/b/b2/Bell-ring.flac';
       const target_path = '/tmp/test.flac';

       async function downloadFile()  {
           return new Promise((resolve, reject) => {
               const file = fs.createWriteStream(target_path);
               const request = https.get(source_url, function(response) {
               response.pipe(file);
               console.log('file_downloaded!');
               resolve();
               });
           });
       }

       await downloadFile();

       const duration = spawnSync(
           "/opt/bin/ffprobe",
           [
               target_path,
               "-show_entries",
               "stream=duration",
               "-select_streams",
               "a",
               "-of",
               "compact=p=0:nk=1",
               "-v",
               "0"
           ]
           );

           const channel = spawnSync(
           "/opt/bin/ffprobe",
           [
               target_path,
               "-show_entries",
               "stream=channels",
               "-select_streams",
               "a",
               "-of",
               "compact=p=0:nk=1",
               "-v",
               "0"
           ]
           );

       var durations = duration.output.toString('utf8');
       console.log(durations);
       var channels = channel.output.toString('utf8');
       console.log(channels);

       /*const response = {
           statusCode: 200,
           //body: JSON.stringify([channel.output.toString('utf8')])
           body: 'Complete'
       };
       return response;*/
    };

    Just not sure where these comma values are coming from and I need these as number values for comparison functions later in the code.

    It uses this easy Lambda layer with no external modules required

    https://github.com/serverlesspub/ffmpeg-aws-lambda-layer