Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (101)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11050)

  • Merge commit ’2830bce47e2eb29c76202f19017031ddc1f95dd3’

    10 octobre 2015, par Hendrik Leppkes
    Merge commit ’2830bce47e2eb29c76202f19017031ddc1f95dd3’
    

    * commit ’2830bce47e2eb29c76202f19017031ddc1f95dd3’ :
    w32pthreads : Load dynamically loaded functions on demand

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] compat/w32pthreads.h
  • ffmpeg segment naming of rtsp surveillance stream HikVisions

    20 juillet 2022, par kenneth558

    I need to ensure unique segment names : Apparent POE cable defects, etc. around campus cause HikVision camera streams to require their ffmpeg daemons re-started once or twice or more times/day. (I am miles away from this campus for the most part, so I prefer a command line fix until the hardware fixes get applied.) When ffmpeg has to be restarted for a camera (by background bash script), I need the names of the new .mp4 segments positively not to be the same as any previous names.

    &#xA;

    Background bash process currently does fine to specify an acceptable ddHHMM style new starting name for the first segment after ffmpeg restart BUT after the first or sometime second or third segment is made, ffmpeg insists on future naming to default to an unacceptable YYYmmdd style and thus start to overwrite previous segments. I use "$(date &#x2B;%d%H%M)" to obtain my acceptable date style.

    &#xA;

    I've tried a lot of different combinations of date codes and date embedding and both ssegment and segment muxers ; also I know very little of the very complex realm that ffmpeg is normally used in outside of simple rtsp stream copy to .mp4 files.

    &#xA;

    ffmpeg command that is launched from inside bash script :&#xA;bash -c &#x27;nohup ffmpeg -nostdin -stimeout 10000000 -rtsp_transport udp -i "rtsp://192.168.0.11:6554/Streaming/channels/101" -reconnect 1 -reconnect_at_eof 1 -reconnect_streamed 1 -c:v libx264 -f ssegment -strftime 0 -segment_time 180 -segment_format_options movflags=&#x2B;faststart -reset_timestamps 0 -increment_tc 1 -avoid_negative_ts 1 -c copy -flags &#x2B;global_header /var/www/camera_streams/camera_east_driveway/"$(date &#x2B;%d%H%M)"_%3d.mp4 > /dev/null 2>/dev/null &amp; &#x27;

    &#xA;

    Can the segment naming pattern be carried forward indefinitely like I want ? Honestly, I wonder if ffmpeg does not allow for my specific use case naming need ?

    &#xA;

    (Yes, I know changing from udp to tcp can help, but I don't consider it to be the specific solid naming fix I'm hoping for right now. And I mention HikVision in case there is known frame encoding differences for them than other cameras)

    &#xA;

  • How to build ffmpeg as a single application on Mac

    14 septembre 2023, par Devin Dixon

    I am trying to compile ffmpeg on mac as a single executable static executable so it can be distributed. Here is my ./configure.

    &#xA;

    ./configure \&#xA;    --pkg_config=&#x27;pkg-config --static&#x27; \&#xA;    --enable-libopenh264 \&#xA;    --enable-version3 \&#xA;    --enable-libopus \&#xA;    --enable-libvpx \&#xA;    --enable-libvorbis \&#xA;    --enable-libaom \&#xA;    --enable-libdav1d \&#xA;    --enable-videotoolbox \&#xA;    --enable-hwaccel=h264_videotoolbox \&#xA;    --disable-gpl \&#xA;    --disable-w32threads \&#xA;    --enable-pthreads \&#xA;    --disable-shared \&#xA;    --enable-static \&#xA;  --extra-ldflags="-L/usr/local/lib" \&#xA;--prefix=~/FFmpeg/dist&#xA;

    &#xA;

    Except it compiles it and still requires linked libraries. If I open it on another mac I get errors likeL

    &#xA;

    Library not loaded: /opt/homebrew/opt/libxcb/lib/libxcb.1.dylib&#xA;

    &#xA;

    And thoughts on what flags I am missing ?

    &#xA;