
Recherche avancée
Médias (1)
-
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 (23)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (4435)
-
aac encoding with ffmpeg result in super short file
5 janvier 2017, par MockarutanSo I’m having problem with AAC encoding. I’m trying to encode some synthetic sound waves, but it does not work as expected. The file I get gives just a super short sound when played in VLC. When I play is in ffplay is plays like I expect, but it says "duration : 00:00:00.05" which I suppose says 5 ms. But I encode a lot more than that, and it played more. So VLC plays a super short sound, ffplay plays a longer file (the expected length), but displays it with super short duration, what’s going on ?
Source : http://pastebin.com/M5MKkEL3
One of the things that looks wrong to me is this :
If you look for the variable "audio_time", if you breakpoint it and read it every encode frame, you will get this :..
Encode frame 8 : 0.00010416666666666666
Encode frame 9 : 0.00012500000000000000
(and so on)The diff is : 0.00002085, which is a 1/1000 of a the diff I expected from 47 samples frames per second, which is what the encoder wants with 48k sample rate (48k / 1024 = 47).
So why do I get a thousand of the expected data encoded ?
Feel free to point anything suspicious out !
Thanks in advance !
-
Evolution #4089 (Fermé) : Page groupe_mots
28 septembre 2018, par cedric -On parle du squelettes-dist je suppose ?
Parce que dans le privé ça existeecrire/?exec=groupe_mots&id_groupe=1
Que ce ne soit pas très compliqué à faire on est d’accord, mais est-ce que ça a un sens d’avoir ça par défaut ?
Garder une certaine simplicité implique de faire des choix plutôt que de vouloir tout faire, et à ce titre je ne suis pas certain qu’avoir cette page en plus dans le squelettes par défaut soit très important. Je propose que ce soit traité dans un plugin disponible sur la zone pour qui veut(en gros il faut simplement se brancher sur le pipeline declarer_table_objet pour modifier le champ ’page’ qui est à false, ce qui fera apparaitre le bouton ’Voir en ligne’ dans l’espace privé + proposer un squelette de page groupe_mots)
Du coup tu t’en occupes ? Tu peux demander de l’aide sur les listes, irc etc. si tu coinces sur un problème
-
No data written to stdin or stderr from ffmpeg
13 décembre 2017, par Mikkel BachmannI have a dummy client that is suppose to simulate a video recorder, on this client i want to simulate a video stream ; I have gotten so far that i can create a video from bitmap images that i create in code.
The dummy client is a nodejs application running on an Raspberry Pi 3 with the latest version of raspian lite.
In order to use the video I have created, I need to get ffmpeg to dump the video to pipe:1. The problem is that I need the
-f rawvideo
as a input parameter, else ffmpeg can’t understand my video, but when i have that parameter set ffmpeg refuses to write anything tostdio
ffmpeg is running with these parameters
ffmpeg -r 15 -f rawvideo -s 3840x2160 -pixel_format rgba -i pipe:0 -r 15 -vcodec h264 pipe:1
Can anybody help with a solution to my problem ?
—Edit
Maybe i sould explain a bit more.
The system i am creating is to be set up in a way, where instead of my stream server ask the video recorder for a video stream, it will be the recorder that tells the server that there is a stream.