Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (51)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (9348)

  • Evolution #2923 : Remplacement d’un document et date du document

    21 mars 2013, par - Equipement

    Bonjour, Les rédacteurs en question disposent de la possibilité manuelle de modifier la date de chaque document. Ils souhaitent que, lorsqu’ils remplacent un document par une version plus récente, la date du document soit automatiquement modifiée (avec la date du dépôt de la dernière version). (...)

  • Using gcovr with FFmpeg

    6 septembre 2010, par Multimedia Mike — FATE Server

    When I started investigating code coverage tools to analyze FFmpeg, I knew there had to be an easier way to do what I was trying to do (obtain code coverage statistics on a macro level for the entire project). I was hoping there was a way to ask the GNU gcov tool to do this directly. John K informed me in the comments of a tool called gcovr. Like my tool from the previous post, gcovr is a Python script that aggregates data collected by gcov. gcovr proves to be a little more competent than my tool.

    Results
    Here is the spreadsheet of results, reflecting FATE code coverage as of this writing. All FFmpeg source files are on the same sheet this time, including header files, sorted by percent covered (ascending), then total lines (descending).

    Methodology
    I wasn’t easily able to work with the default output from the gcovr tool. So I modified it into a tool called gcovr-csv which creates data that spreadsheets can digest more easily.

    • Build FFmpeg using the '-fprofile-arcs -ftest-coverage' in both the extra cflags and extra ldflags configuration options
    • 'make'
    • 'make fate'
    • From build directory : 'gcovr-csv > output.csv'
    • Massage the data a bit, deleting information about system header files (assuming you don’t care how much of /usr/include/stdlib.h is covered — 66%, BTW)

    Leftovers
    I became aware of some spreadsheet limitations thanks to this tool :

    1. OpenOffice can’t process percent values correctly– it imports the percent data from the CSV file but sorts it alphabetically rather than numerically.
    2. Google Spreadsheet expects CSV to really be comma-delimited– forget about any other delimiters. Also, line length is an issue which is why I needed my tool to omit the uncovered ine number ranges, which it does in its default state.
  • make : *** [ffbuild/common.mak:67 : libavfilter/vf_nnedi.o] Error 1

    20 janvier 2021, par Madhuraank B

    Am compiling and installing FFMPEG on Raspberry Pi 4
Have installed all the other depnedenices and then I enter the following :

    


    cd ~/ffmpeg_sources && wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 && tar xjvf ffmpeg-snapshot.tar.bz2 && cd ffmpeg && PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure   --prefix="$HOME/ffmpeg_build"   --pkg-config-flags="--static"   --extra-cflags="-I$HOME/ffmpeg_build/include"   --extra-ldflags="-L$HOME/ffmpeg_build/lib"   --extra-libs="-lpthread -lm"   --bindir="$HOME/bin"   --enable-gpl   --enable-gnutls      --enable-libass   --enable-libfdk-aac   --enable-libfreetype   --enable-libmp3lame   --enable-libopus   --enable-libsvtav1   --enable-libvorbis   --enable-libvpx   --enable-libx264   --enable-libx265   --enable-nonfree && PATH="$HOME/bin:$PATH" make && make install && hash -r


    


    and at the end am getting the following error :

    


    In file included from libavfilter/vf_mcdeint.c:54:

./libavcodec/avcodec.h:1781:35: note: declared here
   
  attribute_deprecated AVFrame *coded_frame;
                                   ^~~~~~~~~~~

CC  libavfilter/vf_median.o
CC  libavfilter/vf_mergeplanes.o
CC  libavfilter/vf_mestimate.o
CC  libavfilter/vf_midequalizer.o
CC  libavfilter/vf_minterpolate.o
CC  libavfilter/vf_misc_vaapi.o
CC  libavfilter/vf_mix.o
CC  libavfilter/vf_mpdecimate.o
CC  libavfilter/vf_neighbor.o
CC  libavfilter/vf_nlmeans.o
CC  libavfilter/vf_nnedi.o


libavfilter/vf_nnedi.c:819:13: error: conflicting types for ‘read’
 static void read(float *dst, size_t n, const float **data)
             ^~~~

In file included from ./libavutil/timer.h:35,
                 from ./libavutil/internal.h:42,
                 from ./libavutil/common.h:532,
                 from libavfilter/vf_nnedi.c:24:
/usr/include/unistd.h:360:16: note: previous declaration of ‘read’ was here
 extern ssize_t read (int __fd, void *__buf, size_t __nbytes) __wur;
                ^~~~

make: *** [ffbuild/common.mak:67: libavfilter/vf_nnedi.o] Error 1


    


    Thanks in advance