Recherche avancée

Médias (91)

Autres articles (57)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9666)

  • Revision e8dcadc22a : Merge "fix peek_si to enable 1 byte show existing frames."

    21 juin 2014, par Jim Bankoski

    Changed Paths :
     Modify /vp9/vp9_dx_iface.c



    Merge "fix peek_si to enable 1 byte show existing frames."

  • ffplay : if playing only audio or video only, show the master clock diff in status...

    11 mai 2013, par Marton Balint
    ffplay : if playing only audio or video only, show the master clock diff in status line
    

    Showing A-V diff has no use if there is no audio and video stream, but showing
    the audio or video clock difference to the master clock can be useful.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • Show all four videos as thumbnails but play them one by one using FFMPEG

    18 juillet 2018, par p.jadhav

    I want to show four videos as thumbnails but play them one by one (video1 plays first then video2, etc).

    I tried this

    String[] cmd={"-loop","1","-t","36","-i","/storage/emulated/0/Download/trasprent_bg.png","-i","video1.mp4","-i","video2.mp4","-i","video3.mp4","-i","video4.mp4","-i","collage_1.png","-filter_complex","[1:v]scale=500:500,crop=266:266[tfg];[2:v]scale=500:500,crop=266:266,setpts=PTS+9/TB[bfg];[3:v]scale=500:500,crop=266:266,setpts=PTS+18/TB[threefg];[4:v]scale=500:500,crop=266:266,setpts=PTS+27/TB[fourfg];[5:v]scale=-1:-1[colage];[0:v][tfg]overlay=2:2:eof_action=pass[o1];[o1][bfg]overlay=272:2:eof_action=pass[o2];[o2][threefg]overlay=2:272:eof_action=pass[o3];[o3][fourfg]overlay=272:272:eof_action=pass:shortest=1[o4];[o4][colage]overlay=0:0","-an","videoCrop.mp4"};

    which plays the videos one by one but only shows the playing video with nothing showing for the other videos :

    Using above command play video as below.
    first video play,second video play,third video play

    I want to display all four output videos but play them one by one like below.

    screen shot

    i spent lot’s of day.Please Help me.