
Recherche avancée
Autres articles (71)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (3159)
-
FFmpeg command isn't working on Samsung
30 avril 2016, par user4204805I have added the FFmpeg library to my android project.
I am using the following code to slice my video using FFmpeg :
String[] complexCommand = {"ffmpeg","-i",input.mp4,"-vf","crop="+surfaceWidth+":"+surfaceHeight+":"+surfaceStartX+":"+surfaceStartY,"-threads","5","-preset","ultrafast","-strict" ,"-2",output.mp4};
It gives me the following error :
A/libc: Fatal signal 11 (SIGSEGV) at 0x000f4240 (code=1), thread 17377 (IntentService[U)
It works on most devices except for Samsung device (just checked on samsung grand). Please help.
-
Ffmpeg - replacing audio not working
16 mai 2014, par Ron II am running this in the command line :
ffmpeg -i test.mov -i phaser.mp3 -acodec copy -vcodec copy -map 0:0 -map 1:0 -shortest replaceAudio.mov
the result I get is a ’replaceAudio.mov’ file, however, when I click play, there is no video, just audio, and it is the old audio from the video, not the phaser.mp3 that I want to insert into the replaceAudio.mov over the test.mov video.
Any ideas how to get this to work ?
-
FFMPEG isn't working with scaling and multiple renditions on HLS
22 mars 2018, par GibojanI have an issue with ffmpeg and HLS. I want to have multiple renditions on my HLS stream.
My source is a 1920x1080 stream from OBS. I have an EC2 AWS with nginx 1.13.1 and FFMPEG 2.8.11. Here is my code :
application live {
allow play all;
live on;
hls on;
hls_nested on;
hls_path /HLS/live;
hls_fragment 10s;
exec /usr/bin/ffmpeg -i rtmp://myAWSEC2/live/$name \
-c:v libx264-s 640x360 -r 30 -b:v 800k -c:a copy -sws_flags fast_bilinear -f flv rtmp://myAWSEC2/mobile/$name_low \
-c:v libx264-s 1280x720 -r 30 -b:v 2500k -c:a copy -sws_flags fast_bilinear -f flv rtmp://myAWSEC2/mobile/$name_high;
}
application mobile {
allow play all;
live on;
hls on;
hls_nested on;
hls_path /HLS/mobile;
hls_variant _low BANDWIDTH=1000000 RESOLUTION=640x360;
hls_variant _low BANDWIDTH=2800000 RESOLUTION=1280x720;
}With that nginx.conf the application "live" works perfectly but the "mobile" don’t.
If I don’t make any scaling with ffmeg, so with this command :
exec /usr/bin/ffmpeg -i rtmp://myAWSEC2/live/$name \
-c:v copy -c:a copy -f flv rtmp://myAWSEC2/mobile/$name_low \
-c:v copy -c:a copy -f flv rtmp://myAWSEC2/mobile/$name_high;Both the "live" and "mobile" app are working. So I guess I give the wrong parameters to ffmeg command for scaling.
My goal is to set different qualities for the video, keep the audio quality as maximum so the stream can be read by people with slow internet.