Recherche avancée

Médias (91)

Autres articles (86)

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

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

  • Feeding FFMPEG from buffer in c code RAW H264 to MP4 wrapping

    8 mai 2017, par abraxas1

    i have a raw h264 stream coming in from cameras with a custom API. data gets put into a callback function in my c code.

    i need to wrap this as mp4. i’m using ffmpeg to do this now, but only after the h264es file has been written and closed, so very time consuming on a beaglebone-like processor.

    i have been trying to write this data to a named pipe and feed that to ffmpeg but can not get this to work. maybe i’m not opening/closing pipes properly, it hangs. or not specifying the piping properly for ffmpeg.

    is it possible to feed the buffered data more directly to ffmpeg ?
    or, how do i set up the named pipe to work properly ?

    first i’m opening the fifo like this

    g_fifoname="/tmp/fifocam1.h264";
    mkfifo(g_fifoname, 0666);               // make the fifos
    fd_fifo[ch+brd*2] = open(g_fifoname, O_RDWR);

    then, i’m calling ffmpeg like this, at this moment anyway. trying many things.

    char* execargs[]={PATH_TO_FFMPEG,"-re","-y","-framerate","30","-f","h264","-video_size","1920x1080","-i",g_fifname,"-c:v","copy","-an",pathname, (char*)0};

    i probably got the ffmpeg call wrong. argh.
    i open the fifo first, then start ffmpeg.
    when streaming is stopped i close fifo’s, then close ffmpeg output file.

    ffmpeg is so powerful and frustrating to wrangle.
    thanks all,

  • lavc/libkvazaar : indent the code

    15 décembre 2018, par Jun Zhao
    lavc/libkvazaar : indent the code
    

    indent the code to follow FFmpeg's coding style

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavcodec/libkvazaar.c
  • Transforming ffmpeg code to batch process files in linux

    27 janvier 2019, par Kururin

    I need help converting ffmpeg command to so I can batch process the files

    ffmpeg -i in.mkv -vf subtitles=in.mkv:si=0 -c:v libx264 -c:a copy -map 0:v -map 0:a:0 out.mp4

    Convert everything in the folder to same name as the .mkv file but to .mp4. The file name can have [ ] _ and spaces. So I will really appreciate if any one can help me and explain the process !