
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (99)
-
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 (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (11664)
-
avcodec/decode : copy the output parameters from the last bsf in the chain back to...
27 juillet 2018, par James Almeravcodec/decode : copy the output parameters from the last bsf in the chain back to the AVCodecContext
Certain AVCodecParameters, like the contents of the extradata, may be changed
by the init() function of any of the bitstream filters in the chain.Signed-off-by : James Almer <jamrial@gmail.com>
-
convert and copy output with ffmpeg [on hold]
24 octobre 2015, par Lolaki am trying to convert an avi file to mp4 then copy it to more versions
currently i convert all of them at once but that take more timeffmpeg -i input \
-s 1280x720 -acodec … -vcodec … output1 \
-s 640x480 -acodec … -vcodec … output2 \
-s 320x240 -acodec … -vcodec … output3i need something like this
ffmpeg -i input \
-s 1280x720 -acodec … -vcodec … output1 \ (convert this first when finish copy)
-c:a copy -s 640x480 -acodec … -vcodec … output2 \
-c:a copy -s 320x240 -acodec … -vcodec … output3i found this command on ffmpeg website
ffmpeg -i input1 -acodec … -vcodec … -f mpegts - | \
ffmpeg -f mpegts -i - \
-c copy output1 \
-c copy output2 \
-c copy output3 \but i have no idea how to make it work
i am not even sure that this is the right command for it
so i have for example test.avi that i want to convert to test.mp4 then copy test.mp4 to test1.mp4 and test2.mp4
need that to output different video qualities -
How to copy audio & video streams without re-encoding in GStreamer ? [migrated]
2 décembre 2022, par nevermindmynameIn
ffmpeg
you can use "-c:a copy -c:v copy" to copy audio & video streams without re-encoding the output file, this is the way if you want to make little details in shorter time, like trims.

However in my case I'm using GStreamer, is it possible ?