
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (54)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4292)
-
Anomalie #4526 (Nouveau) : Retirons les dates des copyrights
15 juillet 2020, par Franck DHello :)
Ok, les dates n’ont plus de valeurs, donc, il faut faire quoi concernant les cartouches ?
Je mets choix 1 :- SPIP, Systeme de publication pour l’internet
* - Copyright (c)
- Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James
* - Ce programme est un logiciel libre distribue sous licence GNU/GPL.
- Pour plus de details voir le fichier COPYING.txt ou l’aide en ligne.
-----
Choix 2 (accents et ©) ?
- SPIP, Système de publication pour l’internet
* - Copyright ©
- Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James
* - Ce programme est un logiciel libre distribue sous licence GNU/GPL.
- Pour plus de détails voir le fichier COPYING.txt ou l’aide en ligne.
Autre chose ????
- SPIP, Systeme de publication pour l’internet
-
get difference bewteen two process of same name running
5 octobre 2015, par TOMI am writing a application like a process explorer. I run more than 2
ffmpeg
process. There is one difference between same name - Process id. How can I found more difference between 2 or moreffmpeg
process running in the taskbar in vb.net ?For Each prog As Process In Process.GetProcesses
If prog.ProcessName = "ffmpeg" Then
al.Add(prog.ProcessName)
End If
Next
For Each i In al
ListBox1.Items.Add(i)
Next i -
avconv/ffmpeg simultaneously stream from usb webcam and save video onto disk
27 novembre 2017, par BojowyZajaczekI need to simultaneously stream/broadcast (over rtmp) and save video (with audio) from my USB webcam. The webcam is Logitech c920 which have hardware h.264 encoder.
I don’t want to reencode the media, so I’m using the
-c:v copy
option.The whole script looks like below :
#! /bin/bash
SOURCEV="/dev/video0"
SOURCEA="hw:1"
FILE_TO_SAVE="Archive/file_to_save.mp4"
YOUTUBE_URL="rtmp://x.rtmp.youtube.com/live2"
KEY="my-secret-key"
avconv -f alsa -ac 2 -r 44100 -i $SOURCEA \
-s 1920x1080 -r 24 -c:v h264 -i "$SOURCEV" \
-ar "44100" -r:v 24 -c:a aac -c:v copy -s 1920x1080 -f mp4 "$FILE_TO_SAVE" \
-g $FPS*4 -ar "44100" -b:a "128k" -ac 2 -r 24 -c:a aac -c:v copy -s 1920x1080 -f flv "$YOUTUBE_URL/$KEY"This method "works" - it means’ it can stream content and save it to disk, but the problem with this method is that file video relies on the stream. For example if the Internet connection is too slow, the saved file will have low FPS. If the Internet connection is interrupted the "recording" of video file is stopped.
Can anyone help me with making this two streams independent ?
The whole things is happening on raspberrypi 3 so computing power is highly limited.