
Recherche avancée
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (12015)
-
Problem with ffmpeg (saving mp4) AttributeError : 'NoneType' object has no attribute 'dpi' [closed]
29 avril 2023, par CompletenoobieHello when I try to save the following mp4 i get an error message. Code worked on another pc.


AttributeError : 'NoneType' object has no attribute 'dpi'


-
FFMPEG Problem : converting gif to mpeg with 29.97 frame rate
12 mars 2024, par Brad DennisI construct a large gif to have 29.97 frames per second (dvd and blue-ray standard), but it's not possible to set the gif to be a rate that's not an integer number of ms. Is there a way to to tell ffmpeg to correct the frame rate without changing the number of frames ?


The closest frame rate is 33 ms so that's what the gif is set to. This line creates a decent quality video, but it runs way overtime.


ffmpeg -f gif -r 29.97 -i a :\video.gif a :\video.mp4


-
problem with executing flutterFFmpeg command
28 février 2021, par Sadiq Samailathe code below is for creating a robot voice with flutterFFmpeg


so here is the code I ran


String commandToExecute =
 "-i $aud -filter_complex 'afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75' " +
 outputPath;
 
 _flutterFFmpeg.execute(commandToExecute).then((rc) => print(
 "FFmpeg process exited with rc $rc $appDocumentDir"));



and I got this error


E/mobile-ffmpeg( 5493): [AVFilterGraph @ 0x7ce619159800] No such filter: 'im)*sin(0):imag'
E/mobile-ffmpeg( 5493): Error initializing complex filters.
E/mobile-ffmpeg( 5493): Invalid argument
D/flutter-ffmpeg( 5493): FFmpeg exited with rc: 1



I tried changing all single quote(') to double quote(") in the command but it did not work.