
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (77)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (10414)
-
How to integrate Exoplayer FFmpeg extension into media3
10 novembre 2023, par Soufiane Hamama**If any one know how to migrate or has a builded aar ffmpeg extension for media3 please help
**
https://captaindroid.com/how-to-integrate-exoplayer-ffmpeg-extension/


https://github.com/google/ExoPlayer/tree/release-v2/extensions/ffmpeg


Im trying to migrate this extention to media3 and i don't know how am using exo player media 3 version 1


y default android does not support some audio and video codecs and so Exoplayer. This is perfectly ok. Exoplayer has a different work around for this problem.


I think you have heard about FFmpeg. Its a command line tool for convert audio and video codec. Exoplayer uses FFmpeg to support various type of audios only. For example if a video file contains ac3 audio then the video will keep playing without any sound.


-
How to determine if ffmpeg supports an extension for the output file ?
9 février 2023, par JuribiyanWhen ffmpeg is given a command to output a file with a particular extension it presumably runs an internal algorithm do determine what encoder and/or muxer to use with it. Is there a command to find out whether a particular output extension is supported or not ? Like in imagemagick with a command
magick identify -list format
?

ffmpeg -h muxer=mp4
does not work with image formats likejpg
andpng
even though ffmpeg is capable of outputting images of these formats.

ffmpeg -formats
does not seem reliable enough as well as instead ofjpg
it hassinglejpg
and does not includepng
(onlyapng
andpng_pipe
).

-
Is there any way to extract RTP extension header data using ffmpeg functions ?
8 mai 2016, par kostylI want to extract RTP extension header data while reading ffmpeg packets using
int av_read_frame(AVFormatContext *s, AVPacket *pkt);
But seems that ffmpeg skips RTP extension header data while creatingAVPacket
data (link to code ). ffmpeg makesAVPackets
fromRTPPacket
data. So probably there is a way to get currentRTPPacket
after or before callingav_read_frame
? ... or probably somebody knows another way ?