Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (74)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (9523)

  • Separated code for state, Flash, and deprecation.

    4 décembre 2013, par JamesMGreene
    Separated code for state, Flash, and deprecation.
    

    Includes deprecation warning console messages and the `debug` option to
    disable them.

  • I am trying to extract video file using below code i'm getting an 500 internal server error ?

    17 octobre 2014, par Ramesh

    The problem is that I get a "500 internal server error" the first time I execute the script, but it works as I expect if I reload the page.

    I am using below code.

    exec(FFMPEG_PATH." -i $uploadedfile  -vcodec copy -acodec copy  $path/webservice/ovideos/$thumb_name.mp4 > ".NULL_FILE);

    exec(FFMPEG_PATH."  -itsoffset $jpegFrameTime  -i  $path/webservice/ovideos/$thumb_name.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -s 120x110 $path/webservice/images/thumbs/$thumb_name.jpg > ".NULL_FILE);
  • ffmpeg batch convert from working Linux code to Windows

    30 mai 2016, par iisac

    I have this code on my Linux :

    for i in ./*.mkv; do \
    ffmpeg -i "$i" -c:v libvpx-vp9 -pass 1 -b:v 5M -threads 8 -speed 4 \
     -tile-columns 6 -frame-parallel 1 \
     -an -y -f webm /mnt/TemppiKovo/HEVC_perseily && \

    ffmpeg -i "$i" -c:v libvpx-vp9 -pass 2 -pix_fmt yuv420p -b:v 5M -threads 8 -speed 1 \
     -tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 \
     -c:a libopus -b:a 320k -f webm "${i%.mkv}-VP9.webm"

    done

    How do I do exactly the same on Windows ?