
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (93)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (7847)
-
ffprobe - getting video info from file chunk
13 septembre 2015, par andrzej1_1On my site users can upload videos, which are encrypted on the fly and stored on another server. I want to store video bitrate, frame rate etc., but I have not direct access to them and I can not just use the following command :
ffprobe -show_streams -i file.mp4
I tried saving last chunk on my server, which contain moov atom, but ffprobe is outputting :
Format mov,mp4,m4a,3gp,3g2,mj2 detected only with low score of 1, misdetection possible!
moov atom not found
C:\file.mp4: Invalid data found when processing inputI checked and truncating at least one byte cause this, although moov atom is intact.
What is the proper way to get video metadata from file fragment containg moov atom ? What about getting informations from piece of mdata atom ?
-
List of file and the file size using cmd or media info/ffmpeg [duplicate]
22 juillet 2021, par firekid2018We can use to get the file name
dir /b>list.txt
using windows CMD. is there anyway we can get the file size info with name using cmd/mediainfo/ffmpeg or other app ? CMD can generate the file size but it's in "bytes" formate. i am looking for KB/MB/GB format.

logo.png 32KB
Header.png 160kb



-
FFmpegWriter::setAudioOptions not accepting the codec in info object of the reader
9 août 2015, par Pradyumna DasI am using libopenshot library for video editing.
I am trying to edit a video and write the edited video using the same audio and video codecs used in the source video. This is what I am doing :
FFmpegReader* ivr = new FFmpegReader("testvid.mp4");
FFmpegWriter w("outpiut.mp4");
w.SetAudioOptions(true, ivr->info.acodec, ivr->info.sample_rate, ivr->info.channels, ivr->info.channel_layout, ivr->info.audio_bit_rate);
w.SetVideoOptions(true, ivr->info.vcodec, openshot::Fraction(24,1), 720, 480, openshot::Fraction(1,1), false, false, 300000);While debugging I can see that ivr->info.acodec = "aac" and ivr->info.vcodec = "h264".
This code keeps throwing the error :
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x112ed40] multiple edit list entries, a/v desync might occur, patch welcome
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x11365e0] multiple edit list entries, a/v desync might occur, patch welcome
terminate called after throwing an instance of 'openshot::InvalidCodec'Need some help figuring out what I am doing wrong here.