Recherche avancée

Médias (91)

Autres articles (58)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications 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, par

    Certains 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, par

    Pré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 okandnmz

    I 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_89

    I 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 Kumar

    I 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 or ffmpeg or mediaInfo tools ? can someone suggest me the way to automate my case.