
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (71)
-
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 (...) -
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 (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (8397)
-
Convert Video to HTML5 formate on live streaming
30 juin 2016, par php-coderthis may be answered before but i am not able to find the correct answer for my problem.
I am developing a site in PHP where user can upload a video in any format (only video format), the format can be any wmv, avi, flv, mp4 etc.
But I only need to play that video using html5 video tag, but HTML5 only support mp4, WebM and Ogg extension. And I don’t want to convert the video to any other format other than original due to some copyright rules.
now I come up to conclude to convert original video to html5 supported on live streaming, so I have gone through everywhere and google it so many time and other ways but I only find the solution for FFMPEG which convert my video to html5 support and save on my server which i don’t want, as that make much burden on my server saving same video in three different formats....
So, I need a help if anyone can suggest me how I can use video with any format to play it on HTML5 video tag.
Thanks in advance.
-
Can -axcorrelate be used for time delay analysis ?
31 octobre 2020, par koralI'm trying to find a way to easily automatically synchronize two audio tracks. I've found the axcorrelate filter in ffmpeg's documentation, and I'm curious if it can be used for time delay analysis with cross-correlation.


I've been playing around with correlating different audio files and opening them in Audacity to see some sort of a pattern that can be detected in the output file, but I wasn't able to see anything that stands out to me.


My observations :


- 

- correlating two same tracks results in mostly empty output
- if I delay one of the input files by one second, the correlation start (time in wav file when for the first time a sound is output) is moved by one second forward, but the delay cannot be calculated since the original start time is unknown
- correlating some original file with that original file delayed by some amount results in gibberish data, that seems random to me








Any help would be appreciated. I found this pdf that uses Praat to detect the cross correlation, but I'd like to keep this FFmpeg only to not ship multiple dependencies to my users.


-
ffmpeg : gif to mp4, image slants diagonally
20 mai 2021, par vijayvithalI have a gif animation which I am trying to convert to an mp4 video.


ffmpeg -i rb.gif -movflags faststart -pix_fmt yuv420p video.mp4 



The resultant video has all frames other than the first frame wrapped around a diagonal line.




Original :



What is causing this error ? how do I fix this ?