
Recherche avancée
Autres articles (83)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (9774)
-
How can I use ffmpeg to crop a part of a video by frames numbers including video and audio ?
28 mars 2019, par Dubi DuboniI have a simple list :
LReg.start = rise[i];
LReg.end = fall[i];
LR.Add(LReg);start and end are int’s in the end I have a List of the frames I want to extract from a video file. For example in index 0 of LR I have start 48 end 51
In index 1 start 110 end 124So I want to loop over the List an save as a video file the part of a video file using ffmpeg according to the frame number start and end by jumping to this frames.
Jump to frame 48 and create a video file out from frame 48 to 51 including 48 and 51. Then jump forward to the next group of frames 110 and 124 and so on.The problem is how to use ffmpeg to extract and save video files ?
-
Idea on how to make video maker website ?
13 octobre 2015, par Gulam GajaniI want to create website that create video and user can share that website in any social site.
(example sites :
- flixpress.com
- studio.stupeflix.com
- www.photodex.com
- www.picovico.com )
this type of website i want to create.After long research and come to conclusion to use imagemagick and ffmpeg for my website.I learn the basic of the ffmpeg and imagemagick.
SO I create code like this
for text overlay in ffmpeg i create code like thisffmpeg -i input.mp4 -vf drawtext="fontfile=/usr/share/fonts/TTF/Vera.ttf: \
text='Stack Overflow': fontcolor=white: fontsize=24: box=1: boxcolor=black: \
x=(w-text_w)/2: y=(h-text_h-line_h)/2" -codec:a copy output.flvand for imagemagick use convert to make pics and make slideshow with ffmpeg code.
shell_exec(" ffmpeg -framerate 1*10 -i %d.png -c:v libx264 -r 30 -pix_fmt yuv420p out1.mp4");
This code works fine.No error, nothing.
But the output video does not have the quality that i wanted.
My question is that for create website like i mentioned above.Am i using the right software (ffmpeg and imagemagick).what software or code this type of website used ? Any idea ? any opensource software or program for this ?
I am just newbie and try to learn the things.
Please provide guidance on this what i am doing wrong.Just give the software name of programe which is used for this type of website. I can go through by myself. Please Give some idea on this. -
Combine three ffmpeg commands to encode,, text, image and video on a main video in Android
27 mai 2020, par Mit ShahMy question is, I have successfully coded the FFMPEG commands for a text, an image and and a video in android. Now as there can only be one single string command to execute I need to combine those three in single one. How am I able to achieve this ? I have wasted lots of time but couldn't get anything.



For example : There is a main video in background and I have three different view on top of it and I need to make execution.



Thanks.