
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 (80)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4111)
-
Media container for H264 and Opus
27 avril 2013, par RickyI am looking for a media container that can hold H264 video and Opus audio,
allowing me to perform playback using VLC or equivalent. H264 is a hard
requirement, and I picked Opus because of the licensing benefits.Wikipedia suggests
that.ogg
is what I'm looking for.However, when I looked at the VLC and FFMPEG source code, neither included H264
support in their ogg demuxer (VLC source suggests that it only support Theora,
Vorbis, and CMML, FFMPEG had something similar).Is there another container I can use ?
Alternatively, I can also alternative audio encoder such as
aac
. But allaac
encoders I found have less than appealing licensing associated with them (GPL). -
How to play video bytes(h265,h264) to any media server from java [closed]
29 avril 2023, par gtejasI have video bytes(came from device through tcp) i write into a file and its able to play now I need to play that stream on media server.


ffmpeg -re -i myfile.mp4 -c:v libx265 -preset ultrafast -f mpegts rtmp ://ip:1935/live/stream


can i play bytes directly ?


-
Segmenting media files with FFMPEG
2 mai 2012, par Luuk D. JansenIn the newer releases of FFMPEG it is supposed to be possible to segment media files.
I checked out the SVN withsvn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
However, after building and trying to segment with the command below I get the error :
Unrecognized option 'segment_time'
Is there a specific ./configure option needed or a specific branch ?
There is nothing mentioned in FFMPEG manual (neither which version supports it). I would prefer to use a pre-build production version if possible.Command used to test :
ffmpeg -v 9 -loglevel 99 -re -i test.mov -an -c copy -b:v 128k -flags -global_header -map 0 -f segment -segment_time 4 -segment_list test.m3u8 -segment_format mpegts stream%05d.ts