Advanced search

Medias (2)

Tag: - Tags -/documentation

Other articles (111)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 May 2011, by

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

On other websites (12386)

  • avformat/flvdec: Use the first index entry to find the first packet if there was...

    13 September 2015, by Michael Niedermayer
    avformat/flvdec: Use the first index entry to find the first packet if there was a parsing error in the header
    

    Fixes: unknow_codec.flv

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/flvdec.c
  • pkg-config cant find libraries on ffmpeg build (linux)

    29 December 2018, by Rafael Lima

    I’m trying to build ffmpeg for android on ubuntu...

    -I've cross-compiled all the dependencies I need for my configuration
    -I've set up the configuration parameters

    but ./configure keep saying

    ERROR: librtmp not found using pkg-config

    I’ve tested and if I remove --enable-librtmp it will configure complain about other library. The thing is I i build all libs myself. So I’m sure it is present and at right folder.

    I’m not linux/compiler specialist and so far i’ve spend more than 10 days to get everything i need to this project rightly done. I know i can simple modify the configure file under ffmpeg and remove the pkg-config check but this isn’t the solution I’m looking for

    the command i run is:

    ./configure --prefix=$PREFIX \
     --arch=${ARCH}\
       --cpu=${CPU} \
       --cross-prefix=$CROSS_PREFIX \
       --enable-cross-compile \
       --sysroot=$SYSROOT \
       --target-os=linux \
       --sysinclude=$NDK/sysroot/usr/include \
       --pkg-config=$(which pkg-config) \
       --pkg-config-flags="--static" \
       --enable-pic \
       --enable-gpl \
       --enable-nonfree \
       \
       --disable-shared \
       --enable-static \
       \
       --enable-ffmpeg \
       --disable-ffplay \
       --disable-ffprobe \
       \
       --enable-librtmp \
       --enable-zlib \
       --enable-mediacodec \
       --enable-libx264 \
       --enable-libfdk-aac\
       --enable-libfreetype\
       --enable-libmp3lame\
       --enable-openssl\
       --enable-libfontconfig\
       --enable-bsf=aac_adtstoasc \
       \
       --disable-doc \
       $ADDITIONAL_CONFIGURE_FLAG

    I would like to know which tests pkg-config do to detect if any lib is installed? and how can i show it the libs i need are really present

    =========UPDATE=========

    ${PREFIX} stands for build_dir under which i’ve a folder lib/pkgconfig with many .pc files including librtmp.pc. so why it can detect the others but not this one? i checked the content of the file and seams to be right, similar to others at same folder

  • Unable to find a suitable output format for 'protocols'

    10 May 2018, by Perl Deniel

    I was trying to analyse a video with ffmpeg and it gives this error. I have referred to other sources but those solutions do not seem to work.

    [NULL @ 0x24eb600] Unable to find a suitable output format for 'protocols'
    protocols: Invalid argument

    I have a video currently hosting on Google Cloud Storage and I want to use ffprobe to study its orientation. This is the command I use.

    ffprobe -v error -show_streams -show_format https://storage.googleapis.com/bucket/filename.mp4 | grep rotation

    I am currently running on Debian Jessie and I installed ffmpeg from source.

    Here’s my installation script

    cd ffmpeg-3.4.1
    ./configure --enable-shared
    make
    make install
    ldconfig

    Can anyone tell me how to solve this?