
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (83)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7753)
-
ffmpeg and gnu parallel
16 août 2013, par souvikMy work would require me to encode a few thousand movies in a few days. Each movie needs to be encoded in 3 different formats. I use ffmpeg to output these formats in parallel with a single read of the input source as detailed here : http://ffmpeg.org/trac/ffmpeg/wiki/Creating%20multiple%20outputs
In addition, I am using GNU Parallel to encode from multiple video files in parallel. We have four blade servers of different configurations (48, 32, 16 and 16 cores) encoding videos in parallel. Ideally, we should be able to encode 112 videos in parallel.
However, it seems that encoding completes faster on machines with lesser cores. I have 16 completed encodes on the 16 core servers in around 4 hours, while it takes close to 10 hours for 48 encodes to complete on the 48 core system. What could be the bottleneck ? A typical encode command is as follows :
ffmpeg -i sample.mpg -y -vcodec libx264 -vprofile baseline -level 30 -acodec libfdk_aac -ab 128k -ac 2 -b:v 500K -threads 1 encoded/sample_enc.mp4
Any pointers highly appreciated. Thanks !
-
HW Accel Transcode Intel Quick Sync Video QSV h264_qsv and CRF Quality
26 août 2020, par Matt McManisI'm having a problem with HW Accel Intel Quick Sync Video and CRF.



It looks like CRF
-crf
is not compatible with-c:v h264_qsv
.


Only Bit Rate
-b:v
works with-c:v h264_qsv
.


ffmpeg -i input.mp4 -c:v h264_qsv -crf 25 -pix_fmt nv12 output.mkv






https://trac.ffmpeg.org/wiki/Hardware/QuickSync



The guide says "ICQ mode (which is similar to crf mode of x264)"
-global_quality 25



ffmpeg -i input.mp4 -c:v h264_qsv -global_quality 25 -pix_fmt nv12 output.mkv




But I cannot get it to work. I get the error
Selected ratecontrol mode is unsupported
.




How do I get either CRF or ICQ to work ?


-
FFMpeg : reencode audio file to have the same codec params as another file [closed]
11 mars 2023, par EvilOrangeI need to merge three audio files :


- 

- big1
- small1
- big2








Codecs in these files may differ (but big1 and big2 which always have the same codec)


small1 is about 20-30 seconds


Now I'm using the following command for that :


ffmpeg -i big1 -i small1 -i big1 -filter_complex concat=n=3:v=0:a=1 -c:a {big1.extension} -vn out.{big1.extension


it's working, but this will require reencoding and it's slow.


I think, that it can be optimized by using concatenation without reencoding : https://trac.ffmpeg.org/wiki/Concatenate


But I need the same codec for all files.


So, now I need the following :


- 

- Get codec information from big1
- Reencode small1 to the same parameters
- merge files using concat demuxer without reencoding








So, I need a way to get codec information and pass these params to ffmpeg to convert small1.


I'm not tied to ffmpeg, if another linux cmd tool can do the same ( fastly merge three audio files) - it's also acceptable.