
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (32)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (4539)
-
Migration from FFMPEG 4.3.2 to 5.1.0 - Alternative to AVLockOp enum
1er novembre 2022, par jd750A lot of classes and enums that I use in FFMPEG 4.3.2 were removed from the version 5. The enum AVLockOp is one of them. I looked online for a AVLockOp alternative in the version 5.1.0 but I didn't find any. Is there an alternative to AVLockOp in FFMPEG 5.1.0 ?


I googled : "ffmpeg AVLockOp alternative", "ffmpeg AVLockOp deprecated", "ffmpeg 5.1 migration AVLockOp", etc...


I didn't find what I was looking for. So stackoverflow is my last hope.
I'm looking for someone who had the same issue or someone that knows an alternative to replace AVLockOp in FFMPEG 5.1.


-
FFMpeg - Concat Video Files + Fade Transition
15 février 2020, par John DoeUsing BATCH-File, I am piping lots of videos to FFMpeg and would like to crossfade the transitions. Instead of going to black, I’d like them to overlap by 2 seconds during the transition. Audio is not necessary as the videos are all silent. I am adding looped audio separately.
(
for /F %%i in ('dir /b "Folder\*.mp4"') do @echo file 'Folder/%%i'
) | ffmpeg -y -protocol_whitelist file,pipe -f concat -safe 0 -stream_loop -1 -i pipe: -stream_loop -1 -i "audio.mp3" -c copy -movflags faststart -fflags genpts -preset veryfast -t 3600 -r 30 "output.mp4"I’ve found lots of similar examples online but none are suitable. A little help would be appreciated. Thank you.
-
is there a way to auto trim parts of my video when a specefic color or text shows up on those parts
10 novembre 2022, par Yousif K Al Ameen 1I play a game and record it, but unfortunately many parts of that recording is when my internet connection gets lost for several seconds. During that period it only shows a text that says "connection lost". Then the game resumes normally in few seconds after the connection is back.
Is there a software or a way that allows me to auto trim these connection lost periods from my viedeo ? Please help I need to trim a lot of these periods so that I can post cool gaming videos online without the "connection lost" scenes included.


I tried searching on youtube and found some ffmpeg, python, and opencv methods but none of which is suitabal or easy to apply for my situation