Recherche avancée

Médias (91)

Autres articles (76)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (4940)

  • License / patent consideration of ffmpeg in mobile app (react native ffmpeg kit) [closed]

    25 décembre 2024, par The MW

    So I am using the react native ffmpeg kit in my mobile app, it is a closed source, commercial app.

    


    I am using the following functions/modules in the app :

    


      

    1. Trim video
    2. 


    3. ffprobe to get frame count.
    4. 


    5. add overlay png to video
    6. 


    7. use minterpolate
    8. 


    9. use libx264
    10. 


    


    and I am using the default package (per the document page, it has https enable by default)

    


    So I am wondering is this allowed in terms of software license and patent ?

    


    If not, what can I do in order to meet these license and patent requirements ?

    


    Thanks

    


  • Can I use FFMPEG to record ultra sonic ?

    23 février 2018, par OtakuFitness

    I use av_dump_format() to check information and I get

    Stream #0:0: Audio: pcm_s16le, 48000Hz, 2 channels, s16, 1536kb/s

    Now I can record music, it’s working well(I generated a pcm file to listen). However, in terms of ultra sonic, I can’t record any useful audio information, so can I use FFmpeg to record ultra sonic ?

  • Issue using moviepy package (Python)

    25 décembre 2023, par carm91

    I'm using ffmpeg_extract_subclip function from moviepy to process video files. However, the video cut I get is not the same length between start time and end time I set. For example, writing :

    


    from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip

clip=clip_filename
cutclip="cutvideo.avi"
ffmpeg_extract_subclip(clip_filename, 0, 10, targetname=cutclip)


    


    I get a video of length 10,03 or something like that (in terms of frame count, I get 602 frames instead of exactly 600).
Is there a way to get a more accurate output ?