Recherche avancée

Médias (91)

Autres articles (60)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (10782)

  • Sorenson Video 3 For Posterity

    12 août 2010, par Multimedia Mike — Software Museum

    On a recent dumpster dive, I procured a complete, never-been-opened copy of Sorenson Video 3 Professional Edition Compressor for Windows. And because I’m me, I thought it would be interesting to document it here :



    Not opened until now, anyway :



    I chuckled at the thought that I might open the user manual and find the complete data stream format listed therein. As expected, the guide offers a broad overview of video compression concepts (lossy vs. lossless, inter/intraframes, that kind of thing) and goes on to describe general guidelines for compressing different types of data. Then there is the feature reference. There are standard features and professional features (the latter includes things like bidirectional prediction, masking, and watermarking).

    I was hoping to figure out how to encode some video with this software. But I think I need full Quicktime Pro in order to do that. If you’re interested, here’s the user manual in PDF format : Sorenson Video 3 User Guide (626 Kbytes). Here’s an interesting claim from the chapter on audio compression :

    Most movies are made up of two parts, video and audio. Historically, the video portion of a digital movie was so large that the audio was only a minor piece of the puzzle. However, with Sorenson Video’s excellent compression capabilities it is possible to create a file where audio is the largest portion.

    I know it’s possible to do that, but is it really recommended ? I’m sure I have some samples in my vast repository where this is the case but it still doesn’t strike me as optimal for network delivery.

  • Issue while Make video file with series of images FFMPEG

    4 juin 2014, par Arslan Ahmad

    I have some problem when I make a video file with the series of image through ffmpeg commands it works and it shows the video but length of the video is only 1sec why : ??? and help

    My command is

    String[] ffmpegCommand = {"/data/data/com.example.app/ffmpeg", "-r", ""+VIDEO_FRAME_RATE, "-vcodec", "mjpeg", "-i", Environment.getExternalStorageDirectory().getPath() + "/com.example.app/frame_%105d.jpg",  Environment.getExternalStorageDirectory().getPath() + "/com.example.app/video.mov"};
  • FFmpeg seeking frames from piped FLV video

    4 juin 2014, par StrangerG

    I’m trying to seek to specific frame from a FLV file which is passed though a pipe using the FFmpeg function "av_seek_frame".

    The flag I used is AVSEEK_FLAG_FRAME|AVSEEK_FLAG_BACKWARD. It worked fine when the FLV video is read from file instead of the pipe. But when it comes to the pipe input mode, av_seek_frame returned -38 no matter what position I tried to seek.

    However, there is no problem for MP4 video through a pipe. Anybody have an idea about this ?
    How to seek in a FLV video from pipes ?