Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (64)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Libtool library used but `LIBTOOL' is undefined ?

    25 septembre 2021, par Sam Healey

    Im trying to install ffmpeg on my server. Im unsing centos 5.

    



    When I try to install libfdk_aac I get the following error

    



    ` autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
Makefile.am:31: Libtool library used but `LIBTOOL' is undefined
Makefile.am:31:
Makefile.am:31: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
Makefile.am:31: to `configure.ac' and run `aclocal' and `autoconf' again.
Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
autoreconf: automake failed with exit status: 1 ` 


    



    If i type which libtool I get /usr/bin/libtool, so i think libtool is installed.
So im not sure why this error is happening.

    



    Thanks for any advice

    


  • Metadata in mp3 not working when piping from ffmpeg with album art

    10 février 2019, par Cromon

    In my program I am piping a webm from a stream to ffmpeg and then pipe the output to a http request. Part of the process is adding metadata for the mp3. This has so far worked great. However after adding an image as album art it has started to act unexpected.

    First this is the command line I am using inside the program :

       val parameters = listOf("ffmpeg",
               "-i", "-",
               "-i", albumImage.absolutePath,
               "-map", "0",
               "-map", "1",
               "-c:v", "copy",
               "-f", "mp3",
               "-id3v2_version", "4",
               "-metadata", "title=${info.title}",
               "-metadata", "album=YouTube",
               "-metadata", "artist=${info.author}",
               "-metadata:s:v", "title=Album Cover",
               "-metadata:s:v", "comment=Cover (front)",
               "-"
       )

    It creates a valid mp3 file and I can find both the metadata and the image in the mp3 file, however when playing it none of them are displayed in VLC or anywhere else. To test various configurations I have converted it to the command line.

    In a first try I have saved the video and the image and stopped using pipes altogether, which results in this :

    ffmpeg -i video.webm -i image.jpeg -map 0 -map 1 -c:v copy -f mp3 -id3v2_version 4 -metadata title="Tiësto & KSHMR feat. Vassy - Secrets (Official Music Video)" -metadata album="YouTube" -metadata artist="Spinnin' Records" -metadata:s:v title="Album Cover" -metadata:s:v comment="Cover (front)" output3.mp3

    In this case all metadata including the album art is displayed in VLC.

    I then recreated the same thing as in my program, piping both video input and audio output, looking like this :

    ffmpeg -i - -i image.jpeg -map 0 -map 1 -c:v copy -f mp3 -id3v2_version 4 -metadata title="Tiësto & KSHMR feat. Vassy - Secrets (Official Music Video)" -metadata album="YouTube" -metadata artist="Spinnin' Records" -metadata:s:v title="Album Cover" -metadata:s:v comment="Cover (front)" - < video.webm > output3.mp3

    This file is the same as my programs output. Neither title nor album nor album image are displayed (however it can play the file)

    To test a few more options I have hardcoded the output file but pipe the input file like this :

    ffmpeg -i - -i image.jpeg -map 0 -map 1 -c:v copy -f mp3 -id3v2_version 4 -metadata title="Tiësto & KSHMR feat. Vassy - Secrets (Official Music Video)" -metadata album="YouTube" -metadata artist="Spinnin’ Records" -metadata:s:v title="Album Cover" -metadata:s:v comment="Cover (front)" output3.mp3 < video.webm

    Now the metadata is working again. When hardcoding the input video and piping the output, its again gone.

    So to sum up : When piping the output of ffmpeg the metadata in the file is not properly working. Interestingly the stderr output of ffmpeg looks quite similar

    Hardcoded output3.mp3 :

    ffmpeg version 3.4.4-0ubuntu0.18.04.1 Copyright (c) 2000-2018 the FFmpeg developers
    Input #0, matroska,webm, from 'pipe:':
     Metadata:
       encoder         : google/video-file
     Duration: 00:03:39.58, start: -0.007000, bitrate: N/A
       Stream #0:0(eng): Audio: opus, 48000 Hz, stereo, fltp (default)
    Input #1, image2, from 'image.jpeg':
     Duration: 00:00:00.04, start: 0.000000, bitrate: 1466 kb/s
       Stream #1:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 320x180, 25 tbr, 25 tbn, 25 tbc
    Stream mapping:
     Stream #0:0 -> #0:0 (opus (native) -> mp3 (libmp3lame))
     Stream #1:0 -> #0:1 (copy)
    Output #0, mp3, to 'output3.mp3':
     Metadata:
       TPE1            : Spinnin' Records
       TIT2            : Tiësto &amp; KSHMR feat. Vassy - Secrets (Official Music Video)
       TALB            : YouTube
       TSSE            : Lavf57.83.100
       Stream #0:0(eng): Audio: mp3 (libmp3lame), 48000 Hz, stereo, fltp (default)
       Metadata:
         encoder         : Lavc57.107.100 libmp3lame
       Stream #0:1: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 320x180, q=2-31, 25 tbr, 25 tbn, 25 tbc
       Metadata:
         title           : Album Cover
         comment         : Cover (front)

    With pipe output :

    ffmpeg version 3.4.4-0ubuntu0.18.04.1 Copyright (c) 2000-2018 the FFmpeg developers
    Input #0, matroska,webm, from 'pipe:':
     Metadata:
       encoder         : google/video-file
     Duration: 00:03:39.58, start: -0.007000, bitrate: N/A
       Stream #0:0(eng): Audio: opus, 48000 Hz, stereo, fltp (default)
    Input #1, image2, from 'image.jpeg':
     Duration: 00:00:00.04, start: 0.000000, bitrate: 1466 kb/s
       Stream #1:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 320x180, 25 tbr, 25 tbn, 25 tbc
    Stream mapping:
     Stream #0:0 -> #0:0 (opus (native) -> mp3 (libmp3lame))
     Stream #1:0 -> #0:1 (copy)
    Output #0, mp3, to 'pipe:':
     Metadata:
       TPE1            : Spinnin' Records
       TIT2            : Tiësto &amp; KSHMR feat. Vassy - Secrets (Official Music Video)
       TALB            : YouTube
       TSSE            : Lavf57.83.100
       Stream #0:0(eng): Audio: mp3 (libmp3lame), 48000 Hz, stereo, fltp (default)
       Metadata:
         encoder         : Lavc57.107.100 libmp3lame
       Stream #0:1: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 320x180, q=2-31, 25 tbr, 25 tbn, 25 tbc
       Metadata:
         title           : Album Cover
         comment         : Cover (front)
  • diracdec : fix full range videos

    22 janvier 2016, par Rostislav Pehlivanov
    diracdec : fix full range videos
    

    Full range video had been broken by the introduction of the < 2U check
    at the following line. The bitstream format kind of implies that the full
    and limited ranges use different pix_fmts but that’s incorrect since we
    have the avctx->color_range flag. So adjust the pixel range index to
    be mapped to the same pix_fmts as limited range index.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/dirac.c