
Recherche avancée
Autres articles (34)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 ) (...)
Sur d’autres sites (7924)
-
convert f4v to mp4 with ffmpeg
9 août 2013, par Winnie OldrightTrying to convert
f4v
tomp4
with ffmpegThis file
FFmpeg :
ffmpeg -i input.f4v -vcodec copy -acodec copy output.mp4
In output i have black screen in video and no sound but track seconds are incrementing properly.
What i'm doing wrong ? Or maybe i need mpg or some other file type in out put (output file type should supports in android).
-
FFMPEG : how can I properly add a text overlay to my video and save it to a thumbnail ?
12 août 2013, par AWainbI have a ffmpeg command that goes to a url and successfully creates thumbnails at specified intervals. What I would like to do is add the time (eg : 03:45:20) to the bottom-left corner of the video in white text with a black shadow. I have seen a few examples online with drawtext but none of them seem to work with my current command :
C:\ffmpeg\bin\ffmpeg.exe -ss 00:23:12 -i "http://myvideourl.com/videofile.mp4" -f mjpeg -vframes 1 -y C:\thumb2.jpg
Can someone suggest how I can implement the correct drawtext filter with my current command so that it outputs the thumbnail with the duration stamped at the bottom-left corner ?
-
FFMpeg creates MP4 which no browser can decode, but it can be played in VLC
21 octobre 2013, par wvxvwHow can I debug what happened ? I've tried this with variations to generate a short video from a single image :
ffmpeg -loop 1 -i black.png -vcodec libx264 -b 1500k -s 640x360 -t 1 out.mp4
tried :
- Changing aspect ration (or omitting it).
- using
-image2
instead of-loop
. - omitting bitrate.
- creating longer videos.
- also tried different syntax for specifying video codec :
-v:c libx264
. - tried mpeg instead of libx264.
In every case the effect is the same. The video plays in VLC, but not in the browser.