Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (20)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6298)

  • Compiling ffmpeg on android under windows platform [on hold]

    14 janvier 2014, par Mrityunjoy Mukherjee

    I have the following links.

    http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/comment-page-3/#comments

    I have used cygwin to compile ffmpeg on android under windows platform. After compilation within /android/arm/lib folder .dll.a files are created. How can I get .so files within libs folder ????

  • what is the exact path to specify in php for ffmpeg for windows

    17 janvier 2014, par user3196597

    i'm new to ffmpeg..and i've been trying to figure out the exact path to specify while running it in a php exec() function the code below runs fine in terminal but not in php :

      1)c:/ffmpeg/bin/ffmpeg -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1


      2)c:/xampp/htdocs/video/ffmpeg/bin/ffmpeg.exe -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1

    that works fine in terminal but not in php, i think the problem is with the path specification..can anyone tell the exact path to use while working in windows,please ??

    thanks in advance friends :D

  • video File conversion from any fromat to webm in windows using ffmpeg command line

    23 janvier 2014, par user3217695

    As i need to convert the video from any format which is uploaded to WEBM, since i am using video tag to play videos in browsers the code which i am using works fine for mp4 conversion but it doesn't for the WEBM format file. so please find me a solution

    ffmpeg -i INPUT_FILE -y -ar 22050 -ab 512 -b 800k -f webm -s 514*362 OUTPUT_FILE.WEBM

    Thanks.