Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

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 (7927)

  • How to encode picture to H264 use AVFoundation on Mac, not use x264

    10 octobre 2016, par wao813

    I’m trying to make a Mac broadcast client to encode into H264 using FFmpeg but not x264 library.
    So basically, I am able to get raw frames out from AVFoundation in either CMSampleBufferRef or AVPicture. So is there a way to encode a series of those pictures into H264 frames using Apple framework, like AVVideoCodecH264.
    I know the way to encode it use AVAssetWriter, but that only saves the video into file, but I don’t want the file, instead, I’d want to have AVPacket so I can send out using FFmpeg. Does anyone have any idea ? Thank you.

  • How to make ffmpeg include the video date in the filename of screen captures ?

    20 avril 2019, par L J

    I’m using ffmpeg to take screen captures every 2 seconds from a series of videos. My script so far (which works) is this :

    "c:\program files\ffmpeg\bin\ffmpeg.exe" -i %1 -vf fps=fps=1.0/2.0 -qscale:v 2 "%~n1 - %%05d.jpg"
    pause

    I’d also like the image filenames to include the following details :

    1. Date and time of the original video
    2. Time in the video of the captured frame

    Are either of these possible ? If so, I would appreciate if answers could be given as an exact script, since I know very little about ffmpeg scripting and likely wouldn’t be able to follow instructions.

  • How to speed up video conversion

    9 mai 2016, par Arheisel

    I’m currently working in a proyect that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.

    For now i’ve tried copying the folder to a ram disk and using avconv wich takes about a minute.

    Here is my command :

    avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg

    could ffmpeg work faster ?
    is there a way to speed it up ?
    wich video format take less time to convert to ?