
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (60)
-
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 (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7833)
-
How add watermark on ts video ?
22 août 2020, par r_astapovHow add watermark on ts video ?
After adding a watermark to the video (ts format) using the command below, output video (ts format too) does not playing in the browser
What could be the reason for this ?


ffmpeg -i input.ts -i logo.png -filter_complex overlay=790:40 -codec:v libx264 -crf 18 -preset superfast -pix_fmt yuv420p -c:a aac -strict -2 -y output.ts



-
How can I compile FFmpeg for Windows using only libmp3lame ? [closed]
15 février 2024, par Neil SI want to compile the latest version of FFmpeg using only the latest version of libmp3lame on Windows if it's possible. How can I do this ? I've searched online and on here but their does not seem to be any solutions for Windows. The reason I'm asking about this is because I'd like to keep the file size small. I haven't tried any scripts or anything as I have no experience doing this. Thanks for any guidance...


-
Cannot play H.264 stream using MSE
8 juillet 2016, par lianI’m trying to stream H.264 data over websockets to a video element using MSE.
I’m able to send and play a pre-recorded file, but when i try to create the data stream with the following command :
ffmpeg -i rtsp://192.168.1.101/stream.264 -vcodec copy -an -f mp4 -reset_timestamps 1
-movflags empty_moov+default_base_moof+frag_keyframe -loglevel quiet -I get this in chromes media-internals :
render_id: 215
player_id: 13
pipeline_state: kStopped
event: WEBMEDIAPLAYER_CREATED
url: blob:http%3A//127.0.0.1%3A8080/e468616d-5bde-47e0-8e59-1881ddb53abc
debug: ISO BMFF boxes that run to EOS are not supported
error: media::MediaSourceState::Append: stream parsing failed. Data size=727 append_window_start=0 append_window_end=inf
pipeline_error: chunk demuxer: append failedI think the problem has something to do with the debug line about ISO BMFF boxes, but have been unable to find any references to this message.