Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (57)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (11024)

  • ffmpeg : video from images - handling a zero length image file

    29 septembre 2021, par Buadhai

    I have a shell script which uses ffmpeg to crate a time-lapse video from webcam images. Normally, it works just fine :

    


    /usr/bin/ffmpeg -loglevel info  -framerate 4 \
     -pattern_type glob -i $ipath/'*.jpg' \
    -c:v libx264 -crf 30 -y -pix_fmt yuv420p $temp &>>$log


    


    But this chokes if the image is a zero-length file :

    


    -rw-r--r-- 1 pi pi  156636 Sep 29 04:35 image_022.jpg
-rw-r--r-- 1 pi pi  156533 Sep 29 04:35 image_023.jpg
-rw-r--r-- 1 pi pi  159302 Sep 29 04:35 image_024.jpg
-rw-r--r-- 1 pi pi       0 Sep 29 04:35 image_025.jpg
-rw-r--r-- 1 pi pi  157055 Sep 29 04:35 image_026.jpg
-rw-r--r-- 1 pi pi  156851 Sep 29 04:35 image_027.jpg
-rw-r--r-- 1 pi pi  155793 Sep 29 04:35 image_028.jpg
-rw-r--r-- 1 pi pi  160647 Sep 29 04:35 image_029.jpg


    


    In this case the video only included frames up to the zero length JPEG.

    


    I realize I can test the file length of every webcam image, but there must be an easier, more efficient way.

    


    Is there ?

    


  • Porting code from Windows 7 to Linux using using NReco.VideoConverter

    2 février 2017, par Omar Salem

    I trying to port code from Windows 7 to Linux (RHEL 7). I am using the component to connect to a webcam and capture audio and video to a file and also capture frames as images to files. On Windows 7 I used the following code which works :

    var ffMpegTask = videoConv.ConvertLiveMedia(
       @"/dev/video0", // @"video=Logitech ... :audio=Microphone ..." on Windows
       "v4l2",                       // "dshow"  on Windows
       rawBmpOutputStream,
       null,              
       new ConvertSettings() {
               CustomOutputArgs = String.Format(" -r 5 -t 10 output.wmv -r 5 -t 10 output.mp3 -r 5 -t 10 -f rawvideo -s {0}x{1} -pix_fmt bgr24 ",
                       outputWidth, outputHeight)  });    

    This code compiles and executes on RHEL and MonoDevelop but does not generate the audio, video or image files. The webcam blinks for a second and goes away.

  • Record simultaneously [closed]

    7 octobre 2020, par techsolution601

    I am a new developer of mac OS desktop application.
I am trying to build recording application that can output video file of .
(https://drive.google.com/file/d/1ERZ7sJBmDAk8-f38ZRFbxAWfeqs0xmmA/view?usp=sharing)
I can make code of recording desktop screen or webcam separately, but I couldn't know how to make my own video.

    


    Please help me if anyone have experience or can solve this problem.
Regards.