
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (62)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (4488)
-
ffmpeg video freezes some seconds the output video
7 septembre 2022, par FreddicMattersI'm using the program ffmpeg on windows, I just downloaded the binaries setted the path variable of windows to be able of use it.


I'm ran ffmpeg with python and also just running the command in the cmd


#videos.txt


file C:/Users/freddydev/Videos/video1.mp4
file C:/Users/freddydev/Videos/video2.mp4
file C:/Users/freddydev/Videos/video3.mp4
file C:/Users/freddydev/Videos/video4.mp4



#python script :


import subprocess
import shlex

subprocess.run(shlex.split('ffmpeg -f concat -safe 0 -i videos.txt -c:v libx264 -c copy output.mp4'))



#cmd


ffmpeg -f concat -safe 0 -i videos.txt -c:v libx264 -c copy output.mp4



The output video plays fine the half of the video and after some 5 seconds it freezes and the final seconds of the video there is not sound.


I have downloaded multiple ffmpeg binaries from https://ottverse.com/ffmpeg-builds and I'm getting the same result.


My laptop is a core i5 with 12GB of RAM.
The rendering is very fast only takes 2 seconds, I also used moviepy library with python and it takes more than 20sg to render the video but when I concatenate large videos this give me wrong frames in the video at the end.


What could I do to fix this problem with ffmpeg.
Thanks so much.


-
trying to merge audio with video
9 juillet 2019, par vikrami am using ffmpeg for merging audio and video. i have download 4 sec mp3 file trying to merge but not successful. i am also trying to merge silent audio it works but the video become half of its original length.
this command for silent audio works but cut video
String mergecmd1[]={"-i",output,"-f", "lavfi" ,"-i", "aevalsrc=0", " -
shortest", "-y", output};
this command for mp3 audio but not working
String cmd1[]={"-i", output ,"-
i","/storage/emulated/0/FestiveApp/Assets/audio.mp3" ,"-codec", "copy",
"-shortest", output};
ffmpeg = FFmpeg.getInstance(Donts_Activity.this);
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@Override
public void onStart() {// Log.e("ffmpeg","Exaction Start") ;
}@Override
public void onProgress(String message) {}
@Override
public void onFailure(String message) {
progressDialog.dismiss();
Log.e("ok",message);
}
@Override
public void onSuccess(String message) {
new Sessionmanager(Donts_Activity.this).SetImageToVideoPath(output);
Log.e("ok","success");
progressDialog.dismiss();
Intent intent=new Intent(Donts_Activity.this,MediaRecorderRecipe.class);
startActivity(intent);
finish();
}
@Override
public void onFinish() {
}
});
} catch (FFmpegCommandAlreadyRunningException e) {
Log.e("ffmpeg",e.toString());
progressDialog.dismiss();
}my first goal generate video with audio but video length does not be reduce or cut if i am using mp3 or silent ffmpeg audio command
-
Picture-in-Picture overlay skips forward in time when input video orientation changes [closed]
28 octobre 2024, par MacsterOn my website I can record and stream a video to my server using javascript.
The video is then encoding in realtime using FFMPEG. Additionally there is a second video injected as picture-in-picture.


For some reason, when using a mobile phone for recording and the phone is rotated into landscape mode, the picture-in-picture video will jump forward in time. It's always about half the time that had already passed. This happens on each orientation change.


The video file for the picture-in-picture is not edited by code at any time, so I assume this has to be a FFMPEG thing.




FFMPEG Command


ffmpeg 
-re 
-i strm.webm 
-i source.webm 
-filter_complex "[0:v]scale=640:480:force_original_aspect_ratio=decreasepad=640:480:-1:-1:color=black[main];[1]scale=iw/1.5:-1setpts=PTS-STARTPTS,format=yuva420p[ovrl]; [main][ovrl]overlay=W-w-10:10[v]; [0:a][1:a]amerge[a]" 
-r 24 
-deadline realtime 
-crf 22 
-cpu-used 15 
-level 2.0 
-map "[v]" 
-map "[a]" 
-c:a aac 
-c:v libvpx 
-pix_fmt nv12 
-threads 4 
-strict -2 
-auto-alt-ref 0 
-b:v:1 1800k 
-s:v:1 1280x720 
-b:v:0 300k 
-s:v:0 640x480 
-bf 1 
-keyint_min 48 
-g 48 
-sc_threshold 1 
-b_strategy 0 
-ar:a:1 96000 
-scenario livestreaming 
-look_ahead 0 
-seg_duration 2 
-remove_at_exit 1 
-streaming 1 
-window_size 30 
-adaptation_sets "id=0,streams=v id=1,streams=a" 
-utc_timing_url https://time.akamai.com/?iso 
-live 1 
-y 
-f dash 
manifest.mpd