
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 (31)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (4642)
-
Restream TS file in HTTP server to RTMP server using ffmpeg
15 juin 2018, par MatrixCow08I want to restream http://example.com/1.ts to a RTMP server.
The command I use is :
ffmpeg -i http://example.com/1.ts -ar 44100 -preset medium -crf 22 -x264-params keyint=2:min-keyint=2 -bufsize 500k -vcodec libx264 -b:v 700k -maxrate 700k -r 25 -f flv rtmp://janjuapublisher.com/live/MY_CHANNEL_NAME?key=MY_KEY&id=MY_ID
I use www.janjua.tv to create my TV channel and it give me the RTMP details as follows :
FMS URL : rtmp ://janjuapublisher.com/live
Stream Name : MY_CHANNEL_NAME ?key=MY_KEY&id=MY_ID
However, I get
Connection failed: application rejected
andunsupported authentication method
when I run this ffmpeg command.My command work fine in Twitch’s RTMP server because it is easy to use, but I can’t figure out how to use JanJua.tv .. Where to put the Stream Name, Key, Secret ?
Any help would be appreciated.
Thanks !
-
overlay line chart over video clip, having that line go up or down based on excel time series data
26 janvier 2021, par QRrabbitI have a question, if this can be done with ffmpeg. If not, please suggest a plugin or a tool.
My basic need is, I have a video shot from the moving car, and speed is recorded into an excel file, with time and current speed as well as various other parameters.


How can I output this video that combines a video footage with a changing graph, I will align the first record of the dataset with the first frame of the video, and then need to plot that line right over the video. As video progresses, the chart is updated from the excel dataset :



-
given a line number. which command sets the string at this line number as a parameter [duplicate]
1er juillet 2022, par pitterpatteri have two lists.


urls.txt contains urls line by line to files.


they are named gibberish like 2345.mp4


filenames.txt contains new filenames i want for those files.


also line by line. both lists are in the correct order.


i want to download those files in urls.txt with ffmpeg and rename them.


i dont know how to work it out for the filenames.txt


so far i have a for loop functioning with the gibberish filenames.


how do i get the new filenames ?


assume the for loop increments line numbers i++, which command sets the string at this line number as a parameter ?


for /f %%a in (urls.txt) do ( 
ffmpeg -i "%%a" -c copy "%%~na.mp4" )