
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (64)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
Sur d’autres sites (6489)
-
Speed up and reverse a video with a single command ?
21 février 2018, par Eduardo PerezI am using Ubuntu 16.04. I know with FFMPEG you can use this command to reverse a video.
ffmpeg -i [input] -vf reverse -af areverse [output]
Now, the thing is I found somewhere that you can use this command to speed up the video.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" [output]
So, I tried this command to speed up and reverse the video, but it didn’t work since complex filters can’t be used together with -vf or -af.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" -vf reverse -af areverse [output]
What command do I need to use to get FFmpeg to speed up and reverse the video, without decompiling it ? I’m using the latest version of FFmpeg.
-
Speed up and reverse a video with a single command ?
4 août 2016, par Eduardo PerezI am using Ubuntu 16.04. I know with FFMPEG you can use this command to reverse a video.
ffmpeg -i [input] -vf reverse -af areverse [output]
Now, the thing is I found somewhere that you can use this command to speed up the video.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" [output]
So, I tried this command to speed up and reverse the video, but it didn’t work since complex filters can’t be used together with -vf or -af.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" -vf reverse -af areverse [output]
What command do I need to use to get FFmpeg to speed up and reverse the video, without decompiling it ? I’m using the latest version of FFmpeg.
-
Do I really have to go through the whole Facebook App Review process for a single user App ?
11 février 2019, par KOMsandFriendsI want to publish a live video on a Facebook page, using the Facebook API. I have developed a small Facebook "App", which starts a live video stream on a Facebook page and connects ffmpeg to it.
I need this for my own business. The only purpose of this is, to start and stop live video streams from an IP camera on Facebook from a headless server.
This is how I call the API in python to start a new live video stream :
def start(self):
p = {
"status":"LIVE_NOW",
"title":self.Title,
"description":self.Description,
"access_token":self.__token
}
r = requests.post( self.__url + self.__page_id + '/live_videos', pams=p)
if r.status_code == 200:
self.parseResponse(r.text)
return int(r.status_code)After that I immediately run ffmpeg with the stream key returned by this API call :
ffmpeg -i ... -f flv "rtmp://live-api-s.facebook.com:80/rtmp/$STREAMKEY"
This code works and the video appears on Facebook, but the video is only visible for me, even though it is shown as public in the Facebook web interface.
How can I change this ? Do I have to review an App, even though it is just for my own usage ?