Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • 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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10308)

  • Join us for the Piwik Community Meetup 2015 !

    25 juin 2015, par Piwik Core Team — Community, Meta

    We’re excited to announce that our third Piwik Community Meetup will be held in Berlin on Tuesday, the 4th of August, 2015. Don’t miss this great opportunity to connect with other users and meet the core team behind Piwik. It’s free, so REGISTER TODAY ! And maybe you would like to share your Piwik use case ? We’re also waiting for your presentation ideas.

    We will cover some of the upcoming features, discuss the future of Piwik, share tricks and hacks to help you get the most out of your Piwik platform, and socialise. If you use Piwik to improve your websites and apps, or are just generally curious about digital analytics and marketing – this event is not to be missed. As our core team is scattered all over the world, this will be a rare opportunity for you to meet and talk to us all at once – especially for those of you interested in the platform, integrating your app with Piwik, and building plugins.

    After the official part, we would like to enjoy drinks with all the participants in the nearby bars. We hope you will be able to join us !

    All Piwik community members are warmly invited to take part in the meetup !

    Piwik Community Meetup 2015

    When ?

    Tuesday, the 4th of August, from 5-9pm

    Where ?

    Kulturbrauerei
    Schönhauser Allee
    Prenzlauer Berg area
    Berlin, Germany
    exact directions tbc.

    Languages :

    English and German

    Book tickets :

    BOOK YOUR FREE INVITATION HERE

    Open call for YOUR presentation ideas

    We would also like to hear how you use Piwik – we’ll be delighted if you’d share your interesting use case during the Meetup. Please send your presentation ideas (speaking time : 5 to 7 minutes) to : meetup@piwik.pro ! Deadline : 20th of July 2015.

    Contact the organisers :

    meetup@piwik.pro

  • Idea on how to make video maker website ?

    13 octobre 2015, par Gulam Gajani

    I want to create website that create video and user can share that website in any social site.

    (example sites :

    1. flixpress.com
    2. studio.stupeflix.com
    3. www.photodex.com
    4. www.picovico.com )

    this type of website i want to create.After long research and come to conclusion to use imagemagick and ffmpeg for my website.I learn the basic of the ffmpeg and imagemagick.
    SO I create code like this
    for text overlay in ffmpeg i create code like this

      ffmpeg -i input.mp4 -vf drawtext="fontfile=/usr/share/fonts/TTF/Vera.ttf: \
           text='Stack Overflow': fontcolor=white: fontsize=24: box=1: boxcolor=black: \
           x=(w-text_w)/2: y=(h-text_h-line_h)/2" -codec:a copy output.flv

    and for imagemagick use convert to make pics and make slideshow with ffmpeg code.

    shell_exec(" ffmpeg -framerate 1*10 -i %d.png -c:v libx264 -r 30 -pix_fmt yuv420p out1.mp4");

    This code works fine.No error, nothing.
    But the output video does not have the quality that i wanted.
    My question is that for create website like i mentioned above.Am i using the right software (ffmpeg and imagemagick).what software or code this type of website used ? Any idea ? any opensource software or program for this ?
    I am just newbie and try to learn the things.
    Please provide guidance on this what i am doing wrong.Just give the software name of programe which is used for this type of website. I can go through by myself. Please Give some idea on this.

  • Purge usage of `unsigned` type

    14 janvier 2017, par Erik de Castro Lopo
    Purge usage of `unsigned` type
    

    As pointed out by Ozkan Sezer, on some platforms `int32_t` is actually
    a typedef for `long` so `unsigned` cannot be used interchangably with
    `FLAC__uint32`. Fix is to switch from `unsigned` to explicit sized ISO
    C types defined in <stdint.h>.

    • [DH] src/libFLAC/bitmath.c
    • [DH] src/libFLAC/bitreader.c
    • [DH] src/libFLAC/bitwriter.c
    • [DH] src/libFLAC/cpu.c
    • [DH] src/libFLAC/crc.c
    • [DH] src/libFLAC/fixed.c
    • [DH] src/libFLAC/fixed_intrin_sse2.c
    • [DH] src/libFLAC/fixed_intrin_ssse3.c
    • [DH] src/libFLAC/float.c
    • [DH] src/libFLAC/format.c
    • [DH] src/libFLAC/include/private/bitmath.h
    • [DH] src/libFLAC/include/private/bitreader.h
    • [DH] src/libFLAC/include/private/bitwriter.h
    • [DH] src/libFLAC/include/private/crc.h
    • [DH] src/libFLAC/include/private/fixed.h
    • [DH] src/libFLAC/include/private/float.h
    • [DH] src/libFLAC/include/private/format.h
    • [DH] src/libFLAC/include/private/lpc.h
    • [DH] src/libFLAC/include/private/md5.h
    • [DH] src/libFLAC/include/private/memory.h
    • [DH] src/libFLAC/include/private/ogg_decoder_aspect.h
    • [DH] src/libFLAC/include/private/ogg_encoder_aspect.h
    • [DH] src/libFLAC/include/private/ogg_mapping.h
    • [DH] src/libFLAC/include/private/stream_encoder.h
    • [DH] src/libFLAC/include/private/stream_encoder_framing.h
    • [DH] src/libFLAC/include/protected/stream_decoder.h
    • [DH] src/libFLAC/include/protected/stream_encoder.h
    • [DH] src/libFLAC/lpc.c
    • [DH] src/libFLAC/lpc_intrin_avx2.c
    • [DH] src/libFLAC/lpc_intrin_sse.c
    • [DH] src/libFLAC/lpc_intrin_sse2.c
    • [DH] src/libFLAC/lpc_intrin_sse41.c
    • [DH] src/libFLAC/md5.c
    • [DH] src/libFLAC/memory.c
    • [DH] src/libFLAC/metadata_iterators.c
    • [DH] src/libFLAC/metadata_object.c
    • [DH] src/libFLAC/ogg_decoder_aspect.c
    • [DH] src/libFLAC/ogg_encoder_aspect.c
    • [DH] src/libFLAC/ogg_helper.c
    • [DH] src/libFLAC/ogg_mapping.c
    • [DH] src/libFLAC/stream_decoder.c
    • [DH] src/libFLAC/stream_encoder.c
    • [DH] src/libFLAC/stream_encoder_framing.c
    • [DH] src/libFLAC/stream_encoder_intrin_avx2.c
    • [DH] src/libFLAC/stream_encoder_intrin_sse2.c
    • [DH] src/libFLAC/stream_encoder_intrin_ssse3.c
    • [DH] src/plugin_common/dither.c
    • [DH] src/plugin_common/dither.h
    • [DH] src/plugin_common/tags.c
    • [DH] src/plugin_xmms/fileinfo.c
    • [DH] src/plugin_xmms/http.c
    • [DH] src/plugin_xmms/plugin.c
    • [DH] src/share/getopt/getopt.c
    • [DH] src/share/grabbag/cuesheet.c
    • [DH] src/share/grabbag/picture.c
    • [DH] src/share/grabbag/replaygain.c
    • [DH] src/share/grabbag/seektable.c
    • [DH] src/share/replaygain_analysis/replaygain_analysis.c
    • [DH] src/share/replaygain_synthesis/replaygain_synthesis.c
    • [DH] src/share/utf8/charmaps.h
    • [DH] src/share/utf8/charset.c
    • [DH] src/share/utf8/makemap.c
    • [DH] src/test_grabbag/cuesheet/main.c
    • [DH] src/test_grabbag/picture/main.c
    • [DH] src/test_libFLAC/bitwriter.c
    • [DH] src/test_libFLAC/decoders.c
    • [DH] src/test_libFLAC/encoders.c
    • [DH] src/test_libFLAC/endswap.c
    • [DH] src/test_libFLAC/format.c
    • [DH] src/test_libFLAC/md5.c
    • [DH] src/test_libFLAC/metadata_manip.c
    • [DH] src/test_libFLAC/metadata_object.c
    • [DH] src/test_libs_common/file_utils_flac.c
    • [DH] src/test_libs_common/metadata_utils.c
    • [DH] src/test_seeking/main.c