Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (21)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (6956)

  • how to put EXEC command in loop in TCL with windows platform

    26 février 2019, par M. D. P

    how to put EXEC command in loop in TCL with windows platform.

    I need to run EXEC command continuously. but the problem after its first execution it stops.

    my code is

    proc a {} {
     set a 1
     for {set i 0} {$i < 10} {incr i} {
       puts "I inside first loop: $i"
       exec ffmpeg -f dshow -benchmark -i "video=Integrated Webcam" \
               -s 1280x720 c:/test/sample_image.avi
     }
    }
    a

    The above program should capture 10 video. but it captures only one video and comes out from the loop and stops the execution.

    can any of my friend help me by providing me the answer with the required modification in code.

  • avutil/file_open : avoid file handle inheritance on Windows

    29 octobre 2015, par Tobias Rapp
    avutil/file_open : avoid file handle inheritance on Windows
    

    Avoids inheritance of file handles on Windows systems similar to the
    O_CLOEXEC/FD_CLOEXEC flag on Linux.

    Fixes file lock issues in Windows applications when a child process
    is started with handle inheritance enabled (standard input/output
    redirection) while a FFmpeg transcoding is running in the parent
    process.

    Links relevant to the subject :

    https://msdn.microsoft.com/en-us/library/w7sa2b22.aspx

    Describes the _wsopen() function and the O_NOINHERIT flag. File handles
    opened by _wsopen() are inheritable by default.

    https://msdn.microsoft.com/en-us/library/windows/desktop/ms682425%28v=vs.85%29.aspx

    Describes handle inheritance when creating new processes. Handle
    inheritance must be enabled (bInheritHandles = TRUE) e.g. when you want
    to pass handles for stdin/stdout via lpStartupInfo.

    Signed-off-by : Tobias Rapp <t.rapp@noa-audio.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/file_open.c
  • ffmpeg windows - combine multiple videos in folder and subfolders into one video [closed]

    21 décembre 2020, par Kirill

    I have Xiaomi security camera which is saving videos with length of 3 sec.&#xA;So I have such structure of my full day capture :&#xA;Folder with name of date, for example 20201221, that contains subfolders with hours (00 ; 01 ; 02 ; ... ; 23 ;), each of these folders contains subfolders with minutes (00 ; 01 ; ... ; 59 ;), each of them contains 20 mp4 video files with 3 seconds duration.&#xA;I need to generate one mp4 video of whole day with help of ffmpeg and windows 10 command line.&#xA;Can someone help me to do these ?&#xA;Thank you !

    &#xA;