Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7701)

  • Compression in Android taking long time

    24 avril 2017, par NSR

    I am new to Video related operations. I am using [FFMPEG][1] to compress a video in my Android application.

    I am trying to compress a video of 50MB to 10MB by executing following command

    ffmpeg -y -i /videos/in.mp4 -strict experimental -s 640x480 -r 25 -vcodec mpeg4 -b 150k -ab 48000 -ac 2 -ar 22050 /videos/out.mp4

    Video compressing successfully, but it taking more than 150 seconds. I am unable find out how to reduce that time.

    I want to change this command to complete this process in less time.

  • How to start music at a specific time

    16 mars 2019, par INeed ADollar

    I want to start a song file at a specific time with ffmpeg in python and I don’t know if this is possible. I make a discord bot and I want to make a command about this. Thank you for any help !

  • filter_complex command taking too much processing time

    5 septembre 2016, par Atiq Ur Rehman

    i am using FFMPEG for adding watermark on video in Android application.
    String cmd = "-i " + path + " -i " + png + " -filter_complex overlay=10:main_h-overlay_h-10 -threads 5" + " -preset ultrafast -strict -2 " + outputPath

    i am using this command to add watermark, this command is working but taking too much time, it takes 60 second to process 10 second video approx.

    is that any solution to reduce the processing time.

    Thanks