Recherche avancée

Médias (91)

Autres articles (64)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (12665)

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

    2 mai 2019, par user3217695

    I need to convert a video from any format which is uploaded to WebM. 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
  • c/c++ program for ffmpeg command line

    25 mars 2015, par Yoohoo

    I want to find the corresponding c/c++ program for the ffmpeg command line :

    ffmpeg -i sample.mp4 -an -vcodec libx264 -crf 23 outfile.h264

    which convert a sample.mp4 file to outfile.h264, and

    ffplay outfile.h264

    What I am doing is to combine the ffmpeg program with my udp socket program to do a real-time video transmission. beacause it is ’real-time’, so I want to find the ffmpeg program cut it at the frame encoding step instead of writing the frames into output file, and send frame by frame and also read frame by frame at the server side.

    My questions are :

    1.What c/c++ program is actually running when I use the above command line ?

    2.where can i find the c/c++ program ?

  • FFMPEG pipe input filenames from command line on windows

    6 novembre 2019, par Andrew Harris

    I am concatenating a bunch of files on a windows 10 box into a single file using "ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4". This works fine when I generate list.txt in the required format.

    What I am wanting is to not have to generate the file first and instead pipe the filenames in as the examples here show for *nix.

    I have tried as follows "ffmpeg -f concat safe 0 -i <(for %i in (*.ts) do @echo file ’%i’) -c copy output.mp4" but I get "The system cannot find the file specified.".

    Any idea’s how to make this work ?