Recherche avancée

Médias (91)

Autres articles (54)

  • 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 (6793)

  • Running batch file from C# causes file not found error [on hold]

    29 juillet 2018, par user10152616

    I am streaming an IP camera using the program FFMPEG. I made a C# windows sform app to restart the FFMPEG process if it stops running. The C# app kills the process and starts a batch file which runs the FFMPEG command. It works great. However, I wanted to change the FFMPEG command so that it loads a .acv color file to correct some haze in the image. The problem is FFMPEG says file not found when it tries to load the .acv file. FFMPEG and the .acv file are in the same directory so I don’t see how this is possible. The batch file works fine if I double click on it. It’s only when run from the C# program that FFMPEG can’t find the .acv file.

    Any help greatly appreciated,

    Thanks

  • How to find currently streaming file in ffmpeg stream that uses a file list

    27 février 2021, par DigitalDisaster

    I am using ffmpeg to stream to an RTMP server. I am using the option to provide ffmpeg a text file with a list of files to stream. My file looks like this :

    


    ffconcat version 1.0
file 'stream_file1.flv'
file 'stream_file2.flv'
file 'stream_file3.flv'


    


    It loops through these files while streaming. Is there a way to programmatically find out when ffmpeg switches between each file ? Either from ffmpeg dumping some logs that I can injest, or by using python to check the state of the stream every second ?

    


  • How to add MOV file header to raw data written file with ffmpeg ?

    10 janvier 2018, par gstream79

    I am going to record H264 encoded video stream data in iOS using swift.
    I am not familiar with video codec formats so don’t know how to do this. But I’ve tried to write the H264 raw video data to the file sequently and see its file Info. I am surprised that it has almost video file info (compared with standard mp4, MOV file). The only missing info is video duration, file size, overall bit rate, encoded data, etc. So I am just wondering if video can play if I add the MOV file header to this file manually. Spent few hours to googling how to add MOV file header with ffmpeg but stacked. Any help would be appreciated. Thanks