Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (112)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8305)

  • How to save frame numbers with ffmpeg ?

    14 mai 2016, par JulianJ

    I am using ffmpeg to scan video files for scene changes and save the results to a text file. The code I am using below works but I want to simplify the results and just output the frames number where the scene changes occur and the not all the data that this code produces. Any suggestions ?

    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=input.mov,select=gt(scene\,.02)" > results.txt

    Outputs all this :

    media_type=video    stream_index=0  key_frame=1 pkt_pts=31031   pkt_pts_time=1.292958   pkt_dts=31031   pkt_dts_time=1.292958   best_effort_timestamp=31031 best_effort_timestamp_time=1.292958 pkt_duration=N/A    pkt_duration_time=N/A   pkt_pos=82320   pkt_size=629760 width=640   height=328  pix_fmt=rgb24   sample_aspect_ratio=1:1 pict_type=I coded_picture_number=0  display_picture_number=0    interlaced_frame=0  top_field_first=0   repeat_pict=0   tag:lavfi.scene_score=0.025551  
  • decklink : support all valid numbers of audio channels

    20 décembre 2015, par Matthias Hunstock
    decklink : support all valid numbers of audio channels
    

    As it is already written in the documentation, BMD DeckLink cards
    are capable of capturing 2, 8 or 16 audio channels (for SDI Inputs).
    Currently the value is hardcoded to 2. Introduces new option.

    Reviewed-by : Deti Fliegl <deti@fliegl.de>
    Signed-off-by : Matthias Hunstock <atze@fem.tu-ilmenau.de>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/indevs.texi
    • [DH] libavdevice/decklink_common_c.h
    • [DH] libavdevice/decklink_dec.cpp
    • [DH] libavdevice/decklink_dec_c.c
  • ffmpeg : `select` filter output frame numbers are off

    28 juin 2020, par kindoflike

    I want to extract certain frames from video, but using this command

    &#xA;

    ffmpeg -i "video-a.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "a_%06d.jpg"&#xA;ffmpeg -i "video-b.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "b_%06d.jpg"&#xA;

    &#xA;

    it seems I'm getting inconsistent results. for different videos I get differently named files :

    &#xA;

    a_000103.jpg&#xA;b_000101.jpg&#xA;

    &#xA;

    why is that ?

    &#xA;