Recherche avancée

Médias (91)

Autres articles (65)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9390)

  • Disable image resizing on the Basic Plus and AngularJS demo for Android and Opera.

    12 juin 2013, par blueimp
    Disable image resizing on the Basic Plus and AngularJS demo for Android and Opera.
  • Get a thumb from a partial loaded file with flutter web [closed]

    6 novembre 2024, par JD11

    I use ffmpegwasm javascript port ffmpeg to get thumbnail of video files using flutter. Some time files are very large. Can i download only a part of file (using html header range) and get a thumbnail.

    


    to get part of file i use

    


          var response = await http.get(Uri.parse(bUrl!), headers: {"range": "bytes=0-10000000"});
      data = response.bodyBytes;

ffmpegWasm!.writeFile('temp.mp4', data);

  await ffmpegWasm!.run([
    '-y',
    '-ss',
    '00:00:01',
    '-i',
    'temp.mp4',
    '-vframes',
    '1',
    "-an",
    "-vf",
    "scale=$width:-1",
    outName
  ]); // '-c:a', 'copy'

  return ffmpegWasm!.readFile(outName);


    


    but i get an error reached eof, corrupted STCO atom.

    


    I know that VLC can display image even on incomplete file.

    


    thank you in advance

    


  • ffmpeg produce not expected number of frames

    22 mars 2016, par mrgloom

    I’m using this command to count frames in video.

    FRAME_COUNT=`./ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 $VIDEO_NAME`

    and this command for video splitting :

    ffmpeg -i $VIDEO_NAME -qscale:v 1 $DIRNAME$SEPARATOR'image%d.jpg'

    but last command produce much more images then expected for some videos, for example calculated number of frames is 597 and produces number of images > 100,000.

    What can be the case of such behaviour ?