
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (101)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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, parMediaSPIP 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, parCertains 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 -
ffmpeg segment naming of rtsp surveillance stream HikVisions
20 juillet 2022, par kenneth558I 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.

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 +%d%H%M)"
to obtain my acceptable date style.

I've tried a lot of different combinations of date codes and date embedding and both
ssegment
andsegment
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.

ffmpeg command that is launched from inside bash script :

bash -c '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=+faststart -reset_timestamps 0 -increment_tc 1 -avoid_negative_ts 1 -c copy -flags +global_header /var/www/camera_streams/camera_east_driveway/"$(date +%d%H%M)"_%3d.mp4 > /dev/null 2>/dev/null & '


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 ?


(Yes, I know changing from
udp
totcp
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)

-
How to build ffmpeg as a single application on Mac
14 septembre 2023, par Devin DixonI am trying to compile ffmpeg on mac as a single executable static executable so it can be distributed. Here is my ./configure.


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



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


Library not loaded: /opt/homebrew/opt/libxcb/lib/libxcb.1.dylib



And thoughts on what flags I am missing ?