Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (58)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • php hangs while executing exec in windows

    22 janvier 2014, par Cody

    I am converting a video using ffmpeg from php in Windows using following code

    <?php

    exec('ffmpeg -i input.mp4 -ar 22050 -ab 32k -r 25 -s 480x360 -vcodec h264 -qscale 2.5      output.flv');

    ?>

    While converting script hangs until conversion completed.

    What can i do about it ? So that it can run in background

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

  • 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