Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (88)

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

  • a problem with ffmpeg using pulse mode to open audio device blocking [closed]

    21 juin 2024, par ZhangKun

    on linux x86 system, command line terminal,
music on,
"ffmpeg -f pulse -i xxxx(audio dev name,is a loudspeaker) /tmp/xxxx.wav" run perfect ,
"aplay -i /tmp/xxxx.wav" can play Captured speaker sound,

    


    but,
in cpp code,

    


    {
   ...
   AVInputFormat * fmt = av_find_input_format("pluse");
   if(!fmt)
      return -1;
   
   AVFormatContext *ctx = avformat_alloc_context();
   if(!ctx)
     return -1;

   int ret = avformat_open_input(&ctx,"xxxx dev name",fmt,NULL);  //block.......

   ...
}


    


    why ternimal not,code blocking,Does anyone know ?

    


  • How can I delete a file in FOR loop in batch scripting after another command ?

    1er octobre 2020, par Andrew Anderson

    I compress a video with FFMPEG by means of a batch scripting one-liner with a FOR LOOP. After compressing I want to remove the original file.

    


    This code perfectly makes the compressing job, but the original file is not being removed :

    


    for %%i in (*.mp4) do ffmpeg -i "%%i" -vcodec libx265 -crf 28 "%%~ni"-small.mp4&&del "%%i"
pause


    


    What have I missed ?

    


    By the way, this is a near to perfect compression ratio for any kinds of educational videos, tutorials, etc. which have occupied your hard drive.

    


  • Generate images at given time from flv video using ffmpeg

    22 novembre 2013, par CodeJack

    I am using the following command in ffmpeg to generate thumbnails. It is working perfect.

    ffmpeg -i videofile.flv -an -ss 01:00:00 -an -r 1 -vframes 1 -y ".$outputdir."/".$groupid."_".$i.".jpg

    But problem is I have different seek times of a video from where thumbnails have to be generated and right now Iam using a loop which is running very slow. I found the reason as ffmpeg seeks to the given time for every command. I tried forking the process but is not effective. Is there anyways i can optimise the command so the repetitive seeks can be avoided ?