Recherche avancée

Médias (91)

Autres articles (72)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (7865)

  • ffmpeg how to put color overlay over video

    13 mai 2020, par flieks

    I want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.

    



    I think it should be in the lines of :

    



    ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode='screen':all_opacity=0.7" output.mp4


    



    or maybe with all_mode=overlay

    



    But I get an error :

    



    First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).


    



    I also tried with lutrgb=r=1.5, but that didn't give it a red color (it takes the red away).

    



    What am i doing wrong ?

    


  • how To configure ffmpeg for the iPhone 4s and iphone5

    25 avril 2013, par pengwang

    i want to configure ffmpeg,i have read https://github.com/yuvi/gas-preprocessor ,but this link only configure ffmpeg for the iPhone 3gs and iPod touch 3g using armv7 and iPhoneOS3.0.sdk, i want to configure ffmpeg for the iPhone 4s and iphone5 using armv7s and iPhone5.0sdk. can you give some advice and some link to finish it ?

  • How to debug ffmpeg c code used in IJKmediaplayer ?

    15 août 2015, par Daniyal Yasin

    I am trying to use the libstagefright codec of ffmpeg to decode an mp4 file using IJKmediaplayer on android. IJKmediaplayer is sort of a wrapper enabling the use of ffmpeg on Android.

    This is the link giving basic info about ijkmediaplayer : https://github.com/Bilibili/ijkplayer

    The link also describes the build process for ijkmediaplayer. First ffmpeg is built then the shared libraries are copied to appropriate places and then I have to import the project in eclipse.

    I use the ijkmediaplayer android project in eclipse as a library project in another android application. The structure is like this :

    |-ijkmediaplayer
    | |-jni
    |   |-ffmpeg (this folder doesn't have the complete source just headers)
    |   |-ijkmedia (some c source files of ijkmediaplayer)
    |
    |-my_project

    So my question is how do I debug libstagefright.cpp from my application ?

    Libstagefright.cpp is contained in the ffmpeg source not visible in the android ijkmediaplayer project. But used when building the ijkmediaplayer android project as described in the link.

    The debugger easily reaches the code of the ijkmediaplayer android project. But does not proceed to the native code automatically if I press f5.