
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (38)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (4919)
-
How can I programatically escape option strings for ffmpeg ?
27 mai 2014, par pixelearthI’m just using ffmpeg for my first serious project. I was happy until I had a string that needed escaping. Now I want to die.
I want to put this string into a blank video that will then (later) be appended to a separate video "Tango Milonga 1 : The Dance’s Music and History"
When I write it like this, it obviously doesn’t work becaues the : and ’ chars need escaping and probably others :
ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=Tango Milonga 1: The Dance's Music and History: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" /Users/user/my_life/sites/2007/idance/videos_in_production/intros/2621.mp4
To make matters more complicated, command and the text option in this example will really be dynamically generated from a DB and will be looped over thousands of times. This currently looks like this in my ruby script (another level of escaping) :
`ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=#{@lesson.name}: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" #{@dir}/intros/#{@lesson.id}.mp4`
How can I programatically escape the string @lesson.name above so that this command always works ?
-
how to mix two voice file to one files ?
7 août 2018, par zjlljx123How to mix two voice file in android ??
I want to record and play a music in backgroud at the same time, i use FFmpeg,it can mix success,but need too much time, how can speed up it or use another fuction resolve it ?
i use the command in
FFmpeg:"-i %s -i %s -filter_complex amix=inputs=2:duration=first %s"
-
How to make mp4 slideshow video from series of images in Android programmatically [on hold]
2 août 2016, par Roaim AhmedI have a list of images. I wish to make mp4 video with music from them using Android studio. Can anybody please suggest me how to do it ? Also you can suggest me any java library to aquire this. Thank you.