
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (67)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (9540)
-
Revision 7240 : L’em_type est géré en fonction du #MEDIA du document uploadé et non ...
12 décembre 2012, par kent1 — LogL’em_type est géré en fonction du #MEDIA du document uploadé et non manuellement
Améliorations diverses
On ne fait qu’une institution et une modification de contenu qu’à la fin
On ne force pas de type par défaut au formulaire -
FFMpeg doesnt insert sound to converted media files
4 avril 2020, par In-my-country-we-dont-use-nameI am new at FFMpeg. I use this code to convert media files to WebM and MP4 formats :



(It's php)



// MP4
 $video_mp4 = $output_name . '.mp4';
 exec($ffmpeg . ' -i "' . $uploaded_file . '" -c:v libx264 -an "./converted/' . $video_mp4 . '" -y 1>convert.txt 2>&1', $output, $convert_status['mp4']);

 // Debug
 echo '<pre>' . print_r($output, 1) . ' </pre>';

 // WebM
 $video_webm = $output_name . '.webm';
 exec($ffmpeg . ' -i "' . $uploaded_file . '" -c:v libvpx -c:a libvorbis -an "./converted/' . $video_webm . '" -y 1>convert.txt 2>&1', $output, $convert_status['webm']);

 // Debug




The code converts media files but the converted media files (they are in MP4 and WebM formats) haven't any sound.



Can you write a true convert command if my code is false ?



Also I wonder about -movflags +faststart commands. What are they, can you explain ?



I added "aac" command to WebM traslator command as how did "llogan"
say in an answer which is on below link :



FFMPEG mkv to mp4 conversion lacks audio in HTML5 player



but after I added the command, my media files haven't been converted.


-
avdevice/dshow : add media type info to get_device_list
21 décembre 2021, par Diederick Niehorsteravdevice/dshow : add media type info to get_device_list
The list returned by get_device_list now contains info about what media
type(s), if any, can be provided by each device.Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
Reviewed-by : Roger Pack <rogerdpack2@gmail.com>