
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (75)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...)
Sur d’autres sites (10164)
-
download livestream real-time data
15 juillet 2024, par Chenguang HeI'm working on a project to design a RTMP server in Java to get livestream data and download to flv file. One requirement is that to capture the real-time data, I need to download the recording for every second instead of downloading entire recording when livestream stop. Is there any way to achieve it ? Thanks


tried to download stream into byte array for every second and decode to flv using H.264 but didn't work.


-
Revision 36f61aa836 : Set min_block_size for aq_mode=3 to 8x8. For real-time mode under cbr, this inc
2 avril 2014, par Marco PaniconiChanged Paths :
Modify /vp9/encoder/vp9_aq_cyclicrefresh.c
Set min_block_size for aq_mode=3 to 8x8.For real-time mode under cbr, this increases the gain (5-10%)
for speed 5 (none/little change for 6), on vc-clips.Change-Id : I9b38beeb3c820de22c43a0ba53a9456168dd24ba
-
OpenSuse - Cannot find installation of real FFmpeg
27 août 2020, par Harry BoyI have OpenSuse Leap 15.1 and have installed ffmpeg and checked that its installed as follows :


pip install ffmpeg
pip list | grep ffmpeg
ffmpeg 1.4



Now when I run the following code :


import skvideo.io
import skvideo.datasets
bbb = skvideo.datasets.bigbuckbunny()
v = skvideo.io.vread(bbb)



I get this error :


Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.6/site-packages/skvideo/io/io.py", line 133, in vread
assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."
AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).
</module></stdin>


I have also tried to set the ffmpeg path as follows but I get another error :


import skvideo.io
skvideo.setFFmpegPath('/usr/lib/python3.6/site-packages/ffmpeg/')
/usr/lib/python3.6/site-packages/skvideo/__init__.py:306: UserWarning: ffmpeg/ffprobe not found in path: /usr/lib/python3.6/site-packages/ffprobe/
 warnings.warn("ffmpeg/ffprobe not found in path: " + str(path), UserWarning)



How can I get this to work on OpenSuse ?


This is similar to this question but its Ubuntu : Cannot find installation of real FFmpeg (which comes with ffprobe)