
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (84)
-
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (10162)
-
FFMPEG drops every odd frame
28 mars 2016, par Oleksiy DruzhyninAt running of
ffmpeg -i /usr/local/Videos/Ads/Samples/DX/DXd_src.ts -vf drawtext=fontfile=/usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-R.ttf:text=’%pict_type %pts:hms %pts:raw %eif:n:u’ : fontcolor=white@0.8:fontsize=40:x=7:y=200:box=1:boxcolor=black@0.8 -copyts -muxdelay 0 -muxpreload 0 -copytb 1 -vsync 0 -xerror /usr/local/Videos/Ads/Samples/DX/DXd.ts
FFMPEG removes every odd frame in for some set of video. I couldn’t understand why ?
See more on FFMpeg forum
-
Batch converting multiple video formats in nested directories
1er octobre 2020, par Dave CoffinI'm running Arch/Gnome and am trying to convert a few hundred gigs of family videos from various formats (mov, wmv, mkv, avi mainly, but a few curveballs too) into trusty mp4s.


My scripting knowledge is strictly amateur, so far I have ;


for i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done


That works fine for one directory. There are hundreds. I'd like to replace that one-liner with something more encompassing that I can just run and go to bed.


Wish list ;


- 

-
run recursively


-
convert from mov, wmv, mkv and avi without having to run separate scripts


-
delete old file upon successful completion


-
keep the same file name


-
if it finds an error, just skip the file and keep going - don't stop the process














Any help with any and/or all of these bits to cobble something together that'll work would be most appreciated.


-
-
FFmpeg INPUT over HTTPS with peer certificate verification
16 janvier 2020, par PistacioIs there a way to verify the INPUT certificate in case of a HTTPS schema with FFmpeg ?
The tls options in FFmpeg use parameters such astls_verify
orlisten
appended to the OUTPUT URL but I need INPUT HTTPS verification. I’d need a way to verify the SSL/TLS server like libcurl or mysql do.ffmpeg -i tls://INPUT?cert_file=PATH_TO_CERT&tls_verify=1
returns
Invalid data found when processing input
Right now I verify the peer with curl/wget and I pipe the output to FFmpeg like this :
curl -sv --cacert PATH_TO_CERT https://INPUT | ffmpeg -i pipe:
but it’s not an elegant solution. Could this be done with FFmpeg only ?