Recherche avancée

Médias (91)

Autres articles (80)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (6663)

  • There was an error with the AJAX request. XML/Json format is bad in whatsapp api

    11 janvier 2017, par Mohamed Maree

    I tried using the whatsapp API https://github.com/mgp25/Chat-API/wiki/Dependencies

    I am using PHP 5.6.15 and I installed precompiled extension :
    PHP Protobuf and curve25519 PHP but it does not appear in phpinfo(). I installed ffmpeg from here http://ukphpdeveloper.blogspot.com.eg/2012/08/how-to-install-ffmpeg-in-xampp.htmt but it didn’t appear in phpinfo() as installed. I have my whatsapp password and username but when I try to execute

    /../whatsapp/Chat-API-master/examples/whatsapp.php

    shows an error

    Error : There was an error with the AJAX request. XML/Json format is bad.

  • Revision 75916 : une fonction saisies_aplatir_chaine() qui permet de supprimer les ...

    16 septembre 2013, par maieul@… — Log

    une fonction saisies_aplatir_chaine() qui permet de supprimer les sous-groupes dans une chaîne de datas
    Exemple :

    *Visible à l'œil nu
    Vega|Véga
    Arcturus|Arcturus
    Antares|Antarés
    Deneb|Deneb
    * Visible au télèscope
    Alkaid|Alkaïd
    Dubhe|Dubhe
    /*
    Kornephoros|Kornephoros
    AlbireoA|Albiréo A (rouge)
    AlbireoB|Albiréo B (bleue)
    Rasalgethi|Rasalgethi

    devient

    Vega|Véga
    Arcturus|Arcturus
    Antares|Antarés
    Deneb|<a class="missing wiki">DenebAlkaid?</a>|Alkaïd
    Dubhe|<a class="missing wiki">DubheKornephoros?</a>|Kornephoros
    AlbireoA|Albiréo A (rouge)
    AlbireoB|Albiréo B (bleue)
    Rasalgethi|Rasalgethi
  • Segmenting video into different parts and unique rendering on each part then concat afterwards

    2 mars 2016, par goudarziha

    I currently have a very poorly performing application that splits up a video, renders it and the concats all rendered videos on android using ffmpeg

    So I am running into issues with segmenting a video up into 5 parts at each different intervals/durations, rendering each video segment uniquely slowing up/speeding up and then finally concat all the segments back into one final video.

    Currently I am doing each part separately -

    Segmenting -
    example for one segment
    -y -i pathIn -ss 0.0 -t 2.0 -vcodec copy -acodec copy -an pathOut

    Rendering - example slowing down/speeding up

    - y -i path -filter:v setpts=2.0*PTS pathOut

    Concat -

    - f concat -i input1.mp4 -i input2.mp4 -i input3.mp4 -i input4.mp4 -i input5.mp4 -c copy output.mp4

    Right now I am running different separate thread for each editing of video, so 3, segment, rendering and concat.

    I am trying to get this all done on one command ffmpeg line if at all possible, if not just the segmenting and rendering of the videos and kick of the concat cmd line later.

    I am trying to emulate something similar to this https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs