Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (71)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • Convert .heic to .jpg using ffmpeg ?

    19 novembre 2018, par Ketan Chauhan

    Using MP4Box :

    MP4Box -info IMG_5915.HEIC

    I get :

    prof colour profile not supported

    prof colour profile not supported

    Root Meta type : "pict" - 52 resource item(s)

    Primary Item - ID 49

    Item #1 - ID 1 - Name :
    .

    .

    .

    Item #49 - ID 49 - Name :

    Item #50 - ID 50 - Name : Item #51 - ID 51 - Name :

    File has no movie (moov) - static data container

    Then if I extract all of these :

    for i in seq 51 ; do MP4Box -dump-item $i:path=item$i.hevc
    IMG_5915.HEIC ; done

    Then if i continue, and convert these tiles to jpeg with ffmpeg it convert one tile to jpeg i.e it creates 51 HEVC tiles.

    ffmpeg -i item1.hevc -frames:v 1 -vsync vfr -q:v 1 -an image1.jpg

    How can I combine these tiles into a single jpg file ?

  • What do I need to use ffmpeg to convert .mov file to webm ?

    27 février 2020, par BStratoG

    I’m trying to convert .mov files to .webm using ffmpeg from terminal on my Mac. However I don’t really get what I should install to complete the conversion : I’ve installed libvpx

    brew install libvpx

    I’ve installed ffmpeg

    brew install ffmpeg

    But still when I’m trying to convert file like this

    ffmpeg -i vid.mov -c:v libvpx -b:v 2000 vid.webm

    I’m getting this error :

    Automatic encoder selection failed for output stream #0:0. Default encoder for format webm (codec vp8) is probably disabled. Please choose an encoder manually. Error selecting an encoder for stream 0:0

    What should I do then ? how do I enable default encoder ? is there something I should do differently or something more I need to install ?

  • How to pipe ffmpeg output to ImageMagick's convert tool ?

    30 décembre 2020, par Donny V.

    After a lot of searching I have come up with this to pipe a frame from ffmpeg to imagemagick's convert tool.

    


    ffmpeg -y -ss 00:02:01 -i ...\pano.mp4 -frames:v 1 -f png - | convert -sharpen 0x1 ...\pano_00_02_01.png


    


    I keep getting this error message.

    


    [NULL @ 000002e6cd1e00c0] Requested output format 'png' is not a suitable output format
pipe:: Invalid argument


    


    I have checked for png support using ffmpeg -format and its listed as png_pipe.

    


    I'm using ffmpeg version 4.3.1-2020-11-19-full_build
https://www.gyan.dev/ffmpeg/builds/