
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (61)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (7900)
-
Every 27 seconds immediately appear around 3 seconds black
23 juin 2018, par MonsoI want every 27 seconds. appears a black space of 3 seconds and it repeats to the end. Example 0:27 0:54 1:21 until the end of the video .... here are 2 code I used but the second code does not work. The 1st code it automatically blurs the population, I want it not to fade itself. that i want it immediately black
.please help me finish itCode 1
ffmpeg -i input.mp4 -loop 1 -i logo.png -filter_complex "[1]trim=0:24,fade=in:st=0:d=1:alpha=1,fade=out:st=4:d=1:alpha=1,loop=999:750:0,setpts=N/25/TB[w];[0][w]overlay=shortest=1" output.mp4
Code 2
ffmpeg -i input.mp4 -vf "select='lt(mod(t,30),27)',setpts=N/FRAME_RATE/TB" output.mp4 -
Using ffmpeg to stream from my camera to AWS MediaLive ?
25 juin 2018, par Ketaki TilakI have a whole downstream set up consisting of AWS MediaLive->MediaPackage->Cloudfront.
I’m looking to stream directly from my camera to MediaLive. This requires my camera to produce an RTMP stream, and have an IP address. I’m not quite sure how to put that together. Some background information would be appreciated.
Setting up my own server isn’t a feasible option. I was wondering if there was a way to use fmmpeg and other services to stream in this manner ? -
Video is black when framerate is too low using imageio and Python
28 juin 2018, par palimboaI have the following exmaple code :
import numpy as np
writer = imageio.get_writer('test.mp4', fps=1)
max = 800
resolution = 256
for idx in range(1, max):
img = np.zeros((resolution,resolution))
img[: int((idx / max) * resolution), : int((idx / max) * resolution)] = 255
img = img.astype(np.uint8)
writer.append_data(img)
writer.close()The video is just black for
fps == 1
What am I missing here ? I cannot see any clues in the documentation saying I cannot have fps = 1 ?
EDIT
For
fps >= 10
it seems to be fine.