
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (81)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (8113)
-
FFMpeg Drawtext black pixels behind the font
21 janvier 2023, par sweetngxI burn the name of the movie with drawtext to my movies converted with FFMPeg, but I noticed that the black pixels around the font are disturbing, as seen in the picture. I don't know if this is a missing line of code or the nature of drawtext itself. Do you think there is a solution to make the movie name more legible ?




-
FFmpeg fill black box with video phone to computer [closed]
8 décembre 2020, par Lê Quốc TrungI have a question. Please help me.
I record video with my phone with vertical frame and I want to transfer to computer 16 : 9 with my original video in the middle and fill my 2 black boxes with my original video I use ffmpeg code Thank you everyone for reading[enter image description here][1]
[1] : https://i.stack.imgur.com/Kj2TD.png


-
Append black frames to video when audio is longer in ffmpeg
8 avril 2018, par EdwardI’m trying to utilize ffmpeg as a video editor and this is mostly due to that the regular video editor dropped more frames than I was comfortable with.
ffmpeg -i "videoplayback1" -t 00:09:51 -i "audioplayback1" -t 00:09:54.38 -vcodec libx264 -crf 20 -acodec copy "playback1.mp4"
As you can see, I’m trimming the video shorter than the audio, but what I want is something that is the opposite of the
-shortest
command switch, to have the file continue for the duration of the audio-t
, and adding physical black frames for the remainder of that time.As it is now, the video is still clipped as if I was using the
-shortest
switch. I tried some-vf
andfilter_complex
but either I get errors, or that the audio is still chopped, the video frozen, but the duration is that of the longest-t
.How would I go about adding black frames for as long as the audio is playing ?