
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (70)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (7656)
-
How to extract audio from video with ffmpegKit in flutter
8 juillet 2024, par Carlos PeñarandaI want to extract audio from video with this method :


Future<audio> extractAudio(Video video, String formatAudioByUser) async {
 
 final pathAudio = video.pathIn;

 FFmpegKit.execute(
 '-i ${video.pathIn} -q:a 0 -map a audio_${video.title}.mp3')
 .then((session) async {
 final returnCode = await session.getReturnCode();

 if (ReturnCode.isSuccess(returnCode)) {
 Fluttertoast.showToast(msg: 'Extraccion exitosa');
 } else if (ReturnCode.isCancel(returnCode)) {
 Fluttertoast.showToast(msg: 'Extraccion cancelada');
 } else {
 final error = await session.getFailStackTrace();
 Fluttertoast.showToast(msg: 'Fallo al extraer audio: $error');
 }
 });

//creates object
 final audio = Audio(
 id: 'audio_${video.id}',
 title: 'audio_${video.title}',
 duration: video.duration,
 pathIn: video.pathIn, 
 pathOut:pathAudio,
 format: formatAudioByUser,
 );
 
 return audio;
 }
</audio>


which i use in my datasource_impl.


But when choosing the media (video) and running the method, it doesn't work from the ffmpegkit script, and it shows this error :
"Fallo al extraer audio: null"


I've reviewed the debugging mode, and created brakpoints, but all the video data looks good.


-
How to execute this CMD Script in a Batch File ?
10 août 2024, par Edgar Ferreira

I am trying to make a batch file that when executes makes a list named VideosToJoin.txt of the files with the extension .mp4, .mts and .avi in the folder and the after that proceed with the concat of those same files creating a final one named FinalVideo.mp4
I need some help here, because i want to automatize a specific process...


(for %i in (*.mp4,*.mts,*.avi) do @echo file '%i') > VideosToJoin.txt 
 
ffmpeg -f concat -i VideosToJoin.txt -c copy FinalVideo.mp4



The expected result is to have the final video by executing just one file, that's all i want, please help.


-
Creating Video Maker in flutter
22 avril 2023, par Manglam Industrial ProductI have a application which allow user to pick multiple image from device add text and make a fresh final image using RepaintBoundry Widget which save the final image but now i want to add some more features like user can pick multiple videos and it will save video to device i have made full video editor but my problem is in saving that video which user created. If you want any code then you can ask in comments.