Recherche avancée

Médias (0)

Mot : - Tags -/images

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

  • 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 ?

  • Copy metadata from one mp4 file to another in python

    8 juin 2020, par hampani

    I have a simple script for copying the exif (metadata) from one .jpg to another.

    



    import piexif
import os

for filename in os.listdir(directory):
    if filename.endswith(".jpg"):
        piexif.transplant(exifSrc, filename)
    else:
        continue


    



    I now want to create a script that copies the metadata from one .mp4 to another. However, my programming skills are very limited and I can't even find a library (with documentation that I understand) to even start the project. I think ffmpeg can do the trick, altough I'm not sure.