Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (86)

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

  • How to extract photo from a CCTV video based on time using python dynamically [on hold]

    16 avril 2015, par PSSR

    I have a CCTV Video AVI file from that I want to take photo or screen based input time.

    This I would like to do dynamically whenever I gives time as input to python script, script should read the video and should give the snap or photo or segment @given time.

    Is it possible to do,If it is possible please help me to do the same

  • assign Date and time as output file name

    2 avril 2014, par Maged E William

    I use C# to start and stop 'ffmpeg' process, and I can easily name my output file like this :

    "-f image2 -framerate 10 -i " + d + "\\%06d.jpeg -c:v libx264 -r 10
    -crf 37 -pix_fmt yuv420p E:\" + DateTime.Now.ToString("dd_MM_yyyy_h_mm_ss_tt") + ".flv";

    but I wonder if I can do it using only ffmpeg to be some thing like this :

    "ffmpeg -f dshow -i video="screen-capture-recorder" -c:v libx264 -r 10
        -crf 37 -pix_fmt yuv420p E:\D_M_Y_H_M_S_T.flv"

    this question is very close to what i need, one thing in deffrent i need all of it in cmd

  • Trim video with reference to a start time and end time using FFMPEG

    8 février 2015, par Saty

    I am trying to do an application in which I would like to give option to user to clip a video using double seekbar so that video can be cropped.

    I had hassle importing FFmpeg into Eclipse. However, that pain is over, and I got two points of video and can instantiate FFmpeg’s instant.

    My focus is to know to know the method and procedure to crop a video.

    I got the command of cutting it, that is,

    ffmpeg -ss [start] -i in.mp4 -t [duration] -c:v copy -c:a copy out.mp4

    However, how do I use this in code ?