Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (38)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5785)

  • Anomalie #2533 (Nouveau) : spip 3 > extension texwheel > Yaml

    13 février 2012, par Philippe A

    Les installations de spip 3 beta 2 se terminent toutes en erreur sur mon serveur lors de l’arrivée à la phase 4 de l’installation. Fatal error : Cannot access protected property sfYamlParser: :$offset in /home/monsite/ww/extensions/textwheel/lib/yaml/sfYamlParser.php on line 40 Le site n’est pas (...)

  • FFMPEG Audio, video out of sync

    5 mars 2012, par geeknizer

    I'm creating Video using FFMPEG from pngs. The problem is on creating the video, and combining with video, its never in sync.

    Create video :

    ffmpeg -i /home/ubuntu/pngs/* -vcodec libvpx -r 25 -b 1024k -y video.avi

    generate audio

    ffmpeg -y -f s16le -ar 44100 -ac 2 -i wav_file.wav -acodec libvorbis video.avi

    these snapshots were taken at 25fps from a video. Audio is also extracted from same source.

  • compile ffmpeg with android ndk r5b

    7 janvier 2013, par null

    compile ffmpeg with android ndk r5b.

    ffmpeg 0.6.1

    android ndk r5b

    cygwin 1.7

    build reference url : http://www.cnblogs.com/scottwong/archive/2010/12/17/1909455.html

    but, ffmpeg ./configure result error ! (below config.err file)

    check_cc
    BEGIN /tmp/ffconf.GlDiY1P8.c
       1   int main(void){ return 0; }
    END /tmp/ffconf.GlDiY1P8.c
    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o /tmp/ffconf.1kQLpGaU.o /tmp/ffconf.GlDiY1P8.c
    arm-eabi-gcc.exe: /tmp/ffconf.GlDiY1P8.c: No such file or directory

    arm-eabi-gcc.exe: no input files

    C compiler test failed.

    so, i just try test code.

    // test.c code
    int main(){
     return 0;
    }

    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o ./test.o ./test.c

    ok !!!! no problem.

    but,
    cp ./test.c /tmp (copy to /tmp)

    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o ./test.o /tmp/test.c

    arm-eabi-gcc.exe: /tmp/test.c: No such file or directory
    arm-eabi-gcc.exe: no input files

    fail !!!
    difference is only file path. /tmp directory exist, and permission is right. /home/test.c is same result.

    what's wrong ?