Recherche avancée

Médias (91)

Autres articles (79)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6941)

  • Should libavcodec handle non-packed/non-byte-aligned mp3 packets ?

    27 août 2015, par Rhythmic Fistman

    I’m transcoding shoutcast streams using libavcodec and I noticed that during the day I get a few 10s’ of packets that it cannot decode without some help :

    1. Leading zero bytes before a packet sync word, e.g. 0x0000fffa

    2. non-byte aligned syncword, e.g 0x82a0fffa

    In the first case I have to toss out the zero bytes and in the second I have to shift the data up by an odd number of nibbles.

    I don’t have a watertight knowledge of the mp3 spec (is there one ?), but my impression was that the packet format was a bit oriented, not byte, so both types of packets look right to me.

    So who is in the wrong here ?

    Is it libavcodec for not parsing valid packets ?

    Or the stream encoder for producing non-standard packets ?

  • ffmpeg I want to combine the three command in one command

    12 janvier 2019, par Abdulwahed AbuAbed

    hello I’m new here I want to marge many command in one, like add subtitle file , image (watermark) and write word in top right in video .
    without effecting video Quality and size , and if it possible make it fast like a single command .

    ffmpeg -i input.mkv -vf subtitles=subtitle.srt -sn out.mkv  
    ffmpeg -i input.mkv -vf "movie=image.png [watermark]; [in][watermark] overlay=10:10 [out]" out.mkv  
    ffmpeg -i input.mkv -vf drawtext=text='Hallo':x=10:y=H-th-10:fontfile=/path/to/font.ttf:fontsize=12:fontcolor=white:shadowcolor=black:shadowx=5:shadowy=5" out.mkv
  • subprocess.Popen crashes when run in background

    17 mars 2016, par user2810298

    In a program I’m working with right now, I try to check for the version of FFMPEG that is installed on the users machine. This works perfectly fine by using subprocess.Popen when run in the foreground OR when run in a detached screen.

    However, when you run it in the background without screen (e.g. COMMAND &> /dev/null &) this process crashes the program. (see below) I’ve seen some people having similar issues on the web, but I still can’t seem to fix this...

    I’ve Any ideas ?

    version_ffmpeg = subprocess.Popen(["ffmpeg","-version"],stdout=subprocess.PIPE,stderr=None)

    f_out = version_ffmpeg.communicate()
    (then...)
    if f_out --> 3rd word contains --> etc.