
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (52)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8648)
-
Facebook live video can only be previewed while streaming my Mac screen
24 janvier 2017, par iownthegameI use the following ffmpeg command to share my screen streaming to Facebook.
ffmpeg -f avfoundation -r 10 -video_size 352x288 -i "0" -c:v h264 -f flv
"rtmp://rtmp-api.facebook.com:80/rtmp/1269140699772419?ds=1&a=AaYsXcYcdHQrrrUF"then I can see the video preview scenes
however, once I press the ’Go Live’ button, and go to my facebook page, I can find a post said I am Live Now. When I press the ’play button’, there are only black scenes that last for 1 2 seconds, and the video ends.
And there is also a weird thing, the video can be played when I end up the live stream. When refreshing the page, I can find a post said I was Live, the video of this post can be played successfully.
Anyone knows why the video can be watched when previewing and finishing live but not the exact live moment ?
[updated]
During the live streaming period, if I press the play button, there are only 1 2 seconds black scenes and the live stream ends.
However if I press the video frame again, another modal pops up then I can see the live streaming. Is it a facebook bug ?
-
Anomalie #3566 : Restaurer une révision ne restaure pas toujours tous les champs modifiés
10 octobre 2016, par marcimat ☺☮☯♫On avance… le commit http://zone.spip.org/trac/spip-zone/changeset/99883 améliorera une fois la fonction utilisée.
Cependant la première révision actuellement n’enregistre que la liaison auteur/article, et non l’ensemble des champs saisies.
J’ai fini par comprendre que révisions se base sur ’post_insertion’ (qui a donc l’id_article créé) pour lever un flag permettant d’éviter de créer la première révision avant d’arriver dans post_edition.
Bien. Sauf que… avant ’post_insertion’, l’appel deauteur_associer($id_auteur, array('article' => $id_article));
dans auteur_inserer() crée la première révision (le flag n’étant pas encore levé). Cette fonction appelant à un moment ’pre_edition_liens’, que le plugin Révisions écoute. -
Realtime recording while listening for input
28 octobre 2016, par NyalmoI’m currently running a python 2.7 script, using two threads running concurrently. One thread consistently looking for input (raw_input at the moment) activating a global variable when it gets one. The other consistently records using bash ffmpeg commands with subprocess. When the global variable of the former thread is active the latter thread triggers an event.
My problem is that while the second thread is recording video from a stream, I can’t input anything and the breaks between recordings are really short. So basically it keeps recording for 30 seconds and overwriting itself without allowing me to activate the variable to save the current file somewhere.
I’ve tried to run the ffmpeg in subprocess in the background by using the & and by hiding it’s output but did not have much success there.
Can anyone help me with this, preferably with a small example ?
My basic recording thread currently :
from subprocess import Popen
Last30S_Command = (["ffmpeg", "-i", "rtsp://admin:12345@192.168.25.179:554/Streaming/Channels/1", "-r", "30", "-vcodec", "copy", "-an", "-t", "30", "-y", "/Path/Last30S.mp4"])
subprocess.call(Last30S_Command)