
Recherche avancée
Autres articles (21)
-
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...) -
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (...)
Sur d’autres sites (3861)
-
FFmpeg drop HLS frames
6 juillet 2017, par Vladi’am start ffmpeg
vlad@s1 : /hls/first$ ffmpeg -re -i http://86.57.225.238:8090 -c:v copy -c:a copy index.m3u8
but ffmpeg don’t start. what it is a problem ?
Input #0, mpegts, from 'http://86.57.225.238:8090':
Duration: N/A, start: 88845.286311, bitrate: N/A
Program 1
Metadata:
service_name : Bel_4 Mogilev
service_provider: Bel_4 Mogilev
Stream #0:0[0xc9]: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 720x576 [SAR 12:11 DAR 15:11], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1[0xca]: Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 224 kb/s
Output #0, hls, to 'index.m3u8':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 ([27][0][0][0] / 0x001B), yuv420p, 720x576 [SAR 12:11 DAR 15:11], q=2-31, 25 fps, 25 tbr, 90k tbn, 25 tbc
Stream #0:1: Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, 224 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Press [q] to stop, [?] for help
frame= 0 fps=0.0 q=-1.0 size=N/A time=00:00:41.35 bitrate=N/A -
Terminating FFMPEG from Python using Linux
17 mai 2019, par smartzerSo I have a project that listens for button inputs in Python, and records video from a camera and an external microphone once a certain button is pressed, now when I want to stop recording, I press another button and stop recording on my camera and the microphone, and then I call ffmpeg using the subprocess module :
mergeFiles = subprocess.Popen("sudo ffmpeg -i /home/pi/Video/video.mov -i /home/pi/Audio/test.wav -acodec copy -vcodec copy -map 0:v -map 1:a -shortest /media/pi/USB/Output/output.mkv", shell=True)
to merge the audio and video files I just created.
Now once I call ffmpeg, it doesn’t stop until I send the process a signal interrupt from the keyboard... is there a way to either have the process stop as soon as it’s done merging, or to automatically terminate/kill ffmpeg after a certain amount of time ?
I have read up on other posts like this and none of the solutions work for me. I can’t kill the process using the PID because every time I look up ffmpeg’s PID, it is a different ID, and calling something like
mergeFiles.kill()
doesn’t work for me. -
Terminating FFMPEG from Python using Linux
2 mai 2017, par smartzerSo I have a project that listens for button inputs in Python, and records video from a camera and an external microphone once a certain button is pressed, now when I want to stop recording, I press another button and stop recording on my camera and the microphone, and then I call ffmpeg using the subprocess module :
mergeFiles = subprocess.Popen("sudo ffmpeg -i /home/pi/Video/video.mov -i /home/pi/Audio/test.wav -acodec copy -vcodec copy -map 0:v -map 1:a -shortest /media/pi/USB/Output/output.mkv", shell=True)
to merge the audio and video files I just created.
Now once I call ffmpeg, it doesn’t stop until I send the process a signal interrupt from the keyboard... is there a way to either have the process stop as soon as it’s done merging, or to automatically terminate/kill ffmpeg after a certain amount of time ?
I have read up on other posts like this and none of the solutions work for me. I can’t kill the process using the PID because every time I look up ffmpeg’s PID, it is a different ID, and calling something like
mergeFiles.kill()
doesn’t work for me.