Recherche avancée

Médias (91)

Autres articles (62)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (6734)

  • Crontab task scheduled every hour stops running from 11am to 12am

    11 août 2019, par technik

    I have a rather weird issue. My aim is to use ffmpeg to grab a screenshot from a home CCTV cameras rtsp stream every hour. I want to do this in order to make a timelapse. However everyday from 11am to 12am (the next day) there are no snapshots saved.

    On an always on Debian machine, this is the shell script I have that crontab calls :

    dt=$(date +"%d%m%2y%I%M%S")
    ffmpeg -rtsp_transport tcp -i "rtsp://IP:554/..." -frames 1 /user/snapshots/ch1/$dt.jpg

    Running it by itself works fine and saves a jpg snapshot successfully to the right folders.

    In crontab -e I have the following line :
    0 * * * * /bin/sh //user/snap.sh

    Thanks.

  • FFmpeg : crossfading audio with multiple files, but works with video only

    12 février 2024, par JayCravens

    I've found this script that cross-fade's all mp4's in the directory. If I try to add the audio with AUDIO="[0:a]afade=d=1[a0];", using the same iteration, it doesn't work.

    &#xA;

    This works fine...

    &#xA;

    #!/bin/bash&#xA;&#xA;CMD="ffmpeg"&#xA;FILES=(*.mp4)&#xA;SIZE=${#FILES[@]}&#xA;VIDEO=""&#xA;OUT=""&#xA;&#xA;i="0"&#xA;total_duration="0"&#xA;for file in "${FILES[@]}"; do&#xA;  echo "$file"&#xA;  CMD="$CMD -i &#x27;$file&#x27;"&#xA;&#xA;  duration=$(ffprobe -v error -select_streams v:0 -show_entries stream=duration -of csv=p=0 "$file" | cut -d&#x27;.&#x27; -f1)&#xA;&#xA;  if [[ "$i" == "0" ]]&#xA;  then&#xA;    VIDEO="[0:v]setpts=PTS-STARTPTS[v0];"&#xA;  else&#xA;    fade_start=$((total_duration))&#xA;    VIDEO="${VIDEO}[${i}:v]format=yuva420p,fade=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS&#x2B;(${fade_start}/TB)[v${i}];"&#xA;    if (( i &lt; SIZE-1 ))&#xA;    then&#xA;      if (( i == 1 ))&#xA;      then&#xA;        OUT="${OUT}[v0][v1]overlay[outv1];"&#xA;      else&#xA;        OUT="${OUT}[outv$((i-1))][v${i}]overlay[outv${i}];"&#xA;      fi&#xA;    else&#xA;      if (( SIZE == 2 ))&#xA;      then&#xA;        OUT="${OUT}[v0][v1]overlay,format=yuv420p[outv]"&#xA;      else&#xA;        OUT="${OUT}[outv$((i-1))][v${i}]overlay,format=yuv420p[outv]"&#xA;      fi&#xA;    fi&#xA;  fi&#xA;&#xA;  total_duration=$((total_duration&#x2B;duration))&#xA;&#xA;  i=$((i&#x2B;1))&#xA;done&#xA;&#xA;CMD="$CMD -filter_complex \"${VIDEO}${OUT}\" -c:v libx264 -preset ultrafast -map [outv] crossfade.mp4"&#xA;&#xA;echo "$CMD"&#xA;&#xA;bash -c "$CMD"&#xA;

    &#xA;

    I read acrossfade requires 32bit little endian, so I went to afade.
    It didn't change anything.

    &#xA;

    I've got this working via fade in/out, for any number of files, with working audio. I still have to preprocess the audio sections which require fading.

    &#xA;

    #!/bin/bash&#xA;&#xA;if [ -e *.mkv ]; then&#xA;  file_type=".mkv"&#xA;else&#xA;  file_type=".mp4"&#xA;fi&#xA;&#xA;mkdir ./temp&#xA;for file in *$file_type; do mv "$file" "in_$file"; done&#xA;&#xA;# Function to fade in video&#xA;function fade_in() {&#xA;file_list1=(in_*)&#xA;  echo "Executing fade_in"&#xA;  for file in "${file_list1[@]}"; do&#xA;    ffmpeg -i "$file" -y -vf fade=in:0:30 -hide_banner -preset ultrafast "out_$file"&#xA;  done&#xA;mv in_* ./temp&#xA;}&#xA;export -f fade_in&#xA;&#xA;# Function to fade out video&#xA;function fade_out() {&#xA;  file_list2=(out_*)&#xA;  echo "Executing fade_out"&#xA;  for file in "${file_list2[@]}"; do&#xA;    frame_count=$(ffmpeg -i $file -map 0:v:0 -c copy -f null -y /dev/null 2>&amp;1 | grep -Eo &#x27;frame= *[0-9]&#x2B; *&#x27; | grep -Eo &#x27;[0-9]&#x2B;&#x27; | tail -1)&#xA;      frame_start=$((frame_count - 30))&#xA;      ffmpeg -i "$file" -y -vf fade=out:"$frame_start":30 -hide_banner -preset ultrafast "to_mux_$file"&#xA;  done&#xA;  mv out_* ./temp&#xA;}&#xA;&#xA;export -f fade_out&#xA;&#xA;bash -c "fade_in"&#xA;bash -c "fade_out"&#xA;&#xA;ls --quoting-style=shell-always -1v *$file_type > tmp.txt&#xA;sed &#x27;s/^/file /&#x27; tmp.txt > list.txt &amp;&amp; rm tmp.txt&#xA;&#xA;ffmpeg -f concat -safe 0 -i list.txt -c copy -shortest -movflags &#x2B;faststart fade_muxed$file_type&#xA;&#xA;mv to_mux_* ./temp&#xA;rm list.txt&#xA;#rm -rf ./temp&#xA;&#xA;exit 0&#xA;

    &#xA;

    Number the file name's sequentially (i.e. 01_file.mkv 02_file.mkv etc.), to ensure order, or it will be up to the directory sort. Using ls --quoting-style=shell-always -v1 has proved very reliable. It should handle 99% of naming conventions.

    It's not a cross fade, but the two second transition is very close. With working and synchronized audio.&#xA;If you have a good multi-file concatenation method that includes audio cross-fading, I'm still looking.

    &#xA;

    Ed Morton, I completely agree, sir. One-hundred percent. I didn't write the first script. I would NEVER use capitals. They're horrible. I "like_full_words" with _'s. Never for any reason other than visual though, so that was a great read, I recommend it.

    &#xA;

  • ffmpeg incorrectly adds a fixed delay to the end of each video chunk

    13 janvier 2023, par Skyler

    I am trying to combine audio a video data to output as an mp4 file using the command below, the videos are segmented to match the exact length of the audio file they are going to be merged with :

    &#xA;

        command = &#x27;ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {} -loglevel {} -c:v h264_nvenc&#x27;.format(&#xA;        audio_file, temp_result_avi, outfile, self.ffmpeg_loglevel&#xA;    )&#xA;    subprocess.call(command, shell=True)&#xA;

    &#xA;

    however each video made by this is exactly 24 ms longer so this causes large delays as they get stitched back together. This doesnt work since the combined video needs to be combined back with another video and the desync gets worse as you get further in the combined videos.

    &#xA;

    How can I remedy this ?

    &#xA;