
Recherche avancée
Autres articles (76)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14865)
-
Converting with ffmpeg a .mov to uncompressed .avi results in a black screen in virtualdub [migrated]
28 mai 2013, par TazgerOI am trying to convert a .mov to an uncompressed .avi with ffmpeg. As I want no quality loss, I am using the following ffmpeg command :
ffmpeg -i toto.mov -vcodec copy -y toto.avi
The convertion works perfectly (the video works in VLC) except that when I am opening the file with virtualdub I get a black screen.
In VirtualDub, under file information I get the following :
Frame size: 800x600, 30.000fps
Length: 802 frames
Decompressor: Internal DIB decoderIf I am not specifying the -pix_fmt and -vcodec arguments, ffmpeg convert to mpeg-4 and yuv420p but I am loosing on the quality as my file shrunk to about 400Mo to 1Mo but the video works in virtualdub and this time the Decompressor is set to ffdshow Video Codec (FMP4). I doubt this is a ffdshow as I had another video working perfectly with the internal DIB decoder.
Any idea, to get the image in virtualdub ?
-
FFMPEG trim video resulting not moving videos and black video with audio
13 juin 2023, par RafliiiI tried to trim my video based on start and end time with the following code :


ffmpeg -ss 02:06:30.500 -to 02:06:32.417 -i movie.mp4 -c copy output.mp4


The output video is not moving video and some of them are black videos with audio. What should I do ?




What should I do ?


-
trimming video with FFMPEG, but the output is a black video, with audio
18 juillet 2017, par riancui have a video, and i want to trim it. This is what I am doing :
ffmpeg -i input.mp4 -ss 0 -t 4 -vcodec copy -acodec copy output.mp4
However, output.mp4 only provides me with the correct audio — the video is just a black screen
I found a similar issue, and someone said to add -pix_fmt yuv420p
I added it, but nothing changed (did i add it incorrectly ?)Any thoughts ?