
Recherche avancée
Autres articles (112)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (9568)
-
ffmpeg output doesn't play on multiple devices
22 janvier 2019, par jchaykowI have read the other stackoverflow posts regarding this topic so I am fairly certain this is not exact duplicate.
ffmpeg exports a video that seems to only play on select players. I want to export a video that plays on iphone/mac/general players. I have seen the suggestions for the
-pix_fmt yuv420p
tag but this does not seem to work anymore - I read that Mac has since changed their systems that makes it not compatible anymore.I am running :
ffmpeg -start_number 1 -framerate 4 -pix_fmt yuv420p -i screen%01d.png output.mp4
This all works fine and I can see the video by doing :
ffplay output.mp4
But I would like to be able to transfer this to mobile or general playback, any way to do this, ideally using ffmpeg ? I’d rather not use two tools to do 1 job.
- Works on gmail
- Doesn’t work on QuickTime Player
- Doesn’t work on Flip Player
- Doesn’t work on iPhone
-
How do you compile FFmpeg for Windows (x86 and x64) using GCC/Clang for Windows ?
31 juillet 2019, par cdlvcdlvThere’s an in passing mention to GCC/Clang in the FFmpeg compiling guide.
- If using
GCC/Clang
, consider adding-march=native
to--extra-cflags
to make slightly better use of your hardware.
Alternatively, for a more general solution, examine the--arch
and
--cpu
options. Gains are variable, and usually quite small. However,
this is usually even more safe than the above, and is thus listed
here.
I found a guide to compile FFmpeg 4.0 for Android, for example, but none devoted to Windows builds.
I’m interested in detailed answers explaining how you get to compile FFmpeg Windows builds for x86 and x64 using GCC/Clang for Windows or a successfully tested guide to it (which I didn’t find).
Please include the way you must install every software needed. Needless to say, any other useful information should be in comments.
- If using
-
Move or copy and truncate a file that is in use
12 mai 2012, par Karl JóhannI want to be able to (programmatically) move (or copy and truncate) a file that is constantly in use and being written to. This would cause the file being written to would never be too big.
Is this possible ? Either Windows or Linux is fine.
To be specific what I'm trying to do is log video with FFMPEG and create hour long videos.