Recherche avancée

Médias (91)

Autres articles (56)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (8598)

  • How do I know if ffmpeg is using a hardware decoder ?

    27 janvier 2021, par farza

    I noticed when I read a video frame by frame via ffmpeg, my CPU usage explodes to 120%.

    



    ffmpeg -i video.webm thumb%04d.jpg -hide_banner


    



    But, if i simply watch a video locally it barely eats up any CPU.

    



    I'm guessing the issue here is that ffmpeg isn't using my hardware decoder (on OS X no GPU). How would I even check ?

    



    Any other issue that could be occurring ?

    


  • Getting Audio issue on integrating YouTube Live Streaming in Android app

    27 mai 2017, par Basha

    Presently I was working in app which has an integration of YouTube Live streaming in my android application. I was using a project in GitHub(YT-Watch me), which is provided by YouTube for Live Streaming . Here I was able to get an live streaming video but not getting audio.Is there any change that I have to do in Ffmpeg-jni.c file ?

    please suggest me how to solve this issue.

  • How to create effect same video with FFmpeg

    29 juin 2023, par Sang Vo

    How to make a video from an image with a drag effect like this one in FFmpeg :

    


    https://www.youtube.com/watch?v=zC6qbpe3FyE&ab_channel=CloudMood


    


    I tried to zoom in zoom out effects but not the same with video

    


     ffmpeg -loop 1 -i photo.jpg -vf "zoompan=z='min(zoom+0.001,1.2)':x='if(gte(zoom,1.2),x+2,x-1)':y='if(gte(zoom,1.2),y+2,y-1)':d=10*25,framerate=25,scale=1920:1080" -c:v libx264 -t 10 -pix_fmt yuv420p -s 1920x1080 output.mp4