
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (78)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (12186)
-
Invalid NAL unit size in extradata when to convert the dav file into mp4
30 décembre 2020, par showkeyI got the command from webpage :
congvert dav file into mp4


Here is my try :


ffmpeg -y -i input.dav -vcodec libx264 -crf 24 -movflags +faststart video.mp4
ffmpeg version 3.2.15-0+deb9u1 Copyright (c) 2000-2020 the FFmpeg 
developers built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516 
configuration: omitted 
 libavutil 55. 34.101 / 55. 34.101
 libavcodec 57. 64.101 / 57. 64.101
 libavformat 57. 56.101 / 57. 56.101
 libavdevice 57. 1.100 / 57. 1.100
 libavfilter 6. 65.100 / 6. 65.100
 libavresample 3. 1. 0 / 3. 1. 0
 libswscale 4. 2.100 / 4. 2.100
 libswresample 2. 3.100 / 2. 3.100
 libpostproc 54. 1.100 / 54. 1.100
Input #0, hevc, from 'input.dav':
 Duration: N/A, bitrate: N/A
 Stream #0:0: Video: hevc (Main), yuv420p(tv), 1920x1080, 25 fps, 25 tbr, 1200k tbn, 25 tbc
Output #0, ogg, to 'audiofile.ogg':
Output file #0 does not contain any stream



How to fix it ?


-
Does FFMpeg random generates identical sequences of pseudo-random numbers for consecutive executions ?
20 août 2020, par justewFor example if I execute command twice :


ffmpeg -i input.mp4 -vf geq=r='random(1)*255':g='random(1)*255':b='random(1)*255' -strict -2 output.mp4


For the same source file, I have identical output files. Why ? I want to get different output files.


Testing configuration :


ffmpeg version 2.8.17-0ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 20160609



I suppose that's because randomizer start value is identical. Does ffmepg have function like srand ?


More specifically I want to add random noise just like this :
noise=alls=20:allf=p+t+u
. But if I try do so I got the same noise for different executions on the same input file.

-
Does FFMpeg random generate identical sequences of pseudo-random numbers for consecutive executions ?
31 août 2020, par justewFor example if I execute command twice :


ffmpeg -i input.mp4 -vf geq=r='random(1)*255':g='random(1)*255':b='random(1)*255' -strict -2 output.mp4


For the same source file, I have identical output files. Why ? I want to get different output files.


Testing configuration :


ffmpeg version 2.8.17-0ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 20160609



I suppose that's because randomizer start value is identical. Does ffmepg have function like srand ?


More specifically I want to add random noise just like this :
noise=alls=20:allf=p+t+u
. But if I try do so I got the same noise for different executions on the same input file.