Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (59)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12140)

  • create video with fluctuated background color and drawbox with fluctuated color ?

    27 mai 2019, par Wang

    Is there anyway to create a video with fluctuated background color choosing from a list for example [R, G, B] the background color along time will be R,G,B,R,G,B .... I might use nullsrc with geq. But seems the geq is quite slow which apply to each pixel.

    I would also like to change the color of drawbox too, is there any easy way to do it ? I knew we might be able to use openclsrc but it seems overkill for this simple task.

    Update, for drawbox I found a way, which is kind of abuse the timeline editing :

    ffmpeg -f lavfi -i smptebars=r=30:d=30:size=800x600 -vf "drawbox=enable='eq(mod(n,3),0)':x=0:y=0:t=20:c=red,drawbox=enable='eq(mod(n,3),1)':x=0:y=0:t=20:c=green,drawbox=enable='eq(mod(n,3),2)':x=0:y=0:t=20:c=blue" /tmp/test_box.mp4
  • How to create side by side two video with padding and image background using ffmpeg ?

    23 mai 2019, par ravinaSukhadiya

    Two video play same time with collageView using ffmpeg. I have code but it’s not work properly please help me.

    -ss " + getStartTime()  + durationTime_act_select +getVideoUrl() +
                          " -ss " + getStartTime() +
                          " -t " + this.durationTime_act_select +
                          " -i " + getVideoUrl() +
                          " -i " + "R.jpg" +
                          " -filter_complex nullsrc=size=720*720[base1];" +
                          "[0:v]setpts=PTS-STARTPTS,scale=345*700[upperleft];" +
                          "[1:v]setpts=PTS-STARTPTS,scale=345*700[upperright];" +
                          "[2:v]setpts=PTS-STARTPTS,scale=720*720[over];" +
                          "[base1][over]overlay=shortest=1:x=0:y=0[base];"+
                          "[base][upperleft]overlay=shortest=1:x=10:y=10[tmp1];" +
                          "[tmp1][upperright]overlay=shortest=1:x=366:y=10" +
                          " -c:a copy -strict experimental -ss 0 -t " + this.durationTime_act_select + " -preset ultrafast -an " +videoName_act_select

    enter image description here

  • OpenCV - Generate adaptive background for video

    17 avril 2019, par bozzmob

    I want to achieve something like this-

    Reference Video

    Say I have a video which is a vertical video(Dimension- 720x1280). I want to create a horizontal video with adaptive background like the video I’ve shown.
    I have written some code for reading and writing to a file.

    video_index = 0
    cap = cv2.VideoCapture(videofiles[0])

    # video resolution: 1920x1080 px
    out = cv2.VideoWriter("video.mp4v",
                         cv2.VideoWriter_fourcc(*'MP4V'),
                         30, (1920, 1080), 1)

    What is the effect of having background to the video which smudges on the sides called in opencv/ffmpeg or otherwise ?
    How do I achieve this effect using code or tools(I am open to using OSS desktop tools) ?