
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (104)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (12313)
-
Redirecting output to different path
9 septembre 2020, par user14245857this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.


Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.


Code is as follows :


$inputfiles = ls *.mxf

 foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

 ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}



Looking forward to your answers


Thank you very much in advance


-
encoding RGB32 frames to h264 h264_qsv ffmpeg libraries [closed]
4 juillet 2023, par T P SudhakarAm trying to port my software based encoding of RGb32 images to a h264 video using ffmpeg libraries using C++. Does h264_qsv supports encoding RGB32 images to h264 ?


Thanks in advance


-
FFMpeg Effect Zoom In and Zoom Out Video File
21 mars 2019, par Maxim_AI need to implement the effect of zooming in and out for video.
Two operations are needed.
The first operation is to set the zoom to zero at the beginning of the clip, and by the end of the clip the zoom was gradually increased twice.The second operation is that at the beginning of the video the zoom is equal to two, and by the end of the video the zoom should be zero.
That is, it is necessary for the zoom to increase / decrease smoothly throughout the entire duration of the video.
I know that Zoompad effect is used for this, but I could not use it for video.
Thank you all in advance for your help !