
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (71)
-
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 ;
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (6771)
-
How to extract subtitle from usm file
14 janvier 2024, par Marcin NancinI would like to extract subtitle.txt from usm file, I tried use ffmpeg but it show unspuported file. Hexedit show that file has txt extension. Ffmpeg support demux cri usm file, but I cant figure out how to do it.


Duration: 00:03:10.00, start: 0.000000, bitrate: 12383 kb/s
 Stream #0:0: Video: mpeg1video, yuv420p(tv, progressive), 1280x720 [SAR 1:1 DAR 16:9], 104857 kb/s, 30 fps, 30 tbr, 30 tbn
 Side data:
 cpb: bitrate max/min/avg: 0/0/0 buffer size: 4554752 vbv_delay: N/A
 Stream #0:1: Audio: none, 44100 Hz, 2 channels
 Stream #0:2: Audio: none, 44100 Hz, 2 channels
 Stream #0:3: Audio: none, 44100 Hz, 2 channels
 Stream #0:4: Audio: none, 44100 Hz, 2 channels
 Stream #0:5: Audio: none, 44100 Hz, 2 channels
 Stream #0:6: Audio: none, 44100 Hz, 2 channels
 Stream #0:7: Audio: none, 44100 Hz, 2 channels
 Stream #0:8: Audio: none, 44100 Hz, 2 channels
 Stream #0:9: Audio: none, 44100 Hz, 2 channels
 Stream #0:10: Audio: none, 44100 Hz, 2 channels
 Stream #0:11: Subtitle: none
At least one output file must be specified



I tried to unpack the file but I still get an error that the codec was not detected.


-
What is the best way to take care of noise in ffmpeg ?
4 février 2021, par laboyI have an old piece of footage that while being high quality is a bit worn and has a lot of film grain and those lines that show up on old film.


-
libavcodec/mpeg12dec : append CC data to a53_buf_ref
14 décembre 2024, par Scott Theisenlibavcodec/mpeg12dec : append CC data to a53_buf_ref
In mpeg_decode_a53_cc() only the A/53 part 4 CC data ("GA94") is saved between
frames. The other formats incorrectly created a larger buffer than they use
since a705bcd763e344fac191e157ffeddc285388b7fa because they did not append to
the previous data.The a53_buf_ref is added to the frame in mpeg_field_start() which will only be
called in decode_chunks() if not all of the picture data slices are skipped.For these formats, utilize the data added to the buffer in case frames are skipped
(concatenating the CC data until a frame can be exported), in a similar fashion to
the A/53 part 4 logic.Reviewed-by : Marth64 <marth64@proxyid.net>
Signed-off-by : Marth64 <marth64@proxyid.net>