
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (51)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5385)
-
Read Audio and Video, edit Video frame, then write back Audio and Video - Using python
19 avril 2021, par CowKeyManI'm looking to do exactly as the title says, ie :


- 

- Read a file containing both audio and video
- Edit the video frames individually
- Write back the video with the new frames but the same exact audio as before








OpenCV is not a good option for reading and writing since it doesn't handle audio, altough I can use opencv in step 2.


The language I am using is Python, as this needs to be integrated with a bigger system.


My question is this : What software stack / librarries are appropriate for this kind of task and if anyone can point me to some resources it would be highly appreciated


So far I have found the following options, but would like some feedback on them based on experience :


- 

- ffmpeg
- MoviePy
- libav








-
Copy codecs setting from video or how to join video using ffmpeg [closed]
6 décembre 2012, par Степан ТалабираWe have 2 videos :
test1.mp4 and test2.mp4How do I convert video 1 with parameters video 2 ? (for join them together)
I tried to pull out the parameters of video using ffmpeg-php.
But the result is bad .. mkvmerge or MP4Box not join this result video.
Mencoder says that the video codec settings is different...Сan anyone tell me how to blind 2 video (the first small and second big) without re-encoding the second movie
Video mp4 H.264. -
Changing video resolution is changing the duration of the output video the input video
4 septembre 2017, par SeanI am trying to change the video resolution on a few videos as well as the frame rate using FFMPEG. I am attempting to copy the original video/audio and change the output video to have a constant frame rate and different resolution.
Here is the command line I execute :
`ffmpeg -i "input_video_here" -s 854x480 -c:v libx264 -preset slow -crf 18 -r 30 -refs 3 -movflags +faststart -c:a copy "#{output_video_here}"`
When I compare the input video with the output video, my output videos are getting cut. The duration of my output video is 51 seconds and my input is 5 minutes. Is something in my ffmpeg command causing my output video to clip ?