
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (95)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (12998)
-
Need Help Making c# Discord Music Bot [on hold]
6 mars 2017, par Greg VaradiA few days ago I started making a discord bot. I have included a lot of commands and functions but now I want to make my bot able to play music.
My bot can join the voice channel and play music from MP3 files (local file or link) with ffmpeg. I’m using this documentation for the ffmpeg. But I want to make the bot play music from Youtube using the Youtube link it receives.. Youtube-dl can solve this problem but I don’t know how to use it. If anyone know how to use it help me. -
Pausing video streaming at EOF with FFMPEG ( Streaming and saving simultaneously)
6 novembre 2019, par PadfootI am writing a video to a local file using
videowriter
in OpenCV and at the same time, I am streaming it using ffmpeg+RTSP.
But my video writing is slower than streaming. So RTSP is reaching the EOF and streaming is stopped.Is there any way or option in FFMPEG to pause the stream if it reached EOF and resumes again from the same time point.
EDIT
System - Ubuntu 16, 32 GB RAM.
For video writing (frame by frame) -
int i = 0;
VideoWriter video("output.mp4",CV_FOURCC('a','v','c','1'),25, Size(frame_width,frame_height));
while(1)
{
Mat frame;
cap >> frame;
if (frame.empty())
break;
video.write(frame);
if (i == 25)
printf("Start streaming");
i++;
}After writing 25 frames, I am streaming through -
ffmpeg -re -i output.mp4 -codec copy -f flv rtmp://192.168.0.1:1935/live
-
How to generate light weight videos with ffmpeg for Power Point in OS X ?
25 septembre 2014, par PabloI want to make some movies with ffmpeg to use them on a Powerpoint in Mac OS X. I am using this command, which works well but generates large movies (about 100 MB) without losing too much quality.
ffmpeg -f image2 -r 100 -pattern_type glob -i 'img*.png' -c:v mjpeg -qscale:v 20 test.avi
I have also tried using other codecs like mpeg4 and libx264 to generate lighter movies (about 10 MB) but they don’t work correctly in the Powerpoint presentation.
Does anyone know how to use them correctly or how to create a light weight movie with ffmpeg that works well on Powerpoint for OS X ?