Recherche avancée

Médias (91)

Autres articles (22)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (4205)

  • 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