Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (63)

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

  • Creating a m3u8 clip from another m3u8 file

    14 janvier 2021, par Alan
    


    I wanna create a m3u8 clip from another m3u8 file.
This is the command line I'm giving on terminal
ffmpeg -ss 6.2 -i test.m3u8 -y -t 45 -profile:v baseline -s 640x360 -level 3 -start_number 0 -hls_list_size 0 -f hls output_test.m3u8
It is giving me an output of a new m3u8 clip of 45s but nothing happens in the first 3-4 seconds.
Anything I'm missing ?need help

    


    


  • FFMPEG - Windows Batch - Loudnorm Print to File

    22 août 2023, par Atlantis0813

    I would like to have the first three minutes of some M3u8 urls from a text file checked for loudness and have the results written to a file.

    


    The following Windows batch code works in the Windows terminal. But the log.txt remains empty.

    


    for /F "tokens=*" %%A in (input.txt) do ffmpeg -i %%A -ss 0 -t 180 -af loudnorm=I=-16:TP=-1.5:LRA=15:print_format=summary -f null - >> log.txt

    


    Expect Output appended to file.

    


  • Where is a binary file once it's been built (for ffmpeg) ?

    28 juillet 2021, par James Skidmore

    I need to build ffmpeg for Mac for converting MOV to FLV in a Java application. I made and installed LAME and then FFMPEG, but I'm confused as to what file I should grab to include with the Java application. What is the binary file ? The previous version that I grabbed from the source of ffmpegX was 10mb in size, but the file that's in my /usr/local/bin is only 0.1mb. Is that the right file, or what do I need to include ?

    



    I'm not too savvy with anything that needs to be typed into Terminal, so excuse the lack of technical jargon !