
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 (86)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (12388)
-
Show progress of a video conversion with FFMpeg
27 février 2015, par ChrisCreateBossI’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named
ConvertProgress
but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.I tried this :
public static event EventHandler<convertprogresseventargs> _getPercent;
//...
_getPercent += ???
progressBar1.Value = ??
</convertprogresseventargs>I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.
-
Show progress of a video conversion with FFMpeg
23 novembre 2017, par ChrisCreateBossI’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named
ConvertProgress
but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.I tried this :
public static event EventHandler<convertprogresseventargs> _getPercent;
//...
_getPercent += ???
progressBar1.Value = ??
</convertprogresseventargs>I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.
-
How to show reversed timer using ffmpeg drawtext
22 janvier 2023, par luddite478I used the code below to generate timer of the track in normal order. But how can I make reversed timer (00:00:05, 00:00:04, 00:00:03, 00:00:02, 00:00:01) ? (without milliseconds)


ffmpeg -i waves.mp4 -vf "drawtext=text='%{pts \: hms}': fontsize=70:fontcolor=yellow@0.9: box=1: boxcolor=black@0.6" -c:v libx264 -c:a copy -movflags +faststart waves_with_timer.mp4