
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (86)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (6035)
-
ffmpeg only converting first frame of gif in Ubuntu
14 juillet 2013, par ZonedaboneI'm trying to convert GIFs to webm and mp4. I've got the code working on Windows with the ffmpeg command. On Ubuntu however, I cannot get the gifs to convert properly because ffmpeg is only reading the first frame and spitting out the movie.
Here's my code :
ffmpeg -i tmp/%s.gif -crf 5 tmp/%s.webm tmp/%s.mp4
Is there something extra I need or is there a bug in the Ubuntu ffmpeg package ?
-
QT/VLC/Browser differences between flipped video
12 juillet 2013, par NotaBeneThis is a weird one. I'm converting video from .mov to streaming formats such as .mp4, .ogv, and .webm. No problems there, using ffmpeg and everything is going fine.
The problem is that when opening the video in VLC, it's the right way up. When it's converted and viewed in the browser (from the server), it's upside down !
Ok, so I flipped it using the -vf "hflip,vflip" option in ffmpeg. Uploaded again, and IT'S STILL FLIPPED ! Huh ? I cleared my cache too, no dice.
I'm thinking there must be some flag somewhere that keeps it flipped based on the recording of the movie and the orientation. Can I remove that somehow ?
-
python multiprocessing and ffmpeg corrupts files
1er juillet 2012, par misterteI'm currently trying to convert several videos to three different outputs, all using ffmpeg : mp4, webm and jpeg. I also need to run this script in different directories and create within the directories webm, mp4 and jpeg subdirectories where the respective converted files are stored.
I am running the following script inside a directory with 8 .mov test files in it. Files work ok as .mov.
(It's a bit long, so here you can view it online)
The script creates all files and directories. I can also note that all Consumer processes take tasks and complete them. The problem is resulting .mp4 and .webm files are corrupted.
Here you can see an example output. It's a bit long, so I think it's best if I point out the part I think is relevant.
...
[h264 @ 0x121815a00]no frame!
Error while decoding stream #0.0
[h264 @ 0x121815a00]AVC: nal size -6554108
[h264 @ 0x121815a00]no frame!
Error while decoding stream #0.0
[h264 @ 0x121815a00]AVC: nal size 391580264
[h264 @ 0x121815a00]no frame!
...This does not happen if I run ffmpeg straight from the console.
ffmpeg -i movie.mov -b 500k -s 640x360 -padtop 60 -padbottom 60 movie_out.webm
I can even run it in parallel shells and the output will not be affected.
Can anyone see what the problem is ?
thnx !
A.