Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (36)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

Sur d’autres sites (5291)

  • Révision 21323 : Report de r21322.

    21 avril 2014, par Eric Lupinacci

    Il faut aussi tenir compte dans le pattern du cas où plusieurs modules sont passés dans l’item de langue.

  • Error in FFMpeg and png images (glob/libavformat) [closed]

    1er juin 2013, par Alain P. Francés

    I'm trying to use FFMpeg to produce an animation based on several png images
    that don't follow a sequence number. With
    the following command line

    ffmpeg -f image2 -r 1 -pattern_type glob -i '*.png' -c:v libx264 mov.mp4

    I obtain the following error

    ffmpeg version N-53033-g56ba331 Copyright (c) 2000-2013 the FFmpeg developers
    built on May 13 2013 22:18:29 with gcc 4.7.3 (GCC)
    configuration : —enable-gpl —enable-version3 —disable-w32threads
    
    — enable-avisynth —enable-bzlib —enable-fontconfig —enable-frei0r
    — enable-gnutls —enable-iconv —enable-libass —enable-libbluray
    — enable-libcaca —enable-libfreetype —enable-libgsm —enable-libilbc
    — enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb
    — enable-libopenjpeg —enable-libopus —enable-librtmp
    — enable-libschroedinger —enable-libsoxr —enable-libspeex
    — enable-libtheora —enable-libtwolame —enable-libvo-aacenc
    — enable-libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libx264
    — enable-libxavs —enable-libxvid —enable-zlib libavutil 52. 31.100 / 52. 31.100 libavcodec 55. 9.100 / 55. 9.100 libavformat 55. 7.100 / 55. 7.100 libavdevice 55. 0.100 / 55. 0.100 libavfilter 3. 65.100 / 3. 65.100 libswscale 2. 3.100 / 2. 3.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100 [image2 @ 0268b600] Pattern type 'glob' was selected but globbing is not supported by this libavformat build '*.png' : Function not implemented

    I am working on Windows 7.

  • ffmpeg - Continuously stream webcam to single .jpg file (overwrite)

    8 octobre 2016, par Germanunkol

    I have installed ffmpeg and mjpeg-streamer. The latter reads a .jpg file from /tmp/stream and outputs it via http onto a website, so I can stream whatever is in that folder through a web browser.

    I wrote a bash script that continuously captures a frame from the webcam and puts it in /tmp/stream :

    while true
    do
       ffmpeg -f video4linux2 -i /dev/v4l/by-id/usb-Microsoft_Microsoft_LifeCam_VX-5000-video-index0 -vframes 1 /tmp/stream/pic.jpg
    done

    This works great, but is very slow ( 1 fps). In the hopes of speeding it up, I want to use a single ffmpeg command which continuously updates the .jpg at, let’s say 10 fps. What I tried was the following :

    ffmpeg -f video4linux2 -r 10 -i /dev/v4l/by-id/usb-Microsoft_Microsoft_LifeCam_VX-5000-video-index0 /tmp/stream/pic.jpg

    However this - understandably - results in the error message :

    [image2 @ 0x1f6c0c0] Could not get frame filename number 2 from pattern '/tmp/stream/pic.jpg'
    av_interleaved_write_frame(): Input/output error

    ...because the output pattern is bad for a continuous stream of images.

    Is it possible to stream to just one jpg with ffmpeg ?

    Thanks...