
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (82)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
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 (...)
Sur d’autres sites (6036)
-
FFMPEG mux video and audio (from another video) - mapping issue
7 mai 2023, par MarkI would like to place the audio from a video to another video without an audio (in one command) :



ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov




I guess "-map" is the correct way to do it but I got confused with it.



Can you suggest how to resolve it ?


-
Converting vídeo from vp8 to x264 outputs different video with different length
25 octobre 2019, par Thomas AndersonI have a webm file (vp8 codec) with 2m:39s of duration
Using ffmpeg -i video.webm it says that the video have 15fps
nput #0, matroska,webm, from
’video.webm’ : Metadata :
encoder : Lavf54.17.3 Duration : 00:02:39.63, start : 0.000000, bitrate : 417 kb/s
Stream #0:0 : Audio : vorbis, 44100 Hz, stereo, fltp (default)
Stream #0:1 : Video : vp8, yuv420p(progressive), 320x240, SAR 1:1 DAR 4:3, 15 fps, 15 tbr, 1k tbn, 1k tbc (default)I tried to convert setting to the same framerate and add to a mp4 container
$ x264 --output intermediate.264 --fps 15 --preset slow --bitrate 400 --vbv-maxrate 800 --vbv-bufsize 1600 --min-keyint 48 --keyint 48 --scenecut 0 --no-scenecut --pass 1 --video-filter "resize:width=426,height=240" video.webm
$ MP4Box -add intermediate.264 -fps 15 out.mp4But the generated file out.mp4 now have a 2m:57s duration
-
ffmpeg - create video from images - has no audio in output video
19 juillet 2013, par sameer1) I have created the few images from my original xyz.mp4 (using ffmpeg)
2) I am again creating the video from the images but the output.mp4 does not have the audio.
I use the following command to create the video from images.
ffmpeg -b:v 850 -r 10 -i out%d.png -s 640X480 -vcodec libx264 -sameq output.mp4
Kindly let me know the the way for following steps
1) create images from video (.mp4)
2) create video(.mp4) from those images ( with audio in output file)
Thank you.