
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 (58)
-
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 (7638)
-
Recorded by FFMpeg Video doesn't show the statistics in details
28 novembre 2019, par okandnmzI use the FFMpeg to record the video I received as input with "Pipe". Although the recording process was successful after recording, no statistics, details are given in the details tab (Right click to recorded video -> properties -> details tab) (Windows 10)
My FFMpeg commands something like that :
ffmpeg -vsync 1 -i %PIPE% ....
For this problem, I’ve already tried the following commands :
-metadata ....
-vstats ......Probably i misunderstood that commands so in the result both of them is not working. Should i specify that values (title, fps, bitrate...) in somewhere and for that aim is there any commands ?
(the recorded video source is not the existing file, its live stream) -
ffmpeg udp multicast encoding not working
24 mars 2024, par hhs_89I am trying to use ffmpeg to receive audio data from mic via UDP and it to http server. The audio data has following properties :


sample rate = 16000
bit depth = 16
buffer size = 1280



When I execute ffmpeg command with UDP multicast, it gives me error "Invalid data found when processing input".


The command I am using is :


-i udp://239.10.10.100:4546 buffer_size=1280 bitrate=16000 icecast://ip:port/mountname



However, I can save the audio data to a local file by using following command :


'-re -ar 16000 -ac 1 -f s16le -i udp://239.10.10.100:4546 $dbPath'



Can anyone help me understand this better ?


-
How to find a text overlay in video file ?
30 avril 2019, par Sunil KumarI have some video files which are Transcoded using ffmpeg, files contain text and Logos overlayed on video. As part of my test automation i used
ffprobe
to find the video and audio properties of file,ffprobe -v quiet -show_streams -show_format "sample.mp4"
But i am unable to extract text/logo overlay details from video file, Is there any options present in
ffprobe
orffmpeg
ormediaInfo
tools ? can someone suggest me the way to automate my case.