
Recherche avancée
Autres articles (73)
-
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 (5213)
-
FFmpeg - Slow Down Video by Half - Play Back at 2x
2 mars 2021, par nomaamI am working with the newest version of FFmpeg


I am trying to slow down a video with audio by half speed, then play back that video in something like VLC at 2x speed and have the video appear and sound as if it was the original version.


So far I have tried


./ffmpeg.exe -i "ffmpeg/testVideo.mp4" -filter_complex "[0:v]setpts=1.5*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" "ffmpeg/outputVideo.mp4"



When I play back the video at 2x it isn't close to playing and sounding like the unaltered version.


I have read the documentation but am having difficulty understanding where I am going wrong.


-
How to play video at exact seek time ?
3 mai 2016, par RanceAI was working on a video player of an app and I ran into a problem.
I need a video’s playing cycle locked into a specified time interval. For instance, I need a video loop to play from
00:04
to00:08
.My dilemma is, the video only has keyframes at
00:00
and00:10
,MediaPlayer.seekTo(4000)
will seek the start time to00:10
which is not what I expected. I need the video to play at a precise time,00:04
to00:08
, not00:00
to00:10
.FFPlay
also supportsAVSEEK_FLAG
, but none of the flags seem to work in my case.Maybe playing at
00:00
then fast-forward encoding to00:04
is a good idea, but I have no idea how to implement that. MyFFMPEG
experience is poor.Any help would be greatly appreciated.
-
tag refuses to play mp4 video converted from MOV
27 décembre 2014, par MightyPorkI have a video I want to embed using the html5 video tag :
I’ve converted it using
ffmpeg
:ffmpeg -i P6135199.MOV -vcodec libx264 -acodec aac helios.mp4
And I try to embed it as follows :
<video src="helios.mp4" controls="controls">Get a better browser!</video>
However, Chrome doesn’t play the video, only offers to download it (same as it did before I converted the video). Firefox has the same problem.
I’ve tested and other mp4 files (from my phone) play just fine.
What’s the problem ? Did I convert it wrong ?