Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (99)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (12825)

  • record application audio only with ffmpeg [migrated]

    27 mars 2013, par Pavan K

    I would like to use ffmpeg to use application audio only instead of the whole system audio while screen grabbing. How can I do this if the grabbing command is something like this ? By application specific I mean it can be audio from chrome(audio is out from chrome through internet)

    ffmpeg -f x11grab -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -r 25 -i :0.0 -sameq  desktop.mkv

    I tried to use pulse audio but I couldn't get it to work.

    If someone could even post a link to a working pulse audio setup I would be grateful. I want to do this programatically. And also if I am running two separate audio streams I should be able to capture only one ! I was not able to setup that using pavucontrol

  • ffmpeg settings for converting to mp4 from ogg for HTML5 video

    8 janvier 2013, par ayr_ton

    I'm trying to convert OVG to MP4 H.264 valid format for use in HTML5 video.
    I tryid this :

    ffmpeg -i video_source_file.ogv -vcodec libx264 -vpre ipod640 -b 250k -bt 50k -acodec libfaac -ab 56k -ac 2 -s 480x320 video_out_file.mp4

    But the generated format is invalid for Internet Explorer 9 and 10. Other H.264 videos works fine. VLC says that the generated video is H.264.

    It only happens when I try to convert ogv/ogg valid videos to mp4 H.264.

    I also tried many options in ffmpeg2theora, but it appears only to convert files to theora. I thought this might help, but I could not generate a valid H.264.

    How to make it work ?

  • Ffmpeg ld.exe error

    6 avril 2018, par Hask

    My command :

    g++ -o a a.cpp -l avcodec -l avformat -l swscale

    My Error :

    d:/gcc/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot -lavcodec
    d:/gcc/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot -lavformat
    d:/gcc/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot -lswscale
    collect2.exe: error: ld returned 1 exit status

    What does it mean ? This error says that the library is not installed ? But where if I have Windows and they are in the source code. Include quietly imports any h file from the source code, but then I see "undefined reference to ’av_register_all’". On the Internet, the decision was made to add the -l options to the script so that the libraries were in alphabetical order. But it does not read them. And where does it even read them ? Is that not so ? I ask help a first time, 2 weeks I try to compile ffmpeg.