
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (85)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (7432)
-
MPEG DASH : frame seeking
13 août 2014, par bisc8TL ;DR : Is it possible to achieve frame seeking using DASH ? How ?
I’m using ffmpeg to create non-multiplexed content :
ffmpeg -y -an -codec:v libx264 -profile:v baseline output_video.mp4 -i video.mp4
ffmpeg -y -vn -codec:a libvo_aacenc -ac 1 -ar 44100 output_audio.mp4 -i video.mp4Then I’m using mp4box to create DASH content :
mp4box -dash 10000 -frag 1000 -rap -dash-profile live -segment-name mp4-live-$RepresentationID$-$Number$ -out manifest.mpd output_video.mp4 output_audio.mp4
Finally I open the generated content with Chrome, using dash.js. Everything works fine except that I can’t do frame seek. I keep on adding (1/frame_rate) seconds to the current time but nothing happens, the frame only changes after 10 seconds.
I suppose this has to do with the video’s key interval. However, I am able to do frame seek after the ffmpeg part, so I guess I’m missing something in the mp4box command.
Is it possible to achieve frame seeking using DASH or am I missing something ?
Thanks in advance.
-
Anomalie #4506 : Supprimer les CSS inline des modèles de documents
9 juin 2020Trouvé une astuce qui fonctionne très bien sur ce bon vieux stackoverflow : https://stackoverflow.com/a/11652170
- <span class="CodeRay"><span class="class">.spip_documents</span> { <span class="key">display</span>: <span class="value">table</span>; }
- <span class="class">.spip_doc_legende</span> { <span class="key">display</span>: <span class="value">table-caption</span>; <span class="key">caption-side</span>: <span class="value">bottom</span>; }
- </span>
Ça donne le même résultat purement en CSS : la légende ne dépassera jamais l’image en largeur.
Donc facile à surcharger pour adapter les styles à son site (si on veut la légende en haut, sur les côtés, etc.).
Enfin, c’est si mon postulat sur la présence du style inline est correct, à confirmer ^^Le markup pour rappel :
<span class="CodeRay">
<span class="tag">span> <span class="attribute-name">class</span>=<span class="string"><span class="delimiter">"</span><span class="content">spip_documents</span><span class="delimiter">"</span></span><span class="tag">></span>
<span class="tag">span> <span class="attribute-name">src</span>=<span class="string"><span class="delimiter">"</span><span class="content">image.png</span><span class="delimiter">"</span></span> <span class="attribute-name">class</span>=<span class="string"><span class="delimiter">"</span><span class="content">spip_doc</span><span class="delimiter">"</span></span> <span class="attribute-name">width</span>=<span class="string"><span class="delimiter">"</span><span class="content">500</span><span class="delimiter">"</span></span> <span class="attribute-name">height</span>=<span class="string"><span class="delimiter">"</span><span class="content">400</span><span class="delimiter">"</span></span><span class="tag">></span>
<span class="tag">span> <span class="attribute-name">class</span>=<span class="string"><span class="delimiter">"</span><span class="content">spip_doc_legende</span><span class="delimiter">"</span></span><span class="tag">></span>
<span class="tag">span> <span class="attribute-name">class</span>=<span class="string"><span class="delimiter">"</span><span class="content">spip_doc_titre</span><span class="delimiter">"</span></span><span class="tag">></span>Lorem ipsum<span class="tag"></span>
<span class="tag">span> <span class="attribute-name">class</span>=<span class="string"><span class="delimiter">"</span><span class="content">spip_doc_descriptif</span><span class="delimiter">"</span></span><span class="tag">></span>
Nobis laudantium eum voluptatibus. Illum iure rem nulla quos et ipsum optio sapiente. Quis placeat cum quod animi. Reprehenderit laudantium laudantium repellendus libero qui iure
<span class="tag"></span>
<span class="tag"></span>
<span class="tag"></span>
</span></span></span></span></span></span> -
ffmpeg : memory not freed on multi-threaded decoding
31 mai 2020, par toby_eI am developing a video player based on the ffmpeg libraries and have run into a rather strange memory increase or failure to decrease memory when unloading a video file. My code is based on various examples of demuxing, decoding and scaling video and audio frames - but with the excecption that i have put each of these steps into seperate threads to avoid waiting for time-consuming calls. Everything works perfectly, but Visual Studio shows that Process Memory does not decrease when i call the various avclose and avfree calls. My Windows task manager confirms these memory increases that continue into the gigabyes !



My player is roughly made up by two clases with the following calls to the ffmpeg libraries :



—



READER :



Open (on main thread) :
avformat_open_input(), avformat_find_stream_info()



Read (on seperate thread) :
av_read_frame()



Close (on main thrad) :
avformat_close_input()



DECODER :



Open (on main thread) :
avcodec_find_decoder(), avcodec_alloc_context3(), avcodec_parameters_to_context(), avcodec_open2()



Decode (on seperate thread) :
avcodec_send_packet(), avcodec_receive_frame()



Close (on main thread) :
avcodec_free_context()



—



Is threre any issues with opening/closing on the main thread and reading/deconding on other threads ?