Recherche avancée

Médias (91)

Autres articles (53)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (7924)

  • interplayvideo : convert to bytestream2.

    25 mars 2012, par Ronald S. Bultje

    interplayvideo : convert to bytestream2.

  • Convert a video to MP4 (H.264/AAC) with ffmpeg

    5 décembre 2015, par user176455

    If I don’t make a mistake, Safari currently need MP4 (H.264/AAC) video encoded for the HTML5 <video></video> element.

    So I tried to convert a video to this format with ffmpeg. However when I enter the shell command ffmpeg -i video.flv video.mp4, the returned error is :

    Seems stream 0 codec frame rate
    differs from container frame rate :
    2000.00 (2000/1) -> 29.92 (359/12) Input #0, flv, from ’video.flv’ :
    Duration : 00:05:01.20, start :
    0.000000, bitrate : 66 kb/s
    Stream #0.0 : Video : h264, yuv420p, 320x240 [PAR 1:1 DAR 4:3], 66 kb/s,
    29.92 tbr, 1k tbn, 2k tbc
    Stream #0.1 : Audio : aac, 22050 Hz, stereo, s16 Output #0, mp4, to
    ’video.mp4’ :
    Stream #0.0 : Video : mpeg4, yuv420p, 320x240 [PAR 1:1 DAR 4:3],
    q=2-31, 200 kb/s, 90k tbn, 29.92 tbc
    Stream #0.1 : Audio : 0x0000, 22050 Hz, stereo, s16, 64 kb/s Stream
    mapping : Stream #0.0 -> #0.0
    Stream #0.1 -> #0.1 Unsupported codec
    for output stream #0.1

    An AAC codec is required but I’m quite newbie with ubuntu and I dont really now how to fix this problem. I’m using Ubuntu 9.10 Karmik Koala (for amd64).

    Thank you very much. :)

  • Convert simple Bash script to PowerShell ?

    10 février 2015, par vulcan raven

    I have pulled the Bash script from here, which checks the AVI file for bad frames using ffmpeg and cygwin extension. I am able to execute the code in Mingw. I put ffmpeg.exe (ren ffmpeg), cygwin1.dll & cygz.dll in Mingw’s bin dir (/c/mingw/bin/). Now, I am looking to port this bash code to PowerShell. Can anyone shed some PowerShell light on this one ?

    Script : (path : /c/mygw/bin/AviConvert)

    #!/bin/bash

    FFMPEG="ffmpeg"
    LIST=`find | grep \.avi$`

    for i in $LIST; do
       OUTP="$i.txt"
       OUTP_OK="$i.txt.ok"
       TMP_OUTP="$i.tmp"
       if [ -f "$OUTP" -o -f "$OUTP_OK" ] ; then
       echo Skipping "$i"
       else
       echo Checking "$i"...
       RESULT="bad"
       ffmpeg -v 5 -i "$i" -f null - 2> "$TMP_OUTP" &amp;&amp; \
           mv "$TMP_OUTP" "$OUTP" &amp;&amp; \
           RESULT=`grep -v "\(frame\)\|\(Press\)" "$OUTP" | grep "\["`
       if [ -z "$RESULT" ] ; then
           mv "$OUTP" "$OUTP_OK"
       fi
       fi
    done