Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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

  • FF-MPEG Running Commands through Jni

    13 septembre 2012, par Ravi K. Sharma

    I read and followed all instructions http://bambuser.com/opensource
    but i am puzzled around how to generate ffmpeg .so file using cygwin and ndk-r7 ? I appreciate if Some one could provide me better links/Solution to integrate FFPMEG for my Android Application.

    I switched to ubuntu, now i am able to build it and got .so files. Could some one help me on how can i change ffmpeg.c file's main function and use it directly from jni to run ffmpeg commands.

    Thanks in Advance.

  • ffmpeg & error handling

    29 septembre 2012, par user1707626

    i am using ffmpeg to resize image with this command :
    ffmpeg -i 0%d.jpg -qmax 1 -vf scale=-1:480 out-0%d.jpg , and sometimes he return me error :

    Assertion s->nb_components == 3 failed at /home/kyle/software/ffmpeg/source/ffmp
    eg-git/libavcodec/mjpegdec.c:354

    And i see the box ffmpeg.exe has stop working ... and i need to hit cancel for continue my python script loop.

    1) It there something wrong with the original size of the jpg ?

    2) If there is no solution how can i ignore the runtime error message and let my python script continu where it was.

    Thank you :)

  • Nginx video streaming - ffmpeg convert to flv, but requsted is mp4

    18 juin 2012, par abrahab

    I am converting videos from different sources with ffmpeg to mp4 with libx264 codec.
    The following command (simplified) :
    ffmpeg -i 1.mp4 -y -f mp4 -vcodec libx264 -crf 28 -threads 2 -strict experimental -acodec aac -ab 56k -ar 44100 -ac 2 temp.mp4

    Then, I can not stream the output file (500 Internal Server Error) with nginx mp4-streaming solution (aka http pseudo streaming). My system administrator found, that if rename file to flv it stream well, so, seems the output file is not mp4, but flv ? Why ? How to correctly convert ? Or, please, suggest how to stream video properly ? I think that mp4 is much better then flv... therefore I choose mp4.

    In other words, the problem is to stream output file like mp4.

    ps i also need to be sure that this video will always work at ipad after convertation. thanks and sorry for my bad english.

    EDIT : I found that if convert video with the same string but without -vcodec libx264 - nginx can serve the output .mp4 file well. where may be the problem ?