Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (71)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (3159)

  • Why ffmpeg-split AVI movie freezes when played

    29 septembre 2015, par bl4ck5un

    I used ffmpeg to split AVI movies like

    ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:22:33 -to 1:2:3 out.avi

    But the output file out.avi is sometimes weird when played (in MPlayerX, for example) — it will stop at the first frame, freezing like a picture, but if I drag the process bar forward, then continue playing at a different place, everything would be fine and the video just goes on smoothly.

    I have limited knowledge on AVI format and ffmpeg, can you guys point out what’s the problem here ? If it’s a matter of kerFrame or what ?

  • ffplay how to change the seek interval

    29 janvier 2021, par oliopti

    I am completing a project in which I need to isolate single frames and their time stamps. I am using ffplay. using the "s" key I am able to stepwise move forward frame by frame. However when I try to move backwards a frame it jumps back 10 seconds. Is there a way to change this default based on my fps that the video was recorded at in order to jump back frame by frame ?
There seems to be a command including seek_interval, but limited documentation on how to implement this for a 25fps video file.
Thank you !

    


  • How to compile ffmpeg.c and its dependencies code in Eclipse ?

    15 juillet 2013, par user1914692

    Since there is very limited number of ffmpeg examples, I want to know ffmpeg better through debugging ffmpeg process.

    So with the downloaded ffmpeg code, I hope to only compile ffmpeg.c (has a main function) with its dependences in Eclipse.

    But when I put the source in a project of Eclipse, it put out errors as :
    ‘F_NOCACHE’ undeclared (first use in this function) yuvcmp.c /ffmpegTest/src/tools line 63 C/C++ Problem

    I failed to find information about F_NOCACHE.
    Where and how to set its value ?