Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (78)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’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 (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6466)

  • Extracting image frames from mjpeg given 'frame byte offset' and 'frame size' [on hold]

    2 septembre 2015, par Sonia

    I’m looking for code or pointers to funtions or library that I can use to extract image frames from motion jpeg file. In my case, for each image frame, I know the starting byte offset and the size of the frame (size is not always equal for each frame). Given these data, how can I extract each image frames from mjpeg file.

    I have checked the OpenCV library, I can’t find the detail about giving these two inputs to extract frames. Also, I can’t find it in FFmpeg as well. But, I’m not an expert in these two. I hope anyone could give me pointers to this. It can be just a tool or sourcecode (I use C/C++ and MATLAB but I’m open to other language - just to learn how to do it)

    Thank you very much.

  • ffmpeg [10 random images] + [1 random .mp3] = [1 video]

    13 octobre 2015, par Brooks

    Given :

    1 Folder with .jpg files
    1 Folder with .mp3 files
    1 .txt with a list of file names

    What I want (and hope someone can help me) to achieve is make a cmd command to tell ffmpeg to :

    get 10 random .jpg files
    get 1 random .mp3 file
    create .mp4 video with the same length as the .mp3
    give to the .mp4 file a name from the list in the .txt
    Loop above actions for each item in the .txt list

    I started to test with
    "FullPathToFFmpeg.exe" -r 1 -loop 1 -i "FullPathTo.jpg" -i "FullPathTo.mp3" -acodec copy -r 1 -shortest "FullPathTo.mp4"

    and it works but if I change the .jpg input to "FullPathTo\*.jpg"

    Can someone please help me with a command or point me in the right direction ?

  • FFMPEG - Verify frame order

    27 octobre 2015, par RockJake28

    I have created a video of a large number of images using ffmpeg using the following command

    ffmpeg -framerate 25 -pattern_type glob -i "*.png" -c:v libx264 -pix_fmt yuv420p /home/jake/Desktop/output.mp4

    The command works and produces a video, however I need a way to verify that the images have been processed in the correct order as the files have quite obscure names. For example, the first 3 images in the sequence are :

    1. image_20150625T100000.000_550000328.png
    2. image_20150625T100000.033_550330578.png
    3. image_20150625T100000.067_550671379.png

    all the way up to

    image_20150625T100459.987_3546673942.png

    I have tried using the -loglevel switch on various different options in hope that one would output the file name of each frame processed, but none seem to do that.

    Thanks in advance.