
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (109)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (10814)
-
How do I draw a line over a video whose width equals the current timeframe using FFMPEG
19 août 2019, par Martin MbaeI am trying to draw a line across a video to show the progress of the video.
Using FFMPEG I am able to draw a line using this code
ffmpeg -i video.mp4 -vf drawbox=w=10:h=10:color=pink:t=fill output.mp4
I, however want to alter the width of the line to be equal to "Total number of frames divided by the current frame"
I am using this code
ffmpeg -i video.mp4 -vf drawbox=w="%{frame_num/120}":h=10:color=pink:t=fill output.mp4
which is giving me this error
[Eval @ 00000072037fe4f0] Undefined constant or missing ’(’ in ’%frame_num/120’
I have also tried the code below which is also not giving me what I want.
ffmpeg -i video.mp4 -vf drawbox=w='text=%{frame_num/120}':h=10:color=pink:t=fill output.mp4
How do I go about this. Specifically how to set the width of the box to be equal to the number of the current frame
-
Using libav without command line ?
15 décembre 2012, par Khuất Văn PhiếnI use this command below for converting file
./avconv -i inputFile -vcodec libx264 -trellis 2 -crf 23 -tune psnr -vf crop='trunc(iw/2)*2:trunc(ih/2)*2' -y outputFile
But, I don't want to use this command, I want to make a function like
convert(char *inputFile, char *outputFile). (The option of my function like option in command line)
And then I will call it from my main function
for exampleint main(){
convert(in01, out01);
convert(in02, out02);
convert(in03, out03);
return 0;
}I also read this post. But it is not clear to me.
Could anyone tell me how to solve this problem ? I have googled many times but did not find the solution. -
How to decode MP3 using libmp3lame decoder using ffmpeg command line ?
28 septembre 2016, par KumarI need to decode .mp3 file using libmp3lame decoder in ffmpeg, this ffmpeg build contains libmp3lame. Decoded output can be .wav/.raw format.So can anyone help me how to decode this using ffmpeg command line.I’m using windows 8.1 os.