Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (110)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (12839)

  • Configuring install path : prefix=[PREFIX] not fully understood

    29 septembre 2019, par whatshisface

    I think this is simply a general c++ question :

    I’m attempting to compile a local version of ffmpeg on Linux Fedora using the gnu c++ compiler. I have source code in a bunch of folders under :

    ~/<username>/Downloads/Code/ffmpeg_sources/
    </username>

    which is where I’m attempting to set the config flags to install the build to a target not under this tree but at a root level directory with local shared libraries :

    /usr/local/

    There is this following section near the beginning of the configuration file :

    Standard options:

    --prefix=PREFIX          install in PREFIX []
    --bindir=DIR             install binaries in DIR [PREFIX/bin]
    --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
    --docdir=DIR             install documentation in DIR [PREFIX/share/doc/ffmpeg]
    --libdir=DIR             install libs in DIR [PREFIX/lib]
    --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
    --incdir=DIR             install includes in DIR [PREFIX/include]
    --mandir=DIR             install man page in DIR [PREFIX/share/man]
    --enable-rpath           use rpath to allow installing libraries in paths
                             not part of the dynamic linker search path

    I may have completely misunderstood this, but I thought that setting a value like

    --prefix=/usr/local

    or

    --prefix=[/usr/local]

    might work, but it appears not to, as once the ./config, make&&make install is complete, it has done a bunch of stuff but there’s nothing installed at the target. There are a LOT of new executable files built in the source directory, so presumably the build is working but I’m simply specifying the paths incorrectly ? A part of the same problem is that it’s unclear whether, once I’ve set the

    --prefix=[PREFIX]

    correctly, I need to set all of the further

    --datadir, --libdir

    etc. or whether the first —prefix value is enough ?

    What is the above configuration syntax trying to show me ?

  • Configuring install path : prefix=[PREFIX] not fully understood

    3 mai 2016, par whatshisface

    I think this is simply a general c++ question :

    I’m attempting to compile a local version of ffmpeg on Linux Fedora using the gnu c++ compiler. I have source code in a bunch of folders under :

    ~/<username>/Downloads/Code/ffmpeg_sources/
    </username>

    which is where I’m attempting to set the config flags to install the build to a target not under this tree but at a root level directory with local shared libraries :

    /usr/local/

    There is this following section near the beginning of the configuration file :

    Standard options:

    --prefix=PREFIX          install in PREFIX []
    --bindir=DIR             install binaries in DIR [PREFIX/bin]
    --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
    --docdir=DIR             install documentation in DIR [PREFIX/share/doc/ffmpeg]
    --libdir=DIR             install libs in DIR [PREFIX/lib]
    --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
    --incdir=DIR             install includes in DIR [PREFIX/include]
    --mandir=DIR             install man page in DIR [PREFIX/share/man]
    --enable-rpath           use rpath to allow installing libraries in paths
                             not part of the dynamic linker search path

    I may have completely misunderstood this, but I thought that setting a value like

    --prefix=/usr/local

    or

    --prefix=[/usr/local]

    might work, but it appears not to, as once the ./config, make&&make install is complete, it has done a bunch of stuff but there’s nothing installed at the target. There are a LOT of new executable files built in the source directory, so presumably the build is working but I’m simply specifying the paths incorrectly ? A part of the same problem is that it’s unclear whether, once I’ve set the

    --prefix=[PREFIX]

    correctly, I need to set all of the further

    --datadir, --libdir

    etc. or whether the first —prefix value is enough ?

    What is the above configuration syntax trying to show me ?

  • Can I extract an audio clip (a single word) from the video and insert at different points/timeline of same video using FFMPEG/libvlcsharp ?

    16 décembre 2019, par Siddharth

    I want to load a video that has a soundtrack, and I want it to take an audio clip of a single spoken word and I want the clip inserted at different points in the video. The output will be the new video. I also want to insert an image at certain points in the video (watermark).

    Can I do this using FFMPEG or libvlcsharp ?