Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (7137)

  • ffprobe - getting video info from file chunk

    13 septembre 2015, par andrzej1_1

    On 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 input

    I 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 firekid2018

    We 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 Das

    I 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.