
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (108)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (17434)
-
Can I create a VFR video from timestamped images ?
18 juin 2016, par BeginnerFirst, I have almost zero experience in making videos from images.
What I have is a set of BMP timestamped images from which I want to generate a video.
Since the timestamps are not equally spaced, I cannot simply use software that create constant-frame-rate videos from images.A possible solution would be to create artificial images at fixed time intervals, but I prefer to leave that as a last resort if I fail to make a VFR video.
Any suggestions on how to achieve what I want ?
-
How do I create a streamable and seekable MP4 ? [migrated]
21 mai 2013, par user492922I want to create an MP4 that supports seeking and streaming. DASH appears to be what I want except that the segment seek points are stored in an external file (the MPD) which doesn't work for my application ; I need seek metadata to be contained in the MP4.
The next closest thing seems to be fragmented MP4s with the mfra box. I think this would work but it doesn't seem well supported (mplayer and totem fail to seek, recent ffplay works). Although the primary application is streaming (with the ability to seek) I would be reluctant to give up the ability to play the video from file on "standard" players.
Is there any way I can make an MP4 that is streamable, seekable and plays within standard video players ?
If I forgo the ability to play on standard video players is mfra the best way to go ?
edit : By streaming I mean HTTP progressive download.
-
Fastest way to create long video from 1 image with ffmpeg
12 février 2015, par johnvantesWhat is the fastest way to create a video with long duration (1 hour), from a single image ?
Here is what I have now :ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4
But it’s taking too long in my case, around 40 minutes. The image size I am using is
800KB
.Many many thanks in advance !